From 46c1a3898a939519fd7cedd00093c133cb3caf86 Mon Sep 17 00:00:00 2001 From: celine <celine.robardet@insa-lyon.fr> Date: Wed, 14 Feb 2024 07:58:44 +0100 Subject: [PATCH] rm fichiers compil --- code/.idea/.gitignore | 8 - code/.idea/code.iml | 11 - .../inspectionProfiles/profiles_settings.xml | 6 - code/.idea/misc.xml | 7 - code/.idea/modules.xml | 8 - .../Experiments-checkpoint.ipynb | 6563 ----------------- .../__pycache__/BPR_model.cpython-311.pyc | Bin 10951 -> 0 bytes .../__pycache__/utils.cpython-311.pyc | Bin 8506 -> 0 bytes code/binary_bpr_ablation/utils.pyc | Bin 5470 -> 0 bytes 9 files changed, 6603 deletions(-) delete mode 100644 code/.idea/.gitignore delete mode 100644 code/.idea/code.iml delete mode 100644 code/.idea/inspectionProfiles/profiles_settings.xml delete mode 100644 code/.idea/misc.xml delete mode 100644 code/.idea/modules.xml delete mode 100644 code/.ipynb_checkpoints/Experiments-checkpoint.ipynb delete mode 100644 code/binary_bpr/__pycache__/BPR_model.cpython-311.pyc delete mode 100644 code/binary_bpr/__pycache__/utils.cpython-311.pyc delete mode 100644 code/binary_bpr_ablation/utils.pyc diff --git a/code/.idea/.gitignore b/code/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/code/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/code/.idea/code.iml b/code/.idea/code.iml deleted file mode 100644 index 456b84d..0000000 --- a/code/.idea/code.iml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<module type="PYTHON_MODULE" version="4"> - <component name="NewModuleRootManager"> - <content url="file://$MODULE_DIR$" /> - <orderEntry type="jdk" jdkName="cdbpr-env" jdkType="Python SDK" /> - <orderEntry type="sourceFolder" forTests="false" /> - </component> - <component name="SonarLintModuleSettings"> - <option name="uniqueId" value="6084c8ba-5729-4f67-aa53-1f1cacc70561" /> - </component> -</module> \ No newline at end of file diff --git a/code/.idea/inspectionProfiles/profiles_settings.xml b/code/.idea/inspectionProfiles/profiles_settings.xml deleted file mode 100644 index 105ce2d..0000000 --- a/code/.idea/inspectionProfiles/profiles_settings.xml +++ /dev/null @@ -1,6 +0,0 @@ -<component name="InspectionProjectProfileManager"> - <settings> - <option name="USE_PROJECT_PROFILE" value="false" /> - <version value="1.0" /> - </settings> -</component> \ No newline at end of file diff --git a/code/.idea/misc.xml b/code/.idea/misc.xml deleted file mode 100644 index 7161c54..0000000 --- a/code/.idea/misc.xml +++ /dev/null @@ -1,7 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="Black"> - <option name="sdkName" value="cdbpr-env" /> - </component> - <component name="ProjectRootManager" version="2" project-jdk-name="cdbpr-env" project-jdk-type="Python SDK" /> -</project> \ No newline at end of file diff --git a/code/.idea/modules.xml b/code/.idea/modules.xml deleted file mode 100644 index 23968dc..0000000 --- a/code/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="ProjectModuleManager"> - <modules> - <module fileurl="file://$PROJECT_DIR$/.idea/code.iml" filepath="$PROJECT_DIR$/.idea/code.iml" /> - </modules> - </component> -</project> \ No newline at end of file diff --git a/code/.ipynb_checkpoints/Experiments-checkpoint.ipynb b/code/.ipynb_checkpoints/Experiments-checkpoint.ipynb deleted file mode 100644 index ca54f32..0000000 --- a/code/.ipynb_checkpoints/Experiments-checkpoint.ipynb +++ /dev/null @@ -1,6563 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "id": "087d8076", - "metadata": {}, - "outputs": [], - "source": [ - "import os " - ] - }, - { - "cell_type": "code", - "execution_count": 31, - "id": "c0bd6c14", - "metadata": {}, - "outputs": [], - "source": [ - "path = \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/\"\n", - "datasets = ['assist09', 'assist17', 'algebra','math1', 'math2']" - ] - }, - { - "cell_type": "markdown", - "id": "1da92e4f", - "metadata": {}, - "source": [ - "## Table 2: compute ACC, AUC and RMSE" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "61c53cb1", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "NB KC 123\n", - "NB Users 2493\n", - "NB (question-answer) in the data 17506\n", - "Epoch 1, Loss: 1.3718266487121582\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Traceback (most recent call last):\n", - " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/./binary_model/main.py\", line 223, in <module>\n", - " acc = bpr_model.train(train, len(dico_kc), epochs, batch_size, y_train, ablation)\n", - " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/binary_model/BPR_model.py\", line 105, in train\n", - " self.optimizer.step()\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/optim/optimizer.py\", line 280, in wrapper\n", - " out = func(*args, **kwargs)\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/optim/optimizer.py\", line 33, in _use_grad\n", - " ret = func(self, *args, **kwargs)\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/optim/adam.py\", line 141, in step\n", - " adam(\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/optim/adam.py\", line 281, in adam\n", - " func(params,\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/optim/adam.py\", line 391, in _single_tensor_adam\n", - " denom = (exp_avg_sq.sqrt() / bias_correction2_sqrt).add_(eps)\n", - "KeyboardInterrupt\n" - ] - }, - { - "data": { - "text/plain": [ - "2" - ] - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "i = 0\n", - "cmd = 'python ./binary_model/main.py --dataTrain '+path+'data/'+datasets[i]+'/train.csv --dataTest '+path+'data/'+datasets[i]+'/test.csv' \n", - "os.system(cmd)" - ] - }, - { - "cell_type": "markdown", - "id": "6b1c6b4d", - "metadata": {}, - "source": [ - "## Table 3: compute DOA" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "790a43dd", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "/home/celine/travail.svn/recherche/phd_subject/Arthur/code\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Traceback (most recent call last):\n", - " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/./binary_model/compute_doa.py\", line 11, in <module>\n", - " doa = compute_doa(data)\n", - " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/binary_model/utils.py\", line 163, in compute_doa\n", - " r = doa_creuse(F, kc_user, kc_user_val, dico_u)\n", - " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/binary_model/utils.py\", line 136, in doa_creuse\n", - " while(ma < len(kc_user[k][ia])) and (mb < len(kc_user[k][ib])):\n", - "KeyboardInterrupt\n" - ] - }, - { - "data": { - "text/plain": [ - "2" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "i = 0\n", - "'''\n", - "cmd = 'cd '+path+'binary_model/'\n", - "cmd = 'ls'\n", - "os.system(cmd)\n", - "print(os.getcwd())\n", - "os.system(cmd)\n", - "'''\n", - "print(os.getcwd())\n", - "cmd = 'python ./binary_model/compute_doa.py --data '+path+'data/'+datasets[i]+'/train' \n", - "os.system(cmd)\n", - "\n", - "#doa = compute_doa(path+datasets[i]+'/train_embed.csv')\n", - "#print(\"DOA:\", doa)" - ] - }, - { - "cell_type": "markdown", - "id": "8d5630b5", - "metadata": {}, - "source": [ - "## Table 4: ablation --" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "id": "a9e32954", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "NB KC 16\n", - "NB Users 3911\n", - "NB (question-answer) in the data 20\n", - "Epoch 1, Loss: 0.6622111201286316\n", - "Epoch 11, Loss: 0.5124014616012573\n", - "DOA: 0.5445884380178283\n", - "RMSE 0.42956248308434386\n", - "AUC: 0.8054917274129436\n", - "ACC: 0.7339260075133254\n", - "Prec: 0.6877265427850424\n", - "NB KC 16\n", - "NB Users 3911\n", - "NB (question-answer) in the data 20\n", - "Epoch 1, Loss: 0.6848532557487488\n", - "Epoch 11, Loss: 0.5197614431381226\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Traceback (most recent call last):\n", - " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/./binary_model/main.py\", line 227, in <module>\n", - " doa = compute_doa(file)\n", - " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/binary_model/utils.py\", line 163, in compute_doa\n", - " r = doa_creuse(F, kc_user, kc_user_val, dico_u)\n", - " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/binary_model/utils.py\", line 136, in doa_creuse\n", - " while(ma < len(kc_user[k][ia])) and (mb < len(kc_user[k][ib])):\n", - "KeyboardInterrupt\n", - "Traceback (most recent call last):\n", - " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/./binary_model/main.py\", line 2, in <module>\n", - " import torch\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/__init__.py\", line 1239, in <module>\n", - " from torch import onnx as onnx\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/__init__.py\", line 12, in <module>\n", - " from . import ( # usort:skip. Keep the order instead of sorting lexicographically\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/errors.py\", line 9, in <module>\n", - " from torch.onnx._internal import diagnostics\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/__init__.py\", line 1, in <module>\n", - " from ._diagnostic import (\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/_diagnostic.py\", line 10, in <module>\n", - " from torch.onnx._internal.diagnostics import infra\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/infra/__init__.py\", line 1, in <module>\n", - " from ._infra import (\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/infra/_infra.py\", line 10, in <module>\n", - " from torch.onnx._internal.diagnostics.infra import formatter, sarif\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/infra/formatter.py\", line 7, in <module>\n", - " from torch.onnx._internal.diagnostics.infra import sarif\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/infra/sarif/__init__.py\", line 14, in <module>\n", - " from torch.onnx._internal.diagnostics.infra.sarif._code_flow import CodeFlow\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/infra/sarif/_code_flow.py\", line 9, in <module>\n", - " from torch.onnx._internal.diagnostics.infra.sarif import (\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/infra/sarif/_thread_flow.py\", line 9, in <module>\n", - " from torch.onnx._internal.diagnostics.infra.sarif import (\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/infra/sarif/_thread_flow_location.py\", line 9, in <module>\n", - " from torch.onnx._internal.diagnostics.infra.sarif import (\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/infra/sarif/_stack.py\", line 9, in <module>\n", - " from torch.onnx._internal.diagnostics.infra.sarif import (\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/infra/sarif/_stack_frame.py\", line 13, in <module>\n", - " class StackFrame(object):\n", - " File \"/home/celine/miniconda3/lib/python3.10/dataclasses.py\", line 1184, in dataclass\n", - " return wrap(cls)\n", - " File \"/home/celine/miniconda3/lib/python3.10/dataclasses.py\", line 1175, in wrap\n", - " return _process_class(cls, init, repr, eq, order, unsafe_hash,\n", - " File \"/home/celine/miniconda3/lib/python3.10/dataclasses.py\", line 1053, in _process_class\n", - " _cmp_fn('__eq__', '==',\n", - " File \"/home/celine/miniconda3/lib/python3.10/dataclasses.py\", line 629, in _cmp_fn\n", - " return _create_fn(name,\n", - " File \"/home/celine/miniconda3/lib/python3.10/dataclasses.py\", line 432, in _create_fn\n", - " exec(txt, globals, ns)\n", - " File \"<string>\", line 1, in <module>\n", - "KeyboardInterrupt\n", - "Traceback (most recent call last):\n", - " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/./binary_model/main.py\", line 2, in <module>\n", - " import torch\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/__init__.py\", line 934, in <module>\n", - " from .storage import _StorageBase, TypedStorage, _LegacyStorage, UntypedStorage, _warn_typed_storage_removal\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/storage.py\", line 12, in <module>\n", - " import numpy as np\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/numpy/__init__.py\", line 139, in <module>\n", - " from . import core\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/numpy/core/__init__.py\", line 77, in <module>\n", - " from . import defchararray as char\n", - " File \"/home/celine/miniconda3/lib/python3.10/site-packages/numpy/core/defchararray.py\", line 1923, in <module>\n", - " class chararray(ndarray):\n", - "KeyboardInterrupt\n" - ] - } - ], - "source": [ - "# 0 no ablation, 1 ablation L2, 2 ablation init, 3 both\n", - "for abla in range(4):\n", - " for i in range(5):\n", - " cmd = 'python ./binary_model/main.py --dataTrain '+ path+'data/'+datasets[i]+'/train.csv --dataTest '+path+'data/'+datasets[i]+'/test.csv --ablation '+str(abla)\n", - " os.system(cmd)" - ] - }, - { - "cell_type": "markdown", - "id": "c5960372", - "metadata": {}, - "source": [ - "## Table 6 --" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "id": "e46ff5d4", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "avg values 0.8171224732461354 0.7558291282588128 0.7514963299272839 0.6211694246268313\n", - "0\n", - "avg values 0.8217752573238839 0.8345388354351844 0.8288387755136633 0.5900735950578464\n" - ] - }, - { - "data": { - "text/plain": [ - "0" - ] - }, - "execution_count": 17, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# pour all\n", - "cmd = 'python ./nary_model/main_nary_cv.py --data '+ path+'data/covid/initsurvey.csv' \n", - "print(os.system(cmd))\n", - "cmd = 'python ./nary_model/main_nary_cv.py --data '+path+'data/covid/psysurvey.csv' \n", - "print(os.system(cmd))" - ] - }, - { - "cell_type": "markdown", - "id": "e586f5cb", - "metadata": {}, - "source": [ - "## Figure 1 and Table 7" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "id": "4c4b8106", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "/home/celine/travail.svn/recherche/phd_subject/Arthur/code/other/dt/train_embed.csv\n", - "| --- feature_3 <= 0.55\n", - "| | --- feature_9 <= -0.07\n", - "| | | --- cluster 0 (151)\n", - "| | --- feature_9 > -0.07\n", - "| | | --- feature_15 <= -0.30\n", - "| | | | --- cluster 1 (111)\n", - "| | | --- feature_15 > -0.30\n", - "| | | | --- feature_10 <= -0.25\n", - "| | | | | --- cluster 2 (57)\n", - "| | | | --- feature_10 > -0.25\n", - "| | | | | --- cluster 3 (415)\n", - "| --- feature_3 > 0.55\n", - "| | --- feature_8 <= 0.35\n", - "| | | --- cluster 4 (110)\n", - "| | --- feature_8 > 0.35\n", - "| | | --- cluster 5 (73)\n", - "(array([ 7, 14, 20, 22, 23, 39, 44, 53, 56, 57, 62, 71, 95,\n", - " 100, 106, 119, 122, 133, 141, 142, 152, 154, 156, 160, 179, 182,\n", - " 183, 187, 188, 191, 194, 198, 199, 201, 203, 207, 208, 214, 219,\n", - " 221, 224, 233, 235, 241, 243, 246, 252, 259, 261, 265, 266, 267,\n", - " 271, 282, 289, 293, 299, 302, 303, 304, 307, 308, 309, 310, 312,\n", - " 313, 325, 327, 351, 358, 385, 390, 393, 396, 406, 409, 415, 419,\n", - " 431, 435, 445, 447, 448, 450, 468, 479, 486, 488, 490, 494, 510,\n", - " 516, 517, 525, 546, 547, 550, 551, 553, 557, 559, 565, 567, 578,\n", - " 580, 597, 600, 604, 608, 611, 612, 615, 640, 641, 644, 656, 662,\n", - " 677, 679, 682, 686, 688, 690, 703, 709, 714, 723, 732, 745, 752,\n", - " 776, 782, 785, 786, 787, 789, 792, 798, 810, 829, 839, 842, 844,\n", - " 847, 854, 866, 869, 870, 881, 883, 900]),)\n", - "(array([ 4, 8, 15, 28, 40, 41, 42, 50, 59, 84, 85, 88, 89,\n", - " 109, 112, 123, 138, 145, 146, 150, 157, 158, 166, 181, 186, 190,\n", - " 232, 234, 242, 247, 248, 249, 260, 272, 274, 277, 281, 296, 301,\n", - " 338, 339, 345, 352, 359, 365, 388, 403, 404, 412, 418, 441, 443,\n", - " 461, 464, 478, 481, 489, 491, 495, 497, 500, 508, 524, 531, 569,\n", - " 576, 587, 589, 609, 610, 613, 617, 620, 622, 627, 637, 642, 647,\n", - " 673, 678, 711, 712, 715, 720, 726, 729, 730, 758, 759, 760, 788,\n", - " 797, 811, 815, 819, 820, 821, 830, 831, 840, 845, 849, 862, 878,\n", - " 880, 884, 891, 895, 898, 904, 906]),)\n", - "(array([ 58, 75, 80, 103, 114, 161, 205, 210, 211, 226, 227, 236, 244,\n", - " 257, 258, 328, 347, 356, 357, 372, 380, 391, 399, 400, 402, 410,\n", - " 455, 457, 526, 558, 583, 606, 614, 616, 618, 624, 643, 645, 660,\n", - " 664, 676, 691, 717, 738, 755, 756, 763, 771, 796, 812, 817, 832,\n", - " 850, 861, 868, 882, 912]),)\n", - "(array([ 0, 2, 3, 5, 6, 9, 10, 11, 12, 17, 18, 24, 29,\n", - " 30, 31, 32, 33, 34, 35, 36, 38, 43, 46, 48, 52, 54,\n", - " 55, 63, 64, 66, 68, 69, 72, 74, 76, 77, 78, 79, 81,\n", - " 82, 87, 90, 91, 92, 93, 94, 98, 99, 101, 102, 104, 105,\n", - " 107, 108, 110, 111, 115, 117, 120, 121, 124, 126, 127, 129, 130,\n", - " 131, 132, 134, 135, 136, 137, 139, 143, 144, 148, 149, 151, 155,\n", - " 163, 167, 171, 172, 173, 175, 176, 177, 178, 184, 189, 192, 193,\n", - " 195, 196, 197, 200, 202, 204, 206, 215, 218, 222, 223, 225, 229,\n", - " 230, 237, 238, 240, 251, 253, 254, 256, 262, 263, 264, 268, 273,\n", - " 278, 279, 280, 283, 284, 287, 288, 290, 291, 292, 294, 295, 305,\n", - " 306, 315, 317, 318, 319, 320, 321, 322, 323, 324, 330, 331, 332,\n", - " 333, 334, 336, 337, 340, 342, 343, 346, 350, 353, 354, 355, 360,\n", - " 361, 363, 364, 366, 367, 368, 370, 371, 373, 374, 376, 382, 383,\n", - " 386, 389, 392, 394, 397, 401, 407, 411, 413, 414, 416, 417, 423,\n", - " 424, 425, 426, 427, 428, 429, 432, 434, 437, 438, 440, 442, 444,\n", - " 446, 449, 453, 454, 456, 458, 459, 462, 467, 469, 471, 472, 473,\n", - " 475, 477, 480, 482, 483, 484, 485, 492, 493, 496, 498, 499, 502,\n", - " 504, 506, 507, 509, 513, 515, 518, 519, 520, 521, 522, 523, 527,\n", - " 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 541, 542,\n", - " 543, 544, 545, 549, 552, 556, 560, 561, 562, 563, 566, 570, 571,\n", - " 573, 574, 575, 577, 581, 582, 585, 588, 591, 592, 593, 594, 595,\n", - " 596, 598, 599, 601, 602, 603, 605, 607, 619, 623, 625, 626, 628,\n", - " 629, 630, 631, 632, 635, 638, 639, 648, 649, 650, 651, 652, 654,\n", - " 657, 663, 667, 668, 669, 670, 672, 675, 681, 683, 684, 692, 693,\n", - " 694, 695, 697, 698, 700, 704, 705, 706, 707, 708, 710, 713, 716,\n", - " 718, 719, 722, 724, 727, 728, 731, 733, 734, 735, 736, 737, 740,\n", - " 741, 744, 747, 748, 749, 750, 751, 754, 757, 762, 764, 765, 767,\n", - " 768, 770, 772, 773, 774, 775, 777, 778, 779, 780, 781, 783, 791,\n", - " 793, 795, 799, 800, 801, 802, 803, 804, 806, 808, 816, 818, 822,\n", - " 823, 824, 825, 826, 833, 836, 837, 838, 841, 846, 848, 851, 852,\n", - " 856, 857, 864, 873, 875, 877, 885, 886, 887, 888, 889, 890, 893,\n", - " 894, 896, 897, 899, 901, 902, 903, 905, 907, 909, 911, 914]),)\n", - "(array([ 13, 16, 19, 27, 37, 47, 49, 60, 61, 65, 67, 70, 73,\n", - " 83, 86, 125, 128, 140, 147, 153, 159, 162, 165, 168, 170, 185,\n", - " 209, 228, 239, 245, 250, 269, 270, 275, 285, 300, 311, 314, 316,\n", - " 329, 341, 348, 349, 362, 369, 375, 377, 378, 379, 384, 395, 398,\n", - " 408, 433, 439, 452, 465, 466, 470, 487, 501, 503, 514, 540, 548,\n", - " 554, 555, 564, 568, 572, 584, 590, 634, 653, 655, 658, 659, 661,\n", - " 665, 666, 671, 674, 696, 699, 702, 721, 739, 742, 746, 753, 769,\n", - " 784, 790, 794, 809, 813, 827, 828, 843, 853, 855, 858, 859, 860,\n", - " 865, 867, 874, 908, 915, 916]),)\n", - "\n", - "Purity: 0.8255179934569248\n", - "0\n", - "/home/celine/travail.svn/recherche/phd_subject/Arthur/code/other/dt/train_embed.csv\n", - "| --- feature_3 <= 0.55\n", - "| | --- feature_9 <= -0.07\n", - "| | | --- cluster 0 (151)\n", - "| | --- feature_9 > -0.07\n", - "| | | --- feature_15 <= -0.30\n", - "| | | | --- cluster 1 (111)\n", - "| | | --- feature_15 > -0.30\n", - "| | | | --- feature_10 <= -0.25\n", - "| | | | | --- cluster 2 (57)\n", - "| | | | --- feature_10 > -0.25\n", - "| | | | | --- cluster 3 (415)\n", - "| --- feature_3 > 0.55\n", - "| | --- feature_8 <= 0.35\n", - "| | | --- cluster 4 (110)\n", - "| | --- feature_8 > 0.35\n", - "| | | --- cluster 5 (73)\n", - "(array([ 7, 14, 20, 22, 23, 39, 44, 53, 56, 57, 62, 71, 95,\n", - " 100, 106, 119, 122, 133, 141, 142, 152, 154, 156, 160, 179, 182,\n", - " 183, 187, 188, 191, 194, 198, 199, 201, 203, 207, 208, 214, 219,\n", - " 221, 224, 233, 235, 241, 243, 246, 252, 259, 261, 265, 266, 267,\n", - " 271, 282, 289, 293, 299, 302, 303, 304, 307, 308, 309, 310, 312,\n", - " 313, 325, 327, 351, 358, 385, 390, 393, 396, 406, 409, 415, 419,\n", - " 431, 435, 445, 447, 448, 450, 468, 479, 486, 488, 490, 494, 510,\n", - " 516, 517, 525, 546, 547, 550, 551, 553, 557, 559, 565, 567, 578,\n", - " 580, 597, 600, 604, 608, 611, 612, 615, 640, 641, 644, 656, 662,\n", - " 677, 679, 682, 686, 688, 690, 703, 709, 714, 723, 732, 745, 752,\n", - " 776, 782, 785, 786, 787, 789, 792, 798, 810, 829, 839, 842, 844,\n", - " 847, 854, 866, 869, 870, 881, 883, 900]),)\n", - "(array([ 4, 8, 15, 28, 40, 41, 42, 50, 59, 84, 85, 88, 89,\n", - " 109, 112, 123, 138, 145, 146, 150, 157, 158, 166, 181, 186, 190,\n", - " 232, 234, 242, 247, 248, 249, 260, 272, 274, 277, 281, 296, 301,\n", - " 338, 339, 345, 352, 359, 365, 388, 403, 404, 412, 418, 441, 443,\n", - " 461, 464, 478, 481, 489, 491, 495, 497, 500, 508, 524, 531, 569,\n", - " 576, 587, 589, 609, 610, 613, 617, 620, 622, 627, 637, 642, 647,\n", - " 673, 678, 711, 712, 715, 720, 726, 729, 730, 758, 759, 760, 788,\n", - " 797, 811, 815, 819, 820, 821, 830, 831, 840, 845, 849, 862, 878,\n", - " 880, 884, 891, 895, 898, 904, 906]),)\n", - "(array([ 58, 75, 80, 103, 114, 161, 205, 210, 211, 226, 227, 236, 244,\n", - " 257, 258, 328, 347, 356, 357, 372, 380, 391, 399, 400, 402, 410,\n", - " 455, 457, 526, 558, 583, 606, 614, 616, 618, 624, 643, 645, 660,\n", - " 664, 676, 691, 717, 738, 755, 756, 763, 771, 796, 812, 817, 832,\n", - " 850, 861, 868, 882, 912]),)\n", - "(array([ 0, 2, 3, 5, 6, 9, 10, 11, 12, 17, 18, 24, 29,\n", - " 30, 31, 32, 33, 34, 35, 36, 38, 43, 46, 48, 52, 54,\n", - " 55, 63, 64, 66, 68, 69, 72, 74, 76, 77, 78, 79, 81,\n", - " 82, 87, 90, 91, 92, 93, 94, 98, 99, 101, 102, 104, 105,\n", - " 107, 108, 110, 111, 115, 117, 120, 121, 124, 126, 127, 129, 130,\n", - " 131, 132, 134, 135, 136, 137, 139, 143, 144, 148, 149, 151, 155,\n", - " 163, 167, 171, 172, 173, 175, 176, 177, 178, 184, 189, 192, 193,\n", - " 195, 196, 197, 200, 202, 204, 206, 215, 218, 222, 223, 225, 229,\n", - " 230, 237, 238, 240, 251, 253, 254, 256, 262, 263, 264, 268, 273,\n", - " 278, 279, 280, 283, 284, 287, 288, 290, 291, 292, 294, 295, 305,\n", - " 306, 315, 317, 318, 319, 320, 321, 322, 323, 324, 330, 331, 332,\n", - " 333, 334, 336, 337, 340, 342, 343, 346, 350, 353, 354, 355, 360,\n", - " 361, 363, 364, 366, 367, 368, 370, 371, 373, 374, 376, 382, 383,\n", - " 386, 389, 392, 394, 397, 401, 407, 411, 413, 414, 416, 417, 423,\n", - " 424, 425, 426, 427, 428, 429, 432, 434, 437, 438, 440, 442, 444,\n", - " 446, 449, 453, 454, 456, 458, 459, 462, 467, 469, 471, 472, 473,\n", - " 475, 477, 480, 482, 483, 484, 485, 492, 493, 496, 498, 499, 502,\n", - " 504, 506, 507, 509, 513, 515, 518, 519, 520, 521, 522, 523, 527,\n", - " 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 541, 542,\n", - " 543, 544, 545, 549, 552, 556, 560, 561, 562, 563, 566, 570, 571,\n", - " 573, 574, 575, 577, 581, 582, 585, 588, 591, 592, 593, 594, 595,\n", - " 596, 598, 599, 601, 602, 603, 605, 607, 619, 623, 625, 626, 628,\n", - " 629, 630, 631, 632, 635, 638, 639, 648, 649, 650, 651, 652, 654,\n", - " 657, 663, 667, 668, 669, 670, 672, 675, 681, 683, 684, 692, 693,\n", - " 694, 695, 697, 698, 700, 704, 705, 706, 707, 708, 710, 713, 716,\n", - " 718, 719, 722, 724, 727, 728, 731, 733, 734, 735, 736, 737, 740,\n", - " 741, 744, 747, 748, 749, 750, 751, 754, 757, 762, 764, 765, 767,\n", - " 768, 770, 772, 773, 774, 775, 777, 778, 779, 780, 781, 783, 791,\n", - " 793, 795, 799, 800, 801, 802, 803, 804, 806, 808, 816, 818, 822,\n", - " 823, 824, 825, 826, 833, 836, 837, 838, 841, 846, 848, 851, 852,\n", - " 856, 857, 864, 873, 875, 877, 885, 886, 887, 888, 889, 890, 893,\n", - " 894, 896, 897, 899, 901, 902, 903, 905, 907, 909, 911, 914]),)\n", - "(array([ 13, 16, 19, 27, 37, 47, 49, 60, 61, 65, 67, 70, 73,\n", - " 83, 86, 125, 128, 140, 147, 153, 159, 162, 165, 168, 170, 185,\n", - " 209, 228, 239, 245, 250, 269, 270, 275, 285, 300, 311, 314, 316,\n", - " 329, 341, 348, 349, 362, 369, 375, 377, 378, 379, 384, 395, 398,\n", - " 408, 433, 439, 452, 465, 466, 470, 487, 501, 503, 514, 540, 548,\n", - " 554, 555, 564, 568, 572, 584, 590, 634, 653, 655, 658, 659, 661,\n", - " 665, 666, 671, 674, 696, 699, 702, 721, 739, 742, 746, 753, 769,\n", - " 784, 790, 794, 809, 813, 827, 828, 843, 853, 855, 858, 859, 860,\n", - " 865, 867, 874, 908, 915, 916]),)\n", - "\n", - "Purity: 0.5986913849509269\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0\n" - ] - } - ], - "source": [ - "cmd = 'python ./other/decision_tree.py --lower 0'\n", - "print(os.system(cmd))\n", - "cmd = 'python ./other/decision_tree.py --lower 1'\n", - "print(os.system(cmd))" - ] - }, - { - "cell_type": "markdown", - "id": "f39f6de3", - "metadata": {}, - "source": [ - "## Figure 2: radar plots --" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "id": "ceee0ec4", - "metadata": {}, - "outputs": [], - "source": [ - "def fromDFtoArray(name, vector, type_value):\n", - " # Read dataframe and generate a matrix or \n", - " # a vector of appropriate type\n", - " df = pd.read_csv(name,index_col=None, header=None)\n", - " cols = df.columns\n", - " if(type_value == \"f\"): \n", - " for col in cols:\n", - " df[col] = df[col].astype(float)\n", - " if(type_value == 'i'):\n", - " for col in cols:\n", - " df[col] = df[col].astype(int)\n", - " r = df.values\n", - " if(vector):\n", - " r = r.reshape(-1,)\n", - " return r" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "id": "801e2ab1", - "metadata": {}, - "outputs": [], - "source": [ - "from sklearn.preprocessing import MinMaxScaler\n", - "import plotly.graph_objects as go\n", - "import pandas as pd\n", - "import numpy as np\n", - "import csv\n", - "from matplotlib import gridspec\n", - "import seaborn as sns\n", - "import matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "code", - "execution_count": 33, - "id": "5a8b764b", - "metadata": {}, - "outputs": [], - "source": [ - "H_users = fromDFtoArray(path+ \"other/dt/train_embed.csv\",False,'f') \n", - "classPsy = fromDFtoArray(path+ \"other/dt/train_user_quest_label.csv\",False,'f') " - ] - }, - { - "cell_type": "code", - "execution_count": 34, - "id": "33643887", - "metadata": {}, - "outputs": [], - "source": [ - "d = [151,111,57,415,110,73]\n", - "g = [[7, 14, 20, 22, 23, 39, 44, 53, 56, 57, 62, 71, 95, 100, 106, 119, 122, 133, 141, 142, 152, 154, 156, 160, 179, 182, 183, 187, 188, 191, 194, 198, 199, 201, 203, 207, 208, 214, 219, 221, 224, 233, 235, 241, 243, 246, 252, 259, 261, 265, 266, 267, 271, 282, 289, 293, 299, 302, 303, 304, 307, 308, 309, 310, 312, 313, 325, 327, 351, 358, 385, 390, 393, 396, 406, 409, 415, 419, 431, 435, 445, 447, 448, 450, 468, 479, 486, 488, 490, 494, 510, 516, 517, 525, 546, 547, 550, 551, 553, 557, 559, 565, 567, 578, 580, 597, 600, 604, 608, 611, 612, 615, 640, 641, 644, 656, 662, 677, 679, 682, 686, 688, 690, 703, 709, 714, 723, 732, 745, 752, 776, 782, 785, 786, 787, 789, 792, 798, 810, 829, 839, 842, 844, 847, 854, 866, 869, 870, 881, 883, 900]\n", - " , [4, 8, 15, 28, 40, 41, 42, 50, 59, 84, 85, 88, 89, 109, 112, 123, 138, 145, 146, 150, 157, 158, 166, 181, 186, 190, 232, 234, 242, 247, 248, 249, 260, 272, 274, 277, 281, 296, 301, 338, 339, 345, 352, 359, 365, 388, 403, 404, 412, 418, 441, 443, 461, 464, 478, 481, 489, 491, 495, 497, 500, 508, 524, 531, 569, 576, 587, 589, 609, 610, 613, 617, 620, 622, 627, 637, 642, 647, 673, 678, 711, 712, 715, 720, 726, 729, 730, 758, 759, 760, 788, 797, 811, 815, 819, 820, 821, 830, 831, 840, 845, 849, 862, 878, 880, 884, 891, 895, 898, 904, 906 ]\n", - ",[58, 75, 80, 103, 114, 161, 205, 210, 211, 226, 227, 236, 244, 257, 258, 328, 347, 356, 357, 372, 380, 391, 399, 400, 402, 410, 455, 457, 526, 558, 583, 606, 614, 616, 618, 624, 643, 645, 660, 664, 676, 691, 717, 738, 755, 756, 763, 771, 796, 812, 817, 832, 850, 861, 868, 882, 912]\n", - " ,[0, 2, 3, 5, 6, 9, 10, 11, 12, 17, 18, 24, 29, 30, 31, 32, 33, 34, 35, 36, 38, 43, 46, 48, 52, 54, 55, 63, 64, 66, 68, 69, 72, 74, 76, 77, 78, 79, 81, 82, 87, 90, 91, 92, 93, 94, 98, 99, 101, 102, 104, 105, 107, 108, 110, 111, 115, 117, 120, 121, 124, 126, 127, 129, 130, 131, 132, 134, 135, 136, 137, 139, 143, 144, 148, 149, 151, 155, 163, 167, 171, 172, 173, 175, 176, 177, 178, 184, 189, 192, 193, 195, 196, 197, 200, 202, 204, 206, 215, 218, 222, 223, 225, 229, 230, 237, 238, 240, 251, 253, 254, 256, 262, 263, 264, 268, 273, 278, 279, 280, 283, 284, 287, 288, 290, 291, 292, 294, 295, 305, 306, 315, 317, 318, 319, 320, 321, 322, 323, 324, 330, 331, 332, 333, 334, 336, 337, 340, 342, 343, 346, 350, 353, 354, 355, 360, 361, 363, 364, 366, 367, 368, 370, 371, 373, 374, 376, 382, 383, 386, 389, 392, 394, 397, 401, 407, 411, 413, 414, 416, 417, 423, 424, 425, 426, 427, 428, 429, 432, 434, 437, 438, 440, 442, 444, 446, 449, 453, 454, 456, 458, 459, 462, 467, 469, 471, 472, 473, 475, 477, 480, 482, 483, 484, 485, 492, 493, 496, 498, 499, 502, 504, 506, 507, 509, 513, 515, 518, 519, 520, 521, 522, 523, 527, 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 541, 542, 543, 544, 545, 549, 552, 556, 560, 561, 562, 563, 566, 570, 571, 573, 574, 575, 577, 581, 582, 585, 588, 591, 592, 593, 594, 595, 596, 598, 599, 601, 602, 603, 605, 607, 619, 623, 625, 626, 628, 629, 630, 631, 632, 635, 638, 639, 648, 649, 650, 651, 652, 654, 657, 663, 667, 668, 669, 670, 672, 675, 681, 683, 684, 692, 693, 694, 695, 697, 698, 700, 704, 705, 706, 707, 708, 710, 713, 716, 718, 719, 722, 724, 727, 728, 731, 733, 734, 735, 736, 737, 740, 741, 744, 747, 748, 749, 750, 751, 754, 757, 762, 764, 765, 767, 768, 770, 772, 773, 774, 775, 777, 778, 779, 780, 781, 783, 791, 793, 795, 799, 800, 801, 802, 803, 804, 806, 808, 816, 818, 822, 823, 824, 825, 826, 833, 836, 837, 838, 841, 846, 848, 851, 852, 856, 857, 864, 873, 875, 877, 885, 886, 887, 888, 889, 890, 893, 894, 896, 897, 899, 901, 902, 903, 905, 907, 909, 911, 914] \n", - ",[13, 16, 19, 27, 37, 47, 49, 60, 61, 65, 67, 70, 73, 83, 86, 125, 128, 140, 147, 153, 159, 162, 165, 168, 170, 185, 209, 228, 239, 245, 250, 269, 270, 275, 285, 300, 311, 314, 316, 329, 341, 348, 349, 362, 369, 375, 377, 378, 379, 384, 395, 398, 408, 433, 439, 452, 465, 466, 470, 487, 501, 503, 514, 540, 548, 554, 555, 564, 568, 572, 584, 590, 634, 653, 655, 658, 659, 661, 665, 666, 671, 674, 696, 699, 702, 721, 739, 742, 746, 753, 769, 784, 790, 794, 809, 813, 827, 828, 843, 853, 855, 858, 859, 860, 865, 867, 874, 908, 915, 916]\n", - ",[1, 21, 25, 26, 45, 51, 96, 97, 113, 116, 118, 164, 169, 174, 180, 212, 213, 216, 217, 220, 231, 255, 276, 286, 297, 298, 326, 335, 344, 381, 387, 405, 420, 421, 422, 430, 436, 451, 460, 463, 474, 476, 505, 511, 512, 579, 586, 621, 633, 636, 646, 680, 685, 687, 689, 701, 725, 743, 761, 766, 805, 807, 814, 834, 835, 863, 871, 872, 876, 879, 892, 910, 913] \n", - "]" - ] - }, - { - "cell_type": "code", - "execution_count": 35, - "id": "d190bd89", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "17\n", - "(917, 17)\n", - "[array([-0.37748344, -0.50331126, -0.36423841, -0.99337748, -0.39072848,\n", - " -0.64238411, 0.16556291, 0.33774834, -0.26490066, -0.99337748,\n", - " 0.36423841, -0.53642384, 0.00662252, -0.41721854, -0.68874172,\n", - " 0.52317881, -0.65562914]), array([-0.4954955 , -0.62162162, -0.53153153, -1. , -0.69369369,\n", - " -0.51351351, -0.2972973 , -0.36936937, -0.47747748, 1. ,\n", - " 0.20720721, -0.58558559, 0.18918919, -0.58558559, -0.45945946,\n", - " -1. , -0.53153153]), array([-0.43859649, -0.68421053, -0.47368421, -1. , -0.52631579,\n", - " -0.61403509, -0.05263158, 0.29824561, -0.33333333, 1. ,\n", - " -0.98245614, -0.40350877, 0.05263158, -0.29824561, -0.57894737,\n", - " 1. , -0.61403509]), array([-0.70843373, -0.56144578, -0.62891566, -1. , -0.68674699,\n", - " -0.83614458, 0.2 , 0.4 , -0.56626506, 1. ,\n", - " 1. , -0.5686747 , 0.36385542, -0.68433735, -0.5373494 ,\n", - " 1. , -0.58795181]), array([-0.72727273, -0.76363636, -0.72727273, 1. , -0.74545455,\n", - " -0.07272727, -0.19090909, -0.01818182, -1. , 0.63636364,\n", - " 0.65454545, -0.78181818, -0.03636364, -0.72727273, -0.70909091,\n", - " 0.43636364, -0.58181818]), array([-0.53424658, -0.67123288, -0.57534247, 1. , -0.23287671,\n", - " -0.08219178, -0.31506849, 0.06849315, 1. , 0.64383562,\n", - " 0.56164384, -0.80821918, 0.08219178, -0.56164384, -0.83561644,\n", - " 0.63013699, -0.67123288])]\n" - ] - } - ], - "source": [ - "titre = ['agency', 'anxiety','avoiding', 'depression','ext. control', 'fatigue', 'hyper vigilance',\n", - " 'trauma','int. control', 'memory', 'problem focused', 'quality of life',\n", - " 'sadness', 'self efficacy','sleep','social','stress']\n", - "dim = len(titre)\n", - "seuils = [ 0.38646466, 0.13056517 , 0.16311094 , 0.5522181 , 0.4068393 , 0.4961518,\n", - " -0.12576449, -0.16419357 , 0.34581536, -0.06974197, -0.25050393 , 0.17414908,\n", - " -0.09691429, 0.39290804, 0.37336868, -0.30328006 , 0.23517847]\n", - "print(len(seuils))\n", - "\n", - "indices = []\n", - "for i in range(17):\n", - " indices.append([i])\n", - "print(H_users.shape)\n", - "radar = []\n", - "\n", - "for k in range(len(g)):\n", - " rows = H_users[g[k]]\n", - " v = np.full(dim, 0.0)\n", - " for i in range(len(rows)):\n", - " #print(len(rows[i]))\n", - " for j in range(len(rows[i])):\n", - " \n", - " if(rows[i][j] > seuils[j]):\n", - " v[j] = v[j] + 1 #rows[i][j]\n", - " if(rows[i][j] < seuils[j]):\n", - " v[j] = v[j] - 1#+ rows[i][j]\n", - " v = v / len(rows)\n", - " radar.append(v)\n", - "print(radar)\n", - "\n", - "scaler = MinMaxScaler()\n", - "radar = scaler.fit_transform(np.array(radar))" - ] - }, - { - "cell_type": "code", - "execution_count": 36, - "id": "34d43f1e", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "(917, 17)\n", - "[array([-0.28476821, 0.01986755, 0. , 0.14569536, -0.23178808,\n", - " 0.2384106 , 0.01324503, 0.07284768, -0.2384106 , -0.30463576,\n", - " 0. , -0.06622517, -0.02649007, -0.15231788, -0.02649007,\n", - " 0. , 0.04635762]), array([-0.24324324, 0.07207207, 0. , 0.04504505, -0.0990991 ,\n", - " 0.25225225, 0.02702703, 0.05405405, -0.23423423, -0.02702703,\n", - " 0. , -0.11711712, 0.10810811, -0.17117117, 0. ,\n", - " 0. , 0.18018018]), array([-0.31578947, 0. , 0. , 0.07017544, -0.24561404,\n", - " 0.1754386 , -0.03508772, 0.07017544, -0.22807018, -0.03508772,\n", - " 0. , -0.12280702, 0.01754386, -0.28070175, -0.15789474,\n", - " 0. , 0.10526316]), array([-0.22650602, -0.01686747, 0. , 0.1060241 , -0.14698795,\n", - " 0.15421687, -0.02650602, -0.01445783, -0.18795181, -0.01445783,\n", - " 0. , -0.09156627, 0.00240964, -0.1060241 , -0.21204819,\n", - " 0. , 0.04096386]), array([-0.12727273, 0.00909091, 0. , 0.78181818, -0.13636364,\n", - " 0.47272727, 0. , 0.00909091, -0.10909091, -0.04545455,\n", - " 0. , -0.04545455, 0.00909091, -0.00909091, -0.05454545,\n", - " 0. , 0.00909091]), array([-0.26027397, -0.04109589, 0. , 0.80821918, -0.19178082,\n", - " 0.32876712, 0. , -0.01369863, -0.26027397, -0.12328767,\n", - " 0. , -0.02739726, -0.05479452, -0.01369863, -0.05479452,\n", - " 0. , -0.01369863])]\n", - "[[0.16455441 0.53869875 0. 0.13188382 0.0943655 0.26433588\n", - " 0.77812042 1. 0.14461525 0. 0. 0.59304052\n", - " 0.17375075 0.4726758 0.87507526 0. 0.30976178]\n", - " [0.38482645 1. 0. 0. 1. 0.30779335\n", - " 1. 0.78473721 0.17223979 0.95668452 0. 0.05963646\n", - " 1. 0.40326292 1. 0. 1. ]\n", - " [0. 0.36314068 0. 0.03292878 0. 0.06662806\n", - " 0. 0.96939204 0.21301194 0.92890608 0. 0.\n", - " 0.44405901 0. 0.25538278 0. 0.61358839]\n", - " [0.47361018 0.21409258 0. 0.07990188 0.67314696 0.\n", - " 0.13815874 0. 0.47837478 1. 0. 0.32743771\n", - " 0.35115553 0.64311739 0. 0. 0.28194152]\n", - " [1. 0.4434718 0. 0.96540633 0.74566049 1.\n", - " 0.5648855 0.26972799 1. 0.89318032 0. 0.81073964\n", - " 0.39216942 1. 0.7427686 0. 0.11754528]\n", - " [0.29448578 0. 0. 1. 0.36742475 0.54802058\n", - " 0.5648855 0.00869591 0. 0.6249548 0. 1.\n", - " 0. 0.98303558 0.74159402 0. 0. ]]\n" - ] - } - ], - "source": [ - "print(classPsy.shape)\n", - "radar2 = []\n", - "for k in range(len(g)):\n", - " rows = classPsy[g[k]]\n", - " v = np.full(dim, 0.0)\n", - " for i in range(len(rows)):\n", - " for j in range(len(rows[i])):\n", - " if(rows[i][j] == 2):\n", - " v[j] = v[j] + 1 #rows[i][j]\n", - " if(rows[i][j] == 0):\n", - " v[j] = v[j] - 1#+ rows[i][j]\n", - " v = v / len(rows)\n", - " radar2.append(v)\n", - "print(radar2)\n", - "scaler = MinMaxScaler()\n", - "radar2 = scaler.fit_transform(np.array(radar2))\n", - "print(radar2)" - ] - }, - { - "cell_type": "code", - "execution_count": 37, - "id": "acb7d4df", - "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "fill": "toself", - "name": "H", - "r": [ - 1, - 1.0000000000000002, - 1, - 0.0033112582781457123, - 0.6920433263182283, - 0.25380675933755836, - 0.933140763702973, - 0.9190874265241868, - 0.3675496688741722, - 0, - 0.6793061009201196, - 0.6715798084032027, - 0.10740656161985232, - 0.7226913513380435, - 0.39046122959795593, - 0.7615894039735099, - 0.11169353895116174 - ], - "theta": [ - "agency", - "anxiety", - "avoiding", - "depression", - "ext. control", - "fatigue", - "hyper vigilance", - "trauma", - "int. control", - "memory", - "problem focused", - "quality of life", - "sadness", - "self efficacy", - "sleep", - "social", - "stress" - ], - "type": "scatterpolar" - }, - { - "fill": "toself", - "name": "Class psy", - "r": [ - 0.16455440884795092, - 0.5386987513270309, - 0, - 0.13188381895598983, - 0.09436550290404844, - 0.2643358809222332, - 0.7781204185834891, - 1, - 0.14461525033548983, - 0, - 0, - 0.5930405191252273, - 0.17375075255869957, - 0.47267580001011067, - 0.8750752558699578, - 0, - 0.30976178331597964 - ], - "theta": [ - "agency", - "anxiety", - "avoiding", - "depression", - "ext. control", - "fatigue", - "hyper vigilance", - "trauma", - "int. control", - "memory", - "problem focused", - "quality of life", - "sadness", - "self efficacy", - "sleep", - "social", - "stress" - ], - "type": "scatterpolar" - } - ], - "layout": { - "font": { - "size": 18 - }, - "polar": { - "radialaxis": { - "visible": true - } - }, - "showlegend": false, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - }, - "title": { - "text": "DTCluster: Trauma" - } - } - }, - "text/html": [ - "<div> <div id=\"76765db7-43a6-462e-972b-9174621cc1b2\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"76765db7-43a6-462e-972b-9174621cc1b2\")) { Plotly.newPlot( \"76765db7-43a6-462e-972b-9174621cc1b2\", [{\"fill\":\"toself\",\"name\":\"H\",\"r\":[1.0,1.0000000000000002,1.0,0.0033112582781457123,0.6920433263182283,0.25380675933755836,0.933140763702973,0.9190874265241868,0.3675496688741722,0.0,0.6793061009201196,0.6715798084032027,0.10740656161985232,0.7226913513380435,0.39046122959795593,0.7615894039735099,0.11169353895116174],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"},{\"fill\":\"toself\",\"name\":\"Class psy\",\"r\":[0.16455440884795092,0.5386987513270309,0.0,0.13188381895598983,0.09436550290404844,0.2643358809222332,0.7781204185834891,1.0,0.14461525033548983,0.0,0.0,0.5930405191252273,0.17375075255869957,0.47267580001011067,0.8750752558699578,0.0,0.30976178331597964],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"polar\":{\"radialaxis\":{\"visible\":true}},\"showlegend\":false,\"title\":{\"text\":\"DTCluster: Trauma\"},\"font\":{\"size\":18}}, {\"responsive\": true} ).then(function(){\n", - " \n", - "var gd = document.getElementById('76765db7-43a6-462e-972b-9174621cc1b2');\n", - "var x = new MutationObserver(function (mutations, observer) {{\n", - " var display = window.getComputedStyle(gd).display;\n", - " if (!display || display === 'none') {{\n", - " console.log([gd, 'removed!']);\n", - " Plotly.purge(gd);\n", - " observer.disconnect();\n", - " }}\n", - "}});\n", - "\n", - "// Listen for the removal of the full notebook cells\n", - "var notebookContainer = gd.closest('#notebook-container');\n", - "if (notebookContainer) {{\n", - " x.observe(notebookContainer, {childList: true});\n", - "}}\n", - "\n", - "// Listen for the clearing of the current output cell\n", - "var outputEl = gd.closest('.output');\n", - "if (outputEl) {{\n", - " x.observe(outputEl, {childList: true});\n", - "}}\n", - "\n", - " }) }; }); </script> </div>" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "fill": "toself", - "name": "H", - "r": [ - 0.6626195903304337, - 0.5455284146310979, - 0.5391809720167928, - 0, - 0.10098144792022334, - 0.42261429291558417, - 0.03450258769407699, - 0, - 0.26126126126126126, - 0.9999999999999999, - 0.600095670892131, - 0.5501059254028373, - 0.5635734256423912, - 0.3302521852707725, - 0.9999999999999998, - 0, - 0.9999999999999996 - ], - "theta": [ - "agency", - "anxiety", - "avoiding", - "depression", - "ext. control", - "fatigue", - "hyper vigilance", - "trauma", - "int. control", - "memory", - "problem focused", - "quality of life", - "sadness", - "self efficacy", - "sleep", - "social", - "stress" - ], - "type": "scatterpolar" - }, - { - "fill": "toself", - "name": "Class psy", - "r": [ - 0.3848264508162984, - 0.9999999999999998, - 0, - 0, - 0.9999999999999999, - 0.3077933504343407, - 1, - 0.7847372139092118, - 0.17223978508986737, - 0.9566845221816624, - 0, - 0.059636462659132805, - 1, - 0.40326292234689176, - 1, - 0, - 1 - ], - "theta": [ - "agency", - "anxiety", - "avoiding", - "depression", - "ext. control", - "fatigue", - "hyper vigilance", - "trauma", - "int. control", - "memory", - "problem focused", - "quality of life", - "sadness", - "self efficacy", - "sleep", - "social", - "stress" - ], - "type": "scatterpolar" - } - ], - "layout": { - "font": { - "size": 18 - }, - "polar": { - "radialaxis": { - "visible": true - } - }, - "showlegend": false, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - }, - "title": { - "text": "DTCluster: Sadness, stress and memory" - } - } - }, - "text/html": [ - "<div> <div id=\"20455127-7ff7-4bfe-aa73-298a5bd17baf\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"20455127-7ff7-4bfe-aa73-298a5bd17baf\")) { Plotly.newPlot( \"20455127-7ff7-4bfe-aa73-298a5bd17baf\", [{\"fill\":\"toself\",\"name\":\"H\",\"r\":[0.6626195903304337,0.5455284146310979,0.5391809720167928,0.0,0.10098144792022334,0.42261429291558417,0.03450258769407699,0.0,0.26126126126126126,0.9999999999999999,0.600095670892131,0.5501059254028373,0.5635734256423912,0.3302521852707725,0.9999999999999998,0.0,0.9999999999999996],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"},{\"fill\":\"toself\",\"name\":\"Class psy\",\"r\":[0.3848264508162984,0.9999999999999998,0.0,0.0,0.9999999999999999,0.3077933504343407,1.0,0.7847372139092118,0.17223978508986737,0.9566845221816624,0.0,0.059636462659132805,1.0,0.40326292234689176,1.0,0.0,1.0],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"polar\":{\"radialaxis\":{\"visible\":true}},\"showlegend\":false,\"title\":{\"text\":\"DTCluster: Sadness, stress and memory\"},\"font\":{\"size\":18}}, {\"responsive\": true} ).then(function(){\n", - " \n", - "var gd = document.getElementById('20455127-7ff7-4bfe-aa73-298a5bd17baf');\n", - "var x = new MutationObserver(function (mutations, observer) {{\n", - " var display = window.getComputedStyle(gd).display;\n", - " if (!display || display === 'none') {{\n", - " console.log([gd, 'removed!']);\n", - " Plotly.purge(gd);\n", - " observer.disconnect();\n", - " }}\n", - "}});\n", - "\n", - "// Listen for the removal of the full notebook cells\n", - "var notebookContainer = gd.closest('#notebook-container');\n", - "if (notebookContainer) {{\n", - " x.observe(notebookContainer, {childList: true});\n", - "}}\n", - "\n", - "// Listen for the clearing of the current output cell\n", - "var outputEl = gd.closest('.output');\n", - "if (outputEl) {{\n", - " x.observe(outputEl, {childList: true});\n", - "}}\n", - "\n", - " }) }; }); </script> </div>" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "fill": "toself", - "name": "H", - "r": [ - 0.8252861068333486, - 0.3051024879497546, - 0.6985249192633325, - 0, - 0.42752288885478995, - 0.2909411261295275, - 0.509518477043673, - 0.8677431283125847, - 0.33333333333333337, - 0.9999999999999999, - 0, - 0.9999999999999999, - 0.22236626047878316, - 0.9999999999999999, - 0.6823456278491502, - 1, - 0.40942904965594185 - ], - "theta": [ - "agency", - "anxiety", - "avoiding", - "depression", - "ext. control", - "fatigue", - "hyper vigilance", - "trauma", - "int. control", - "memory", - "problem focused", - "quality of life", - "sadness", - "self efficacy", - "sleep", - "social", - "stress" - ], - "type": "scatterpolar" - }, - { - "fill": "toself", - "name": "Class psy", - "r": [ - 0, - 0.3631406761177753, - 0, - 0.03292878055423164, - 0, - 0.06662805569632463, - 0, - 0.9693920416101486, - 0.21301193676117802, - 0.9289060751306334, - 0, - 0, - 0.4440590111642743, - 0, - 0.25538277511961727, - 0, - 0.613588394921103 - ], - "theta": [ - "agency", - "anxiety", - "avoiding", - "depression", - "ext. control", - "fatigue", - "hyper vigilance", - "trauma", - "int. control", - "memory", - "problem focused", - "quality of life", - "sadness", - "self efficacy", - "sleep", - "social", - "stress" - ], - "type": "scatterpolar" - } - ], - "layout": { - "font": { - "size": 18 - }, - "polar": { - "radialaxis": { - "visible": true - } - }, - "showlegend": false, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - }, - "title": { - "text": "DTCluster: Trauma and memory" - } - } - }, - "text/html": [ - "<div> <div id=\"5991dd8a-46f3-47ca-afe3-6a725b9d3e27\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"5991dd8a-46f3-47ca-afe3-6a725b9d3e27\")) { Plotly.newPlot( \"5991dd8a-46f3-47ca-afe3-6a725b9d3e27\", [{\"fill\":\"toself\",\"name\":\"H\",\"r\":[0.8252861068333486,0.3051024879497546,0.6985249192633325,0.0,0.42752288885478995,0.2909411261295275,0.509518477043673,0.8677431283125847,0.33333333333333337,0.9999999999999999,0.0,0.9999999999999999,0.22236626047878316,0.9999999999999999,0.6823456278491502,1.0,0.40942904965594185],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"},{\"fill\":\"toself\",\"name\":\"Class psy\",\"r\":[0.0,0.3631406761177753,0.0,0.03292878055423164,0.0,0.06662805569632463,0.0,0.9693920416101486,0.21301193676117802,0.9289060751306334,0.0,0.0,0.4440590111642743,0.0,0.25538277511961727,0.0,0.613588394921103],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"polar\":{\"radialaxis\":{\"visible\":true}},\"showlegend\":false,\"title\":{\"text\":\"DTCluster: Trauma and memory\"},\"font\":{\"size\":18}}, {\"responsive\": true} ).then(function(){\n", - " \n", - "var gd = document.getElementById('5991dd8a-46f3-47ca-afe3-6a725b9d3e27');\n", - "var x = new MutationObserver(function (mutations, observer) {{\n", - " var display = window.getComputedStyle(gd).display;\n", - " if (!display || display === 'none') {{\n", - " console.log([gd, 'removed!']);\n", - " Plotly.purge(gd);\n", - " observer.disconnect();\n", - " }}\n", - "}});\n", - "\n", - "// Listen for the removal of the full notebook cells\n", - "var notebookContainer = gd.closest('#notebook-container');\n", - "if (notebookContainer) {{\n", - " x.observe(notebookContainer, {childList: true});\n", - "}}\n", - "\n", - "// Listen for the clearing of the current output cell\n", - "var outputEl = gd.closest('.output');\n", - "if (outputEl) {{\n", - " x.observe(outputEl, {childList: true});\n", - "}}\n", - "\n", - " }) }; }); </script> </div>" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "fill": "toself", - "name": "H", - "r": [ - 0.05385811749580105, - 0.7766849079946061, - 0.2709304881216408, - 0, - 0.11453393749926821, - 0, - 1, - 1, - 0.21686746987951805, - 0.9999999999999999, - 1, - 0.5918910797584638, - 1, - 0.10007614099520756, - 0.7929323593586943, - 1, - 0.5961364894205792 - ], - "theta": [ - "agency", - "anxiety", - "avoiding", - "depression", - "ext. control", - "fatigue", - "hyper vigilance", - "trauma", - "int. control", - "memory", - "problem focused", - "quality of life", - "sadness", - "self efficacy", - "sleep", - "social", - "stress" - ], - "type": "scatterpolar" - }, - { - "fill": "toself", - "name": "Class psy", - "r": [ - 0.47361017674759953, - 0.21409257531762815, - 0, - 0.07990188438099098, - 0.6731469567590749, - 0, - 0.13815874183757926, - 0, - 0.4783747841448165, - 1, - 0, - 0.3274377105398927, - 0.3511555312157722, - 0.6431173902892839, - 0, - 0, - 0.28194151526539 - ], - "theta": [ - "agency", - "anxiety", - "avoiding", - "depression", - "ext. control", - "fatigue", - "hyper vigilance", - "trauma", - "int. control", - "memory", - "problem focused", - "quality of life", - "sadness", - "self efficacy", - "sleep", - "social", - "stress" - ], - "type": "scatterpolar" - } - ], - "layout": { - "font": { - "size": 18 - }, - "polar": { - "radialaxis": { - "visible": true - } - }, - "showlegend": false, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - }, - "title": { - "text": "DTCluster: Memory" - } - } - }, - "text/html": [ - "<div> <div id=\"a1da95d6-d37f-4ac8-9e4e-4db7c4101552\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"a1da95d6-d37f-4ac8-9e4e-4db7c4101552\")) { Plotly.newPlot( \"a1da95d6-d37f-4ac8-9e4e-4db7c4101552\", [{\"fill\":\"toself\",\"name\":\"H\",\"r\":[0.05385811749580105,0.7766849079946061,0.2709304881216408,0.0,0.11453393749926821,0.0,1.0,1.0,0.21686746987951805,0.9999999999999999,1.0,0.5918910797584638,1.0,0.10007614099520756,0.7929323593586943,1.0,0.5961364894205792],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"},{\"fill\":\"toself\",\"name\":\"Class psy\",\"r\":[0.47361017674759953,0.21409257531762815,0.0,0.07990188438099098,0.6731469567590749,0.0,0.13815874183757926,0.0,0.4783747841448165,1.0,0.0,0.3274377105398927,0.3511555312157722,0.6431173902892839,0.0,0.0,0.28194151526539],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"polar\":{\"radialaxis\":{\"visible\":true}},\"showlegend\":false,\"title\":{\"text\":\"DTCluster: Memory\"},\"font\":{\"size\":18}}, {\"responsive\": true} ).then(function(){\n", - " \n", - "var gd = document.getElementById('a1da95d6-d37f-4ac8-9e4e-4db7c4101552');\n", - "var x = new MutationObserver(function (mutations, observer) {{\n", - " var display = window.getComputedStyle(gd).display;\n", - " if (!display || display === 'none') {{\n", - " console.log([gd, 'removed!']);\n", - " Plotly.purge(gd);\n", - " observer.disconnect();\n", - " }}\n", - "}});\n", - "\n", - "// Listen for the removal of the full notebook cells\n", - "var notebookContainer = gd.closest('#notebook-container');\n", - "if (notebookContainer) {{\n", - " x.observe(notebookContainer, {childList: true});\n", - "}}\n", - "\n", - "// Listen for the clearing of the current output cell\n", - "var outputEl = gd.closest('.output');\n", - "if (outputEl) {{\n", - " x.observe(outputEl, {childList: true});\n", - "}}\n", - "\n", - " }) }; }); </script> </div>" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "fill": "toself", - "name": "H", - "r": [ - 0, - 0, - 0, - 1, - 0, - 1, - 0.24105415860735008, - 0.45646157121566955, - 0, - 0.817577771066143, - 0.8257441673370877, - 0.06523429064996744, - 0, - 0, - 0.3363636363636362, - 0.7181818181818181, - 0.6400417603597814 - ], - "theta": [ - "agency", - "anxiety", - "avoiding", - "depression", - "ext. control", - "fatigue", - "hyper vigilance", - "trauma", - "int. control", - "memory", - "problem focused", - "quality of life", - "sadness", - "self efficacy", - "sleep", - "social", - "stress" - ], - "type": "scatterpolar" - }, - { - "fill": "toself", - "name": "Class psy", - "r": [ - 1, - 0.44347179538019227, - 0, - 0.9654063271786428, - 0.7456604883789348, - 1.0000000000000002, - 0.564885496183206, - 0.2697279872384972, - 0.9999999999999999, - 0.8931803183617966, - 0, - 0.8107396381955576, - 0.3921694214876033, - 1, - 0.7427685950413223, - 0, - 0.11754528094438979 - ], - "theta": [ - "agency", - "anxiety", - "avoiding", - "depression", - "ext. control", - "fatigue", - "hyper vigilance", - "trauma", - "int. control", - "memory", - "problem focused", - "quality of life", - "sadness", - "self efficacy", - "sleep", - "social", - "stress" - ], - "type": "scatterpolar" - } - ], - "layout": { - "font": { - "size": 18 - }, - "polar": { - "radialaxis": { - "visible": true - } - }, - "showlegend": false, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - }, - "title": { - "text": "DTCluster: Depression and associated symptoms" - } - } - }, - "text/html": [ - "<div> <div id=\"36eef9ac-b5d7-4fd3-98c8-fe1b75bf12f6\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"36eef9ac-b5d7-4fd3-98c8-fe1b75bf12f6\")) { Plotly.newPlot( \"36eef9ac-b5d7-4fd3-98c8-fe1b75bf12f6\", [{\"fill\":\"toself\",\"name\":\"H\",\"r\":[0.0,0.0,0.0,1.0,0.0,1.0,0.24105415860735008,0.45646157121566955,0.0,0.817577771066143,0.8257441673370877,0.06523429064996744,0.0,0.0,0.3363636363636362,0.7181818181818181,0.6400417603597814],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"},{\"fill\":\"toself\",\"name\":\"Class psy\",\"r\":[1.0,0.44347179538019227,0.0,0.9654063271786428,0.7456604883789348,1.0000000000000002,0.564885496183206,0.2697279872384972,0.9999999999999999,0.8931803183617966,0.0,0.8107396381955576,0.3921694214876033,1.0,0.7427685950413223,0.0,0.11754528094438979],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"polar\":{\"radialaxis\":{\"visible\":true}},\"showlegend\":false,\"title\":{\"text\":\"DTCluster: Depression and associated symptoms\"},\"font\":{\"size\":18}}, {\"responsive\": true} ).then(function(){\n", - " \n", - "var gd = document.getElementById('36eef9ac-b5d7-4fd3-98c8-fe1b75bf12f6');\n", - "var x = new MutationObserver(function (mutations, observer) {{\n", - " var display = window.getComputedStyle(gd).display;\n", - " if (!display || display === 'none') {{\n", - " console.log([gd, 'removed!']);\n", - " Plotly.purge(gd);\n", - " observer.disconnect();\n", - " }}\n", - "}});\n", - "\n", - "// Listen for the removal of the full notebook cells\n", - "var notebookContainer = gd.closest('#notebook-container');\n", - "if (notebookContainer) {{\n", - " x.observe(notebookContainer, {childList: true});\n", - "}}\n", - "\n", - "// Listen for the clearing of the current output cell\n", - "var outputEl = gd.closest('.output');\n", - "if (outputEl) {{\n", - " x.observe(outputEl, {childList: true});\n", - "}}\n", - "\n", - " }) }; }); </script> </div>" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "fill": "toself", - "name": "H", - "r": [ - 0.5518355221276496, - 0.35495419005740514, - 0.4185011017969513, - 1, - 0.9999999999999999, - 0.9876024449205008, - 0, - 0.5691187321548875, - 1, - 0.8213261730305375, - 0.7788822887622742, - 0, - 0.2962263160657114, - 0.38605693334012314, - 0, - 0.8150684931506849, - 0 - ], - "theta": [ - "agency", - "anxiety", - "avoiding", - "depression", - "ext. control", - "fatigue", - "hyper vigilance", - "trauma", - "int. control", - "memory", - "problem focused", - "quality of life", - "sadness", - "self efficacy", - "sleep", - "social", - "stress" - ], - "type": "scatterpolar" - }, - { - "fill": "toself", - "name": "Class psy", - "r": [ - 0.2944857798484113, - 0, - 0, - 1, - 0.36742474619851917, - 0.5480205762092292, - 0.564885496183206, - 0.008695913446491205, - 0, - 0.6249547999445546, - 0, - 1, - 0, - 0.983035577828007, - 0.7415940224159403, - 0, - 0 - ], - "theta": [ - "agency", - "anxiety", - "avoiding", - "depression", - "ext. control", - "fatigue", - "hyper vigilance", - "trauma", - "int. control", - "memory", - "problem focused", - "quality of life", - "sadness", - "self efficacy", - "sleep", - "social", - "stress" - ], - "type": "scatterpolar" - } - ], - "layout": { - "font": { - "size": 18 - }, - "polar": { - "radialaxis": { - "visible": true - } - }, - "showlegend": false, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - }, - "title": { - "text": "DTCluster: Depression" - } - } - }, - "text/html": [ - "<div> <div id=\"c5f7ad3d-e342-44e4-8910-3dc3df3edad9\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"c5f7ad3d-e342-44e4-8910-3dc3df3edad9\")) { Plotly.newPlot( \"c5f7ad3d-e342-44e4-8910-3dc3df3edad9\", [{\"fill\":\"toself\",\"name\":\"H\",\"r\":[0.5518355221276496,0.35495419005740514,0.4185011017969513,1.0,0.9999999999999999,0.9876024449205008,0.0,0.5691187321548875,1.0,0.8213261730305375,0.7788822887622742,0.0,0.2962263160657114,0.38605693334012314,0.0,0.8150684931506849,0.0],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"},{\"fill\":\"toself\",\"name\":\"Class psy\",\"r\":[0.2944857798484113,0.0,0.0,1.0,0.36742474619851917,0.5480205762092292,0.564885496183206,0.008695913446491205,0.0,0.6249547999445546,0.0,1.0,0.0,0.983035577828007,0.7415940224159403,0.0,0.0],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"polar\":{\"radialaxis\":{\"visible\":true}},\"showlegend\":false,\"title\":{\"text\":\"DTCluster: Depression\"},\"font\":{\"size\":18}}, {\"responsive\": true} ).then(function(){\n", - " \n", - "var gd = document.getElementById('c5f7ad3d-e342-44e4-8910-3dc3df3edad9');\n", - "var x = new MutationObserver(function (mutations, observer) {{\n", - " var display = window.getComputedStyle(gd).display;\n", - " if (!display || display === 'none') {{\n", - " console.log([gd, 'removed!']);\n", - " Plotly.purge(gd);\n", - " observer.disconnect();\n", - " }}\n", - "}});\n", - "\n", - "// Listen for the removal of the full notebook cells\n", - "var notebookContainer = gd.closest('#notebook-container');\n", - "if (notebookContainer) {{\n", - " x.observe(notebookContainer, {childList: true});\n", - "}}\n", - "\n", - "// Listen for the clearing of the current output cell\n", - "var outputEl = gd.closest('.output');\n", - "if (outputEl) {{\n", - " x.observe(outputEl, {childList: true});\n", - "}}\n", - "\n", - " }) }; }); </script> </div>" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "name_cluster=['Trauma', 'Sadness, stress and memory','Trauma and memory','Memory','Depression and associated symptoms', 'Depression']\n", - "categories = ['processing cost','mechanical properties','chemical stability',\n", - " 'thermal stability', 'device integration']\n", - "titleGraph = []\n", - "for i in range(len(d)):\n", - " #titleGraph.append('DTCluster ' + str(i))\n", - " titleGraph.append('DTCluster: ' + name_cluster[i])\n", - "def radar_fig(i):\n", - " fig = go.Figure()\n", - "\n", - " fig.add_trace(go.Scatterpolar(\n", - " r=radar[i],\n", - " theta=titre,\n", - " fill='toself',\n", - " name='H'\n", - " ))\n", - " fig.add_trace(go.Scatterpolar(\n", - " r=radar2[i],\n", - " theta=titre,\n", - " fill='toself',\n", - " name='Class psy'\n", - " #text = 'r'\n", - " ))\n", - "\n", - " fig.update_layout(\n", - " polar=dict(\n", - " radialaxis=dict(\n", - " visible=True\n", - " #range=[0, 5]\n", - " )),\n", - " showlegend=False\n", - " )\n", - " fig.update_layout(title_text = titleGraph[i])\n", - " fig.update_layout(\n", - " font=dict(\n", - " #family=\"Courier New, monospace\",\n", - " size=18, # Set the font size here\n", - " #color=\"RebeccaPurple\"\n", - " )\n", - ")\n", - " \n", - " \n", - " fig.show()\n", - " fig.write_image(path+\"radar\"+str(i)+\"_fig.png\")\n", - " \n", - "for i in range(len(d)):\n", - " radar_fig(i)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "20ff4dca", - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "86ca3232", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "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.10.12" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/code/binary_bpr/__pycache__/BPR_model.cpython-311.pyc b/code/binary_bpr/__pycache__/BPR_model.cpython-311.pyc deleted file mode 100644 index 9a2b4ea378f1b71240e199d3fe1ebbd5d1f38d62..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10951 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 I#N;vjU*aaS4FCWD diff --git a/code/binary_bpr/__pycache__/utils.cpython-311.pyc b/code/binary_bpr/__pycache__/utils.cpython-311.pyc deleted file mode 100644 index 2919dd4ae8345bb85228e526a57db876545fb10d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8506 zcmc&ZTTC2RmQ~f&@2Y<AXcI8Tv~4<V0t9e~i9L=Xeqb<Uu_q{FC4-u-#%=@MP}LAW zswW-Gqg11gTv%9cugIt)WiwcrS@Dq%K6a#NmC^dMt5p)ElGwGh%16EyE83MdKfC8v z(~oMv!%jxpQrD?_Z=G}QJ-5#D_U~!hhQTEn{v0BzG3?(_r*IM5jUO*S<1xly3_gur z!?h=I&A<@%v1=q_0BB@LfF{NW(9D<sS{O4xD`Np@W2^w}41N{!+kQYyM}mfJ-soY3 z8})ze!O=W1fQ9R3vCX6Tu|MEn0p{05>bQY7+$^jUi<3OT5K~&8eU&HAVILlg8+ik7 ze5Jq;%M@vgL(qs>O1-aO&aX@J0`+NlnQ8&vhQErpw!?Y;d-68iG!<45H}N=I%bPOh z!btg(A@w`}+XVY+9PtyXH5_3=x5k6fY1MQi6ktNEichL|_=o?2%WqMMSw^+6@M1j3 zEvRO|o1ckrswu$5ZqJ5P<K%QS5K|4|NK7>?1g7UhoN8u6+>O9&$ZuB3NMI%eFG9gs zlvQnrWL(2i31(6yfg7h9(A+r7p`{<rUq7AdxDlNRbp+Vhjd^yW<L}t$bv7_F6NrVQ zk&YnKHZjX~1fxu-V<H?0u(!uie?AtT=Gtd(tMnurojG?Q7VTr%z-<<NM-p!C9|0t= z|1@DXD%BwVGIMUNCTs1HtUa=|C(*Ci>C{_^bBft5Ud@^7vgSIa`oI>3TVK<F@Q&iC zOII≠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 diff --git a/code/binary_bpr_ablation/utils.pyc b/code/binary_bpr_ablation/utils.pyc deleted file mode 100644 index b5fd71aed02a36eb6c37bf30c35d0a4632939e22..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5470 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 -- GitLab