Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save khurchla/8b2414b939cf6239ee0ba3b7853b19f3 to your computer and use it in GitHub Desktop.
Save khurchla/8b2414b939cf6239ee0ba3b7853b19f3 to your computer and use it in GitHub Desktop.
demo example of whylogs v1 profile visualizer summary drift report to compare two data profile views
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Compare Wine Quality in a Summary Drift Report"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div></div><iframe srcdoc=\"&lt;!DOCTYPE html&gt;\n",
"&lt;html lang=&quot;en&quot;&gt;\n",
" &lt;head&gt;\n",
" &lt;meta charset=&quot;UTF-8&quot; /&gt;\n",
" &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot; /&gt;\n",
" &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot; /&gt;\n",
" &lt;meta name=&quot;description&quot; content=&quot;&quot; /&gt;\n",
" &lt;meta name=&quot;author&quot; content=&quot;&quot; /&gt;\n",
"\n",
" &lt;title&gt;Profile Visualizer | whylogs&lt;/title&gt;\n",
"\n",
" &lt;link rel=&quot;icon&quot; href=&quot;images/whylabs-favicon.png&quot; type=&quot;image/png&quot; sizes=&quot;16x16&quot; /&gt;\n",
" &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.googleapis.com&quot; /&gt;\n",
" &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.gstatic.com&quot; crossorigin /&gt;\n",
" &lt;link href=&quot;https://fonts.googleapis.com/css2?family=Asap:wght@400;500;600;700&amp;display=swap&quot; rel=&quot;stylesheet&quot; /&gt;\n",
" &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.gstatic.com&quot; /&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css&quot; /&gt;\n",
"\n",
" &lt;script\n",
" src=&quot;https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.7.7/handlebars.min.js&quot;\n",
" integrity=&quot;sha512-RNLkV3d+aLtfcpEyFG8jRbnWHxUqVZozacROI4J2F1sTaDqo1dPQYs01OMi1t1w9Y2FdbSCDSQ2ZVdAC8bzgAg==&quot;\n",
" crossorigin=&quot;anonymous&quot;\n",
" referrerpolicy=&quot;no-referrer&quot;\n",
" &gt;&lt;/script&gt;\n",
"\n",
" &lt;style type=&quot;text/css&quot;&gt;\n",
" :root {\n",
" /* CONSTANTS */\n",
" --SIDE-PANEL-WIDTH: 320px;\n",
" --PROPERTY-PANEL-WIDTH: 420px;\n",
"\n",
" /* COLOR VARIABLES */\n",
" /** Standard colors */\n",
" --red: #d11010;\n",
" --orange: #f07028;\n",
" --yellow: #faaf40;\n",
" --olive: #b5cc18;\n",
" --green: #1dbb42;\n",
" --teal: #00b5ad;\n",
" --blue: #2683c9;\n",
" --violet: #6435c9;\n",
" --purple: #a333c8;\n",
" --pink: #ed45a4;\n",
" --brown: #ac724d;\n",
" --grey: #778183;\n",
" --black: #1b1c1d;\n",
" --white: #ffffff;\n",
"\n",
" /** Branded colors */\n",
" --brandPrimary900: #0e7384;\n",
" --brandPrimary800: #228798;\n",
" --brandPrimary700: #369bac;\n",
" --brandPrimary600: #4aafc0;\n",
" --brandPrimary500: #5ec3d4;\n",
" --brandPrimary400: #72d7e8;\n",
" --brandPrimary300: #86ebfc;\n",
" --brandPrimary200: #a6f2ff;\n",
" --brandPrimary100: #cdf8ff;\n",
" --brandSecondary900: #4f595b;\n",
" --brandSecondary800: #636d6f;\n",
" --brandSecondary700: #778183;\n",
" --brandSecondary600: #8b9597;\n",
" --brandSecondary500: #9fa9ab;\n",
" --brandSecondary400: #b3bdbf;\n",
" --brandSecondary300: #c7d1d3;\n",
" --brandSecondary200: #dbe5e7;\n",
" --brandSecondary100: #ebf2f3;\n",
" --secondaryLight1000: #313b3d;\n",
" --brandRed4: #b30000;\n",
" --brandRed3: #d72424;\n",
" --brandRed2: #eb5656;\n",
" --brandRed1: #ff8282;\n",
" --night1: #021826;\n",
" /** Purpose colors */\n",
" --textColor: #4f595b;\n",
" --linkColor: #369bac;\n",
" --infoColor: #2683c9;\n",
" --warningColor: #faaf40;\n",
" --tealBackground: #eaf2f3;\n",
" --pageBackground: #e5e5e5;\n",
" --contrastTableRow: #fafafa;\n",
" --whiteBackground: #ffffff;\n",
" --primaryBackground: #e5e5e5;\n",
" }\n",
"\n",
" /* RESET STYLE */\n",
" *,\n",
" *::after,\n",
" *::before {\n",
" margin: 0;\n",
" padding: 0;\n",
" box-sizing: border-box;\n",
" font-family: &quot;Asap&quot;, Arial, Helvetica, sans-serif;\n",
" }\n",
"\n",
" /*\n",
" * Main content\n",
" */\n",
" .main {\n",
" position: relative;\n",
" background: #FFFFFF;\n",
" border: 1px solid #DBE5E7;\n",
" box-sizing: border-box;\n",
" border-radius: 4px;\n",
" }\n",
" .main .page-header {\n",
" margin-top: 0;\n",
" }\n",
"\n",
" /* CSS DIV TABLE BASIC STYLE */\n",
"\n",
" .wl-table-row .wl-table-head:first-child {\n",
" min-width: 360px;\n",
" z-index: 2;\n",
" }\n",
"\n",
" .wl-table-wrap {\n",
" position: relative;\n",
" overflow: auto;\n",
" }\n",
"\n",
" .wl-table {\n",
" display: table;\n",
" width: 100%;\n",
" }\n",
"\n",
" .row&gt;* {\n",
" padding-right: 0 !important;\n",
" padding-left: 0 !important;\n",
" }\n",
"\n",
" .wl-table-row {\n",
" display: table-row;\n",
" }\n",
"\n",
" .wl-table-row:hover,\n",
" .wl-table-row:hover .wl-table-cell:first-child {\n",
" background-color: var(--brandSecondary100);\n",
" }\n",
" .wl-table-row--clickable:hover .wl-table-cell__title-button {\n",
" visibility: visible;\n",
" }\n",
"\n",
" .wl-table-heading {\n",
" position: relative;\n",
" z-index: 1;\n",
" display: table-header-group;\n",
" font-weight: 700;\n",
" }\n",
"\n",
" .wl-table-cell,\n",
" .wl-table-head {\n",
" border-bottom: 1px solid var(--brandSecondary200);\n",
" display: table-cell;\n",
" padding: 12px 18px;\n",
" }\n",
"\n",
" .wl-table-cell {\n",
" font-size: 14px;\n",
" }\n",
"\n",
" .wl-table-cell--top-spacing {\n",
" padding-top: 35px; /* cell-top-padding + cell-title-height */\n",
" }\n",
"\n",
" .wl-table-head-wraper {\n",
" background-color: var(--white);\n",
" }\n",
"\n",
" .wl-table-head {\n",
" position: sticky;\n",
" left: 0;\n",
" min-width: 100px;\n",
" border-bottom: 2px solid var(--brandSecondary100);\n",
" font-size: 12px;\n",
" line-height: 1.67;\n",
" white-space: nowrap;\n",
" }\n",
"\n",
" .wl-sub-table-head {\n",
" position: relative;\n",
" }\n",
"\n",
" .wl-table-body {\n",
" display: table-row-group;\n",
" }\n",
"\n",
" .wl-table-row .wl-table-cell:first-child{\n",
" position: sticky;\n",
" left: 0;\n",
" background-color: var(--white);\n",
" border-right-width: 2px;\n",
" }\n",
"\n",
" /* Table custom style */\n",
"\n",
" .wl-table-cell__title-wrap {\n",
" display: flex;\n",
" justify-content: space-between;\n",
" }\n",
"\n",
" .wl-table-cell__title {\n",
" height: 25px;\n",
" margin: 0;\n",
" font-size: 14px;\n",
" font-weight: 700;\n",
" overflow: hidden;\n",
" white-space: nowrap;\n",
" text-overflow: ellipsis;\n",
" }\n",
"\n",
" .wl-table-cell__bedge-wrap {\n",
" padding: 2px 0;\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" font-style: italic;\n",
" text-align: center;\n",
" color: var(--brandSecondary400);\n",
" }\n",
" .wl-table-cell__bedge {\n",
" height: 24px;\n",
" margin: 1px;\n",
" padding: 2px 8px;\n",
" border: 1px solid var(--brandSecondary400);\n",
" font-style: normal;\n",
" color: var(--brandSecondary900);\n",
" border-radius: 20px;\n",
" white-space: nowrap;\n",
" }\n",
"\n",
" /* Property side panel */\n",
"\n",
" .wl-compare-profile {\n",
" position: relative;\n",
" left: 0;\n",
" padding: 18px;\n",
" background: var(--white);;\n",
" border-bottom: 1px solid var(--brandSecondary200);\n",
" }\n",
"\n",
" /* Screen on smaller screens */\n",
" .no-responsive {\n",
" display: none;\n",
" position: fixed;\n",
" top: 0;\n",
" left: 0;\n",
" z-index: 1031;\n",
" width: 100vw;\n",
" height: 100vh;\n",
" background-color: var(--tealBackground);\n",
" display: flex;\n",
" align-items: center;\n",
" justify-content: center;\n",
" }\n",
"\n",
" .no-responsive__content {\n",
" max-width: 600px;\n",
" width: 100%;\n",
" padding: 0 24px;\n",
" }\n",
"\n",
" .no-responsive__title {\n",
" font-size: 96px;\n",
" font-weight: 300;\n",
" color: var(--brandSecondary900);\n",
" line-height: 1.167;\n",
" }\n",
"\n",
" .no-responsive__text {\n",
" margin: 0;\n",
" font-size: 16px;\n",
" font-weight: 400;\n",
" color: var(--brandSecondary900);\n",
" line-height: 1.5;\n",
" }\n",
"\n",
" .space-between {\n",
" display: flex;\n",
" justify-content: space-between;\n",
" }\n",
"\n",
" .align-items {\n",
" display: flex;\n",
" align-items: center;\n",
" }\n",
"\n",
" .display-flex{\n",
" display: flex;\n",
" }\n",
"\n",
" .table-border-none {\n",
" padding: 0;\n",
" border: none;\n",
" }\n",
"\n",
" .flex-direction-colum {\n",
" display: flex;\n",
" flex-direction: column;\n",
" }\n",
"\n",
" .align-items {\n",
" align-items: center;\n",
" }\n",
"\n",
" .search-input{\n",
" padding-top: 0 !important;\n",
" padding-bottom: 0 !important;\n",
" }\n",
"\n",
" .search-input input{\n",
" border: none;\n",
" background: none;\n",
" outline: none;\n",
" height: 40px;\n",
" width: 100%;\n",
" font-size: 14px;\n",
" }\n",
"\n",
" .search-input img{\n",
" height: 19px;\n",
" pointer-events: none;\n",
" }\n",
"\n",
" input::placeholder {\n",
" color: var(--secondaryLight1000);\n",
" }\n",
"\n",
" .text-align-center {\n",
" text-align: center;\n",
" }\n",
"\n",
" .text-align-end {\n",
" text-align: end;\n",
" }\n",
"\n",
" .drift-detection {\n",
" justify-content: space-between;\n",
" align-items: center;\n",
" }\n",
"\n",
" .drift-detection-info-circle {\n",
" width: 15px;\n",
" height: 15px;\n",
" border-radius: 50px;\n",
" display: inline-block;\n",
" margin-right: 8px;\n",
" }\n",
"\n",
" .severe-drift-circle-color {\n",
" background: #D40D00;\n",
" }\n",
"\n",
" .moderate-drift-circle-color {\n",
" background: #F5843C;\n",
" }\n",
"\n",
" .mild-drift-circle-color {\n",
" background: #F2C142;\n",
" }\n",
"\n",
" .minimal-drift-circle-color {\n",
" background: #ABCA52;\n",
" }\n",
"\n",
" .drift-detection-info-drifts-item {\n",
" padding-right: 20px;\n",
" }\n",
"\n",
" .drift-detection-info-title {\n",
" font-family: Arial;\n",
" font-weight: bold;\n",
" font-size: 16px;\n",
" line-height: 130%;\n",
" color: #313B3D;\n",
" }\n",
"\n",
" .drift-detection-info-drifts-item-count {\n",
" font-family: Arial;\n",
" font-weight: bold;\n",
" font-size: 14px;\n",
" line-height: 16px;\n",
" color: #000000;\n",
" padding-right: 8px;\n",
" }\n",
"\n",
" .drift-detection-info-drifts-item-name {\n",
" font-family: Arial;\n",
" font-style: normal;\n",
" font-weight: normal;\n",
" font-size: 12px;\n",
" line-height: 14px;\n",
" color: #000000;\n",
" }\n",
"\n",
" .drift-detection-info-drifts-item-range {\n",
" font-family: Arial;\n",
" font-style: normal;\n",
" font-weight: normal;\n",
" font-size: 11px;\n",
" line-height: 13px;\n",
" color: #6C757D;\n",
" }\n",
"\n",
" .drift-detection-search-input {\n",
" display: flex;\n",
" align-items: center;\n",
" background: rgba(255, 255, 255, 0.7);\n",
" border: 1px solid #DBE5E7;\n",
" box-sizing: border-box;\n",
" border-radius: 4px;\n",
" width: 170px;\n",
" padding-left: 10px;\n",
" }\n",
"\n",
" .drift-detection-search-input img{\n",
" margin-right: 5px;\n",
" }\n",
"\n",
" .drift-detection-search-input input::placeholder {\n",
" font-family: Arial;\n",
" font-weight: normal;\n",
" font-size: 13px;\n",
" line-height: 16px;\n",
" color: #313B3D;\n",
" }\n",
"\n",
" .close-filter-button {\n",
" display: flex;\n",
" justify-content: center;\n",
" align-items: center;\n",
" background: rgba(255, 255, 255, 0.7);\n",
" border: 1px solid #369BAC;\n",
" box-sizing: border-box;\n",
" border-radius: 4px;\n",
" width: 40px;\n",
" height: 40px;\n",
" cursor: pointer;\n",
" margin-left: 10px;\n",
" }\n",
"\n",
" .filter-options-title {\n",
" width: 240px;\n",
" }\n",
"\n",
" .filter-options-title p {\n",
" margin: 0;\n",
" }\n",
"\n",
" .dropdown-container {\n",
" position: absolute;\n",
" right: 18px;\n",
" z-index: 999;\n",
" background: #FFFFFF;\n",
" border: 1px solid #DBE5E7;\n",
" box-sizing: border-box;\n",
" box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);\n",
" border-radius: 4px;\n",
" padding: 10px !important;\n",
" border: none !important;\n",
" }\n",
"\n",
" .form-check-input:checked {\n",
" background-color: #0E7384;\n",
" border-color: #0E7384;\n",
" }\n",
"\n",
" .form-check-input[type=checkbox] {\n",
" border-radius: 2px;\n",
" }\n",
"\n",
" .justify-content-center {\n",
" justify-content: center;\n",
" }\n",
"\n",
" .wl-table-cell__graph-wrap {\n",
" width: 0;\n",
" }\n",
"\n",
" .svg-container {\n",
" display: inline-block;\n",
" position: relative;\n",
" width: 85%;\n",
" padding-bottom: 17%;\n",
" vertical-align: top;\n",
" overflow: hidden;\n",
" }\n",
"\n",
" .svg-content-responsive {\n",
" display: inline-block;\n",
" position: absolute;\n",
" left: 0;\n",
" }\n",
"\n",
" .reference-table-head {\n",
" min-width: 250px;\n",
" }\n",
"\n",
" .wl__dropdown_arrow-icon {\n",
" position: relative;\n",
" }\n",
"\n",
" .notif-circle-container{\n",
" position: absolute;\n",
" top: -4px;\n",
" right: -4px;\n",
" padding: 5.3px;\n",
" border-radius: 50%;\n",
" background-color: white;\n",
" cursor: pointer;\n",
" }\n",
"\n",
" .notif-circle {\n",
" position: absolute;\n",
" top: 2px;\n",
" right: 2px;\n",
" padding: 3.3px;\n",
" border-radius: 50%;\n",
" background-color: #F2994A;\n",
" }\n",
"\n",
"\n",
" .header-title {\n",
" font-size: 26px;\n",
" font-weight: 700;\n",
" color: #444444;\n",
" }\n",
"\n",
" .statistic-number-title {\n",
" font-family: Arial;\n",
" font-weight: normal;\n",
" font-size: 14px;\n",
" line-height: 20px;\n",
" color: #6C757D;\n",
" }\n",
"\n",
" .statistic-number {\n",
" font-family: Arial;\n",
" font-weight: bold;\n",
" font-size: 20px;\n",
" line-height: 140%;\n",
" display: flex;\n",
" align-items: center;\n",
" color: #0E7384;\n",
" }\n",
"\n",
" .statistic-measurement {\n",
" font-size: 15px !important;\n",
" margin-left: 3px;\n",
" }\n",
"\n",
" .statistic-measurement-percent {\n",
" font-size: 15px !important;\n",
" }\n",
"\n",
" .question-mark {\n",
" font-size: 10px;\n",
" font-weight: 900;\n",
" color: #0E7384;\n",
" border-radius: 50px;\n",
" border: 2px solid #0E7384;\n",
" padding: 0px 4px;\n",
" transition: 0.5s;\n",
" cursor: pointer;\n",
" }\n",
"\n",
" .question-mark:hover {\n",
" color: white;\n",
" background: #0E7384;\n",
" border: 2px solid none;\n",
" transition: 0.5s;\n",
" }\n",
"\n",
" .tooltip-full-number {\n",
" position: relative;\n",
" display: inline-block;\n",
" }\n",
"\n",
" .tooltip-full-number .tooltiptext {\n",
" visibility: hidden;\n",
" background: black;\n",
" color: white;\n",
" border: 1px solid black;\n",
" text-align: start;\n",
" padding: 3px;\n",
" position: absolute;\n",
" z-index: 1;\n",
" top: 0;\n",
" left: 100%;\n",
" margin-left: 5px;\n",
" opacity: 0;\n",
" transition: opacity 0.5s;\n",
" font-size: 13px;\n",
" font-weight: normal;\n",
" line-height: 100%;\n",
" }\n",
"\n",
" .tooltip-full-number:hover .tooltiptext {\n",
" visibility: visible;\n",
" opacity: 1;\n",
" }\n",
"\n",
" .display-flex {\n",
" display: flex;\n",
" }\n",
"\n",
" .flex-direction-column {\n",
" flex-direction: column;\n",
" }\n",
"\n",
" .justify-content-space-between {\n",
" justify-content: space-between;\n",
" }\n",
"\n",
" .justify-content-center {\n",
" justify-content: center;\n",
" }\n",
"\n",
" .align-items-center {\n",
" align-items: center;\n",
" }\n",
"\n",
" .padding-right-30 {\n",
" padding-right: 30px;\n",
" }\n",
"\n",
" .padding-5 {\n",
" padding: 5px;\n",
" }\n",
"\n",
" .text-color {\n",
" color: var(--secondaryLight1000);\n",
" }\n",
"\n",
" .error-message {\n",
" display: flex;\n",
" justify-content: center;\n",
" align-items: center;\n",
" color: rgb(255, 114, 71);\n",
" font-size: 30px;\n",
" font-weight: 900;\n",
" }\n",
"\n",
" @media screen and (min-width: 500px) {\n",
" .desktop-content {\n",
" display: block;\n",
" }\n",
" .no-responsive {\n",
" display: none;\n",
" }\n",
" }\n",
" &lt;/style&gt;\n",
" &lt;/head&gt;\n",
"\n",
" &lt;body id=&quot;generated-html&quot;&gt;&lt;/body&gt;\n",
"\n",
" &lt;script id=&quot;entry-template&quot; type=&quot;text/x-handlebars-template&quot;&gt;\n",
" \n",
" &lt;div class=&quot;desktop-content&quot;&gt;\n",
" &lt;div class=&quot;container-fluid&quot;&gt;\n",
" &lt;div class=&quot;feature-summary-statistics-wrap&quot;&gt;\n",
" &lt;div class=&quot;feature-summary-statistics&quot;&gt;\n",
" &lt;div class=&quot;mb-4&quot;&gt;\n",
" &lt;strong class=&quot;header-title&quot;&gt;Profile Summary&lt;/strong&gt;\n",
" &lt;/div&gt;\n",
" &lt;div class=&quot;display-flex statistics&quot;&gt;\n",
" &lt;div class=&quot;padding-right-30&quot;&gt;\n",
" &lt;div class=&quot;statistic-number-title&quot;&gt;Observations&lt;/div&gt;\n",
" &lt;div class=&quot;statistic-number&quot;&gt;{{{observations this}}}&lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;div class=&quot;padding-right-30&quot;&gt;\n",
" &lt;div class=&quot;statistic-number-title&quot;&gt;Missing Cells&lt;/div&gt;\n",
" &lt;div class=&quot;statistic-number&quot;&gt;\n",
" {{{missingCells this}}}\n",
" &lt;div&gt;{{{missingCellsPercentage this}}}&lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;div class=&quot;row&quot;&gt;\n",
" &lt;div class=&quot;main&quot;&gt;\n",
" &lt;div class=&quot;wl-compare-profile&quot; id=&quot;compare-profile&quot;&gt;\n",
" &lt;div class=&quot;drift-detection-wrap&quot;&gt;\n",
" &lt;div class=&quot;drift-detection display-flex&quot;&gt;\n",
" &lt;div class=&quot;drift-detection-info flex-direction-colum&quot;&gt;\n",
" &lt;div class=&quot;drift-detection-info-title-wrap display-flex&quot;&gt;\n",
" &lt;p class=&quot;drift-detection-info-title&quot;&gt;\n",
" Drift detected in\n",
" &lt;span class=&quot;drift-count&quot;&gt;&lt;/span&gt;\n",
" of\n",
" &lt;span class=&quot;all-features&quot;&gt;&lt;/span&gt;\n",
" features\n",
" &lt;/p&gt;\n",
" &lt;/div&gt;\n",
" &lt;div class=&quot;drift-detection-info-drifts display-flex&quot; id=&quot;drift-detection-info-drifts&quot;&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;div class=&quot;drift-detection-search-input-wrap display-flex&quot;&gt;\n",
" &lt;div class=&quot;drift-detection-search-input search-input&quot;&gt;\n",
" &lt;input type=&quot;text&quot; id=&quot;wl__feature-search&quot; placeholder=&quot;Quick search...&quot;/&gt;\n",
" &lt;img src=&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAGdSURBVHgBpZK7TkJBEIZnZoVocdTYyQNALxpNKPQBMEaNJsbCRMKhl8ISWwt6AaksCF5iTHgAGhJD4AHkAaAzGiwUsjvOQnO4SYh/cXbPzO43OxcEj9Zy92EiFSXNIfvPyE1kKFfdoxJMENpP6DrvLC0vJoEwCgwto7DWcxoIIHBYbA3NmKwnDltjAeuZhyul1DaTTlfPB6Nt5Z53DOgky4P875+nlctY2+unjZviLklkJhi5bPUa3y/7qJuQUM7PinMy7CdQc1Gh16vnBxPzrMROmlKQEgKNASAHLQCmSIGpS75O+O5pdQAgVXaIqTkNwDDXHmcnW3VmHZoGMLoTsOt88+NrAMCIZdu+iLTyTwKRa1Md6YKfOgXbzO7K8sWku5u5RxcRV5EpPezrzcHGbXEXWaUkgkweZ/UC9YrK3zqggFw5FBZfm8EUavHj7AjAKpIvBDrGn+pNnlcyhYgqbcC41idr1gvB4SdZkDbzQa21gwv0Vj07aPTtL07XdDOyDXohCDNoHIRmAVRie20f+RKybRDQDvxHkXy/7b/DrayncLbMwQAAAABJRU5ErkJggg==&quot;/&gt;\n",
" &lt;/div&gt;\n",
" &lt;div class=&quot;wl__dropdown_arrow-icon&quot;&gt;\n",
" &lt;div onclick=&quot;openFilter()&quot; class=&quot;close-filter-button&quot;&gt;\n",
" &lt;div class=&quot;display-flex close-filter-icon d-none&quot;&gt;\n",
" &lt;img src=&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADFSURBVHgBfY+xDcIwEEXvnLQBZQkYAEhDwwKpEEK0CCZgAEjJCEmgjYSAygxAHTZgFRSOsyUjY5mcZFnn/+78PwBXf3+MoKWUPuYjVBPFnTwpr9t/oNJfcTfXsAhRAlDqDhhQIPYgpAqNMDqcUqSAYZT1epr9gAHt6uXshvYme4DYHQJNDKh0dD0m5WXB10Y3Fqjtuh7fROn3oREDWxfeMLyRsMnc0OgDzdduaA0Pi3Plgr7Q2kaAePeBqh6rueSNBVt6fgCwBV1JLF3rlAAAAABJRU5ErkJggg==&quot;/&gt;\n",
" &lt;/div&gt;\n",
" &lt;div class=&quot;display-flex filter-icon&quot;&gt;\n",
" &lt;img src=&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAPCAYAAADtc08vAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACSSURBVHgBrZLBCYAwDEWTUjw7igcdwI1cxkNXUJzBEVzFAbSVKoKmaVrEB6GHJv/w+AACtRk7P9IONv1QOYUl96k0zv61m2tjARoLtSDI3EFsgIJ4uoXrMLazO72CRG2mzg/8BSdVlEjhpGZJjAWdAZJECpWalEhJSs1pHuUlMad5FFai1Lwg4Ckx1TxKIPFL8w55mEWd8VjPGAAAAABJRU5ErkJggg==&quot;/&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;span class=&quot;notif-circle-container&quot;&gt;\n",
" &lt;span class=&quot;notif-circle&quot;&gt;&lt;/span&gt;\n",
" &lt;/span&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;div class=&quot;dropdown-container flex-direction-colum mb-2 d-none&quot; id=&quot;dropdown-container&quot;&gt;\n",
" &lt;div class=&quot;filter-options&quot;&gt;\n",
" &lt;div class=&quot;filter-options-title space-between dropdown&quot;&gt;\n",
" &lt;p&gt;Filter by type&lt;/p&gt;\n",
" &lt;/div&gt;\n",
" &lt;div class=&quot;form-check mb-1 mt-2&quot;&gt;\n",
" &lt;input\n",
" class=&quot;form-check-input wl__feature-filter-input&quot;\n",
" type=&quot;checkbox&quot;\n",
" name=&quot;checkbox&quot;\n",
" value=&quot;Discrete&quot;\n",
" id=&quot;inferredDiscrete&quot;\n",
" onclick=&quot;changeDiscreteValue()&quot;\n",
" checked\n",
" /&gt;\n",
" &lt;label class=&quot;form-check-label&quot; for=&quot;inferredDiscrete&quot;&gt;\n",
" Inferred discrete (&lt;span class=&quot;wl__feature-count--discrete&quot;&gt;{{getDiscreteTypeCount}}&lt;/span&gt;)\n",
" &lt;/label&gt;\n",
" &lt;/div&gt;\n",
" &lt;div class=&quot;form-check mb-1&quot;&gt;\n",
" &lt;input\n",
" class=&quot;form-check-input wl__feature-filter-input&quot;\n",
" type=&quot;checkbox&quot;\n",
" name=&quot;checkbox&quot;\n",
" value=&quot;Non-discrete&quot;\n",
" id=&quot;inferredNonDiscrete&quot;\n",
" onclick=&quot;changeNonDiscreteValue()&quot;\n",
" checked\n",
" /&gt;\n",
" &lt;label class=&quot;form-check-label&quot; for=&quot;inferredNonDiscrete&quot;&gt;\n",
" Inferred non-discrete (&lt;span\n",
" class=&quot;wl__feature-count--non-discrete&quot;\n",
" &gt;{{getNonDiscreteTypeCount}}&lt;/span&gt;)\n",
" &lt;/label&gt;\n",
" &lt;/div&gt;\n",
" &lt;div class=&quot;form-check mb-1&quot;&gt;\n",
" &lt;input\n",
" class=&quot;form-check-input wl__feature-filter-input&quot;\n",
" type=&quot;checkbox&quot;\n",
" name=&quot;checkbox&quot;\n",
" value=&quot;Unknown&quot;\n",
" id=&quot;inferredUnknown&quot;\n",
" onclick=&quot;changeUnknwonValue()&quot;\n",
" checked\n",
" /&gt;\n",
" &lt;label class=&quot;form-check-label&quot; for=&quot;inferredUnknown&quot;&gt;\n",
" Unknown (&lt;span class=&quot;wl__feature-count--unknown&quot;&gt;{{getUnknownTypeCount}}&lt;/span&gt;)\n",
" &lt;/label&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;div class=&quot;wl-table-wrap&quot; id=&quot;table-content&quot;&gt;\n",
" &lt;div class=&quot;wl-table&quot;&gt;\n",
" &lt;div class=&quot;wl-table-heading&quot;&gt;\n",
" &lt;div class=&quot;wl-table-row wl-table-row--bottom-shadow&quot;&gt;\n",
" &lt;div class=&quot;wl-table-head wl-table-head-wraper&quot;&gt;\n",
" &lt;div class=&quot;wl-table-head table-border-none graph-table-head&quot;&gt;Target&lt;/div&gt;\n",
" &lt;div class=&quot;wl-table-head table-border-none reference-table-head&quot;&gt;Reference&lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;div class=&quot;wl-table-head wl-sub-table-head text-align-center&quot; id=&quot;diff-from-ref&quot;&gt;\n",
" p-value\n",
" &lt;div class=&quot;tooltip-full-number&quot;&gt;\n",
" &lt;span class=&quot;question-mark&quot;&gt;?&lt;/span&gt;\n",
" &lt;span class=&quot;tooltiptext&quot;&gt;\n",
" &lt;div class=&quot;mb-1&quot;&gt;p-values are calculated with K-S test for numerical features and Chi-squared for categorical features.&lt;/div&gt;\n",
" &lt;/span&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;div class=&quot;wl-table-head wl-sub-table-head text-align-center&quot;&gt;Total count&lt;/div&gt;\n",
" &lt;div class=&quot;wl-table-head wl-sub-table-head text-align-center&quot;&gt;Mean&lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;ul class=&quot;wl-table-body wl__table-body&quot; id=&quot;table-body&quot;&gt;\n",
"{{#each this.columns}} &lt;li\n",
" {{#if this.numberSummary}} class=&quot;wl-table-row wl-table-row--clickable&quot; {{else}} class=&quot;wl-table-row&quot; {{/if}}\n",
" data-feature-name={{@key}}\n",
" data-inferred-type={{inferredType this}}\n",
" data-scroll-to-feature-name={{@key}}\n",
" &gt;\n",
" &lt;div class=&quot;wl-table-cell wl-table-cell__graph-wrap&quot;&gt;\n",
" &lt;div class=&quot;wl-table-cell__title-wrap&quot;&gt;\n",
" &lt;h4 class=&quot;wl-table-cell__title&quot;&gt;{{@key}}&lt;/h4&gt;\n",
" &lt;div&gt;&lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;div class=&quot;display-flex&quot;&gt;\n",
" {{{getGraphHtml this}}}\n",
" {{{getReferenceGraphHtml this}}}\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;div\n",
" class=&quot;diff-from-ref-table-cell wl-table-cell wl-table-cell--top-spacing align-middle&quot;\n",
" style=&quot;max-width: 270px; padding-right: 18px&quot;\n",
" &gt;&lt;div class=&quot;wl-table-cell__bedge-wrap text-align-end&quot;&gt;\n",
" {{{getDiffFromRef this}}}\n",
" &lt;/div&gt;&lt;/div&gt;&lt;div\n",
" class=&quot;wl-table-cell wl-table-cell--top-spacing align-middle&quot;\n",
" &gt;&lt;div class=&quot;text-align-end&quot;&gt;{{totalCount this}}&lt;/div&gt;&lt;/div&gt;&lt;div\n",
" class=&quot;wl-table-cell wl-table-cell--top-spacing align-middle&quot;\n",
" &gt;&lt;div class=&quot;text-align-end&quot;&gt;{{mean this}}&lt;/div&gt;&lt;/div&gt;\n",
" &lt;/li&gt;\n",
"{{/each}} &lt;/ul&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;div class=&quot;no-responsive&quot;&gt;\n",
" &lt;div class=&quot;no-responsive__content&quot;&gt;\n",
" &lt;h1 class=&quot;no-responsive__title&quot;&gt;Hold on! :)&lt;/h1&gt;\n",
" &lt;p class=&quot;no-responsive__text&quot;&gt;\n",
" It looks like your current screen size or device is not yet supported by the WhyLabs Sandbox. The Sandbox is\n",
" best experienced on a desktop computer. Please try maximizing this window or switching to another device. We\n",
" are working on adding support for a larger variety of devices.\n",
" &lt;/p&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" \n",
" &lt;/script&gt;\n",
"\n",
" &lt;script src=&quot;https://code.jquery.com/jquery-3.6.0.min.js&quot; integrity=&quot;sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=&quot; crossorigin=&quot;anonymous&quot;&gt;&lt;/script&gt;\n",
"\n",
" &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/6.7.0/d3.min.js&quot; integrity=&quot;sha512-cd6CHE+XWDQ33ElJqsi0MdNte3S+bQY819f7p3NUHgwQQLXSKjE4cPZTeGNI+vaxZynk1wVU3hoHmow3m089wA==&quot; crossorigin=&quot;anonymous&quot; referrerpolicy=&quot;no-referrer&quot;&gt;&lt;/script&gt;\n",
"\n",
" &lt;script&gt;\n",
" const getReferenceProfile = () =&gt; { return {&quot;columns&quot;: {&quot;alcohol&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 8.4, &quot;end&quot;: 11.0000011, &quot;width&quot;: 0, &quot;counts&quot;: [2, 2, 0, 4, 2, 0, 28, 2, 20, 76, 58, 102, 138, 62, 58, 0, 77, 50, 68, 47, 50, 30, 0, 40, 69, 30, 28, 42, 49, 57], &quot;max&quot;: 11.0, &quot;min&quot;: 8.4, &quot;bins&quot;: [8.4, 8.486666703333334, 8.573333406666666, 8.66000011, 8.746666813333334, 8.833333516666666, 8.92000022, 9.006666923333334, 9.093333626666666, 9.18000033, 9.266667033333334, 9.353333736666666, 9.44000044, 9.526667143333334, 9.613333846666666, 9.70000055, 9.786667253333334, 9.873333956666666, 9.96000066, 10.046667363333334, 10.133334066666666, 10.22000077, 10.306667473333334, 10.393334176666666, 10.48000088, 10.566667583333334, 10.653334286666666, 10.74000099, 10.826667693333334, 10.913334396666666, 11.0000011], &quot;n&quot;: 1191}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: 0.0, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: null}, &quot;pH&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 2.74, &quot;end&quot;: 3.750000375, &quot;width&quot;: 0, &quot;counts&quot;: [0, 0, 0, 2, 6, 10, 0, 10, 24, 22, 47, 40, 78, 99, 69, 83, 149, 93, 106, 123, 59, 64, 26, 33, 20, 12, 6, 4, 6, 0], &quot;max&quot;: 3.75, &quot;min&quot;: 2.74, &quot;bins&quot;: [2.74, 2.773666679166667, 2.8073333583333335, 2.8410000375, 2.874666716666667, 2.9083333958333335, 2.942000075, 2.975666754166667, 3.0093334333333335, 3.0430001125, 3.076666791666667, 3.1103334708333334, 3.14400015, 3.1776668291666668, 3.2113335083333334, 3.2450001875, 3.2786668666666667, 3.3123335458333334, 3.346000225, 3.3796669041666667, 3.4133335833333334, 3.4470002625, 3.4806669416666667, 3.5143336208333333, 3.5480003, 3.5816669791666667, 3.6153336583333333, 3.6490003375, 3.6826670166666666, 3.7163336958333333, 3.750000375], &quot;n&quot;: 1191}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: 0.0018798899769251003, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: null}, &quot;fixed acidity&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 5.0, &quot;end&quot;: 15.0000015, &quot;width&quot;: 0, &quot;counts&quot;: [4, 7, 13, 26, 51, 123, 142, 121, 154, 90, 54, 86, 50, 38, 52, 26, 26, 24, 18, 22, 22, 12, 12, 10, 4, 0, 4, 0, 0, 0], &quot;max&quot;: 15.0, &quot;min&quot;: 5.0, &quot;bins&quot;: [5.0, 5.333333383333334, 5.666666766666666, 6.00000015, 6.333333533333334, 6.666666916666667, 7.0000003, 7.333333683333334, 7.666667066666667, 8.00000045, 8.333333833333334, 8.666667216666667, 9.0000006, 9.333333983333333, 9.666667366666667, 10.00000075, 10.333334133333334, 10.666667516666667, 11.0000009, 11.333334283333333, 11.666667666666667, 12.00000105, 12.333334433333334, 12.666667816666667, 13.0000012, 13.333334583333334, 13.666667966666667, 14.00000135, 14.333334733333334, 14.666668116666667, 15.0000015], &quot;n&quot;: 1191}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: 1.6719160675836287e-07, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: null}, &quot;volatile acidity&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 0.18, &quot;end&quot;: 1.580000158, &quot;width&quot;: 0, &quot;counts&quot;: [14, 39, 59, 70, 113, 116, 90, 112, 159, 123, 100, 60, 46, 22, 20, 18, 8, 12, 2, 0, 0, 2, 2, 0, 4, 0, 0, 0, 0, 0], &quot;max&quot;: 1.58, &quot;min&quot;: 0.18, &quot;bins&quot;: [0.18, 0.22666667193333334, 0.27333334386666663, 0.3200000158, 0.36666668773333333, 0.4133333596666667, 0.46000003159999997, 0.5066667035333333, 0.5533333754666667, 0.6000000474, 0.6466667193333333, 0.6933333912666666, 0.7400000631999999, 0.7866667351333334, 0.8333334070666667, 0.880000079, 0.9266667509333333, 0.9733334228666666, 1.0200000948, 1.0666667667333334, 1.1133334386666667, 1.1600001106, 1.2066667825333333, 1.2533334544666666, 1.3000001263999998, 1.3466667983333334, 1.3933334702666667, 1.4400001422, 1.4866668141333332, 1.5333334860666665, 1.580000158], &quot;n&quot;: 1191}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: 1.2580272113287693e-11, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: null}, &quot;quality&quot;: {&quot;histogram&quot;: null, &quot;frequentItems&quot;: [{&quot;value&quot;: &quot;bad&quot;, &quot;estimate&quot;: 1115}, {&quot;value&quot;: &quot;good&quot;, &quot;estimate&quot;: 76}], &quot;drift_from_ref&quot;: 4.72188097163335e-120, &quot;isDiscrete&quot;: true, &quot;featureStats&quot;: null}, &quot;citric acid&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 0.0, &quot;end&quot;: 1.0000001, &quot;width&quot;: 0, &quot;counts&quot;: [180, 67, 88, 47, 42, 74, 76, 105, 68, 63, 40, 50, 35, 38, 94, 30, 24, 26, 11, 14, 10, 0, 8, 1, 0, 0, 0, 0, 0, 0], &quot;max&quot;: 1.0, &quot;min&quot;: 0.0, &quot;bins&quot;: [0.0, 0.03333333666666667, 0.06666667333333334, 0.10000001000000001, 0.13333334666666669, 0.16666668333333334, 0.20000002000000003, 0.2333333566666667, 0.26666669333333337, 0.30000003000000003, 0.3333333666666667, 0.3666667033333334, 0.40000004000000006, 0.4333333766666667, 0.4666667133333334, 0.50000005, 0.5333333866666667, 0.5666667233333335, 0.6000000600000001, 0.6333333966666668, 0.6666667333333334, 0.7000000700000001, 0.7333334066666668, 0.7666667433333334, 0.8000000800000001, 0.8333334166666668, 0.8666667533333334, 0.9000000900000001, 0.9333334266666669, 0.9666667633333335, 1.0000001], &quot;n&quot;: 1191}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: 7.957790879053686e-10, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: null}, &quot;chlorides&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 0.038, &quot;end&quot;: 0.6110000610999999, &quot;width&quot;: 0, &quot;counts&quot;: [35, 381, 545, 131, 32, 10, 14, 6, 2, 6, 3, 6, 0, 0, 0, 4, 4, 2, 0, 6, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], &quot;max&quot;: 0.611, &quot;min&quot;: 0.038, &quot;bins&quot;: [0.038, 0.05710000203666667, 0.07620000407333333, 0.09530000611, 0.11440000814666665, 0.13350001018333332, 0.15260001222, 0.17170001425666664, 0.19080001629333332, 0.20990001833, 0.22900002036666664, 0.24810002240333331, 0.26720002443999996, 0.28630002647666664, 0.30540002851333325, 0.32450003054999993, 0.3436000325866666, 0.3627000346233333, 0.38180003665999995, 0.40090003869666657, 0.42000004073333325, 0.4391000427699999, 0.4582000448066666, 0.47730004684333327, 0.49640004887999994, 0.5155000509166666, 0.5346000529533332, 0.55370005499, 0.5728000570266666, 0.5919000590633333, 0.6110000610999999], &quot;n&quot;: 1191}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: 1.6569428823583533e-26, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: null}, &quot;sulphates&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 0.33, &quot;end&quot;: 2.0000002, &quot;width&quot;: 0, &quot;counts&quot;: [2, 32, 101, 217, 232, 215, 110, 85, 73, 28, 34, 10, 10, 10, 6, 12, 0, 4, 2, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4], &quot;max&quot;: 2.0, &quot;min&quot;: 0.33, &quot;bins&quot;: [0.33, 0.3856666733333334, 0.4413333466666667, 0.49700002, 0.5526666933333333, 0.6083333666666666, 0.66400004, 0.7196667133333334, 0.7753333866666667, 0.83100006, 0.8866667333333333, 0.9423334066666667, 0.99800008, 1.0536667533333333, 1.1093334266666668, 1.1650001, 1.2206667733333334, 1.2763334466666667, 1.33200012, 1.3876667933333333, 1.4433334666666666, 1.4990001400000001, 1.5546668133333335, 1.6103334866666668, 1.66600016, 1.7216668333333334, 1.7773335066666667, 1.83300018, 1.8886668533333335, 1.9443335266666668, 2.0000002], &quot;n&quot;: 1191}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: 1.3923726824145813e-09, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: null}, &quot;residual sugar&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 1.2, &quot;end&quot;: 15.50000155, &quot;width&quot;: 0, &quot;counts&quot;: [110, 476, 357, 110, 36, 25, 14, 0, 10, 16, 10, 7, 0, 1, 6, 2, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2], &quot;max&quot;: 15.5, &quot;min&quot;: 1.2, &quot;bins&quot;: [1.2, 1.6766667183333333, 2.1533334366666668, 2.6300001550000003, 3.1066668733333334, 3.5833335916666664, 4.06000031, 4.5366670283333335, 5.0133337466666665, 5.4900004650000005, 5.966667183333334, 6.443333901666667, 6.920000620000001, 7.396667338333334, 7.873334056666667, 8.350000775, 8.826667493333334, 9.303334211666666, 9.78000093, 10.256667648333332, 10.733334366666666, 11.210001085, 11.686667803333332, 12.163334521666666, 12.64000124, 13.116667958333332, 13.593334676666666, 14.070001395, 14.546668113333332, 15.023334831666666, 15.50000155], &quot;n&quot;: 1191}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: 0.015982727884831006, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: null}, &quot;free sulfur dioxide&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 1.0, &quot;end&quot;: 72.0000072, &quot;width&quot;: 0, &quot;counts&quot;: [32, 106, 188, 108, 101, 132, 92, 66, 76, 47, 72, 35, 31, 39, 19, 6, 16, 2, 2, 8, 0, 4, 6, 0, 0, 0, 0, 1, 0, 2], &quot;max&quot;: 72.0, &quot;min&quot;: 1.0, &quot;bins&quot;: [1.0, 3.3666669066666666, 5.733333813333333, 8.10000072, 10.466667626666666, 12.833334533333332, 15.20000144, 17.566668346666667, 19.933335253333333, 22.30000216, 24.666669066666664, 27.033335973333333, 29.40000288, 31.766669786666665, 34.133336693333334, 36.5000036, 38.866670506666665, 41.23333741333333, 43.60000432, 45.96667122666666, 48.33333813333333, 50.70000504, 53.066671946666666, 55.43333885333333, 57.80000576, 60.16667266666666, 62.53333957333333, 64.90000648, 67.26667338666667, 69.63334029333333, 72.0000072], &quot;n&quot;: 1191}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: 0.020999157107383475, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: null}, &quot;density&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 0.99236, &quot;end&quot;: 1.003690100369, &quot;width&quot;: 0, &quot;counts&quot;: [2, 0, 4, 0, 6, 8, 34, 46, 73, 94, 131, 136, 128, 127, 100, 86, 42, 44, 34, 32, 26, 18, 4, 4, 4, 0, 2, 4, 0, 2], &quot;max&quot;: 1.00369, &quot;min&quot;: 0.99236, &quot;bins&quot;: [0.99236, 0.9927376700123001, 0.9931153400246, 0.9934930100369, 0.9938706800492, 0.9942483500615, 0.9946260200738, 0.9950036900861, 0.9953813600984001, 0.9957590301107, 0.996136700123, 0.9965143701353, 0.9968920401476, 0.9972697101599, 0.9976473801722, 0.9980250501845, 0.9984027201968, 0.9987803902091, 0.9991580602214, 0.9995357302337, 0.999913400246, 1.0002910702582999, 1.0006687402706, 1.0010464102829, 1.0014240802952, 1.0018017503075, 1.0021794203198, 1.0025570903321, 1.0029347603443999, 1.0033124303567, 1.003690100369], &quot;n&quot;: 1191}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: 4.08790353520196e-71, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: null}, &quot;total sulfur dioxide&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 6.0, &quot;end&quot;: 160.000016, &quot;width&quot;: 0, &quot;counts&quot;: [46, 96, 96, 103, 103, 68, 76, 99, 64, 50, 50, 54, 38, 24, 23, 36, 27, 21, 12, 21, 12, 7, 18, 10, 9, 6, 8, 10, 2, 2], &quot;max&quot;: 160.0, &quot;min&quot;: 6.0, &quot;bins&quot;: [6.0, 11.133333866666666, 16.266667733333332, 21.400001599999996, 26.533335466666664, 31.66666933333333, 36.80000319999999, 41.93333706666666, 47.06667093333333, 52.200004799999995, 57.33333866666666, 62.46667253333332, 67.60000639999998, 72.73334026666666, 77.86667413333332, 83.000008, 88.13334186666665, 93.26667573333332, 98.40000959999999, 103.53334346666665, 108.66667733333333, 113.80001119999999, 118.93334506666665, 124.06667893333332, 129.20001279999997, 134.33334666666664, 139.46668053333332, 144.6000144, 149.73334826666664, 154.8666821333333, 160.000016], &quot;n&quot;: 1191}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: 1.6107148931579483e-11, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: null}}, &quot;properties&quot;: {&quot;observations&quot;: 4896, &quot;missing_cells&quot;: 0, &quot;missing_percentage&quot;: 0.0}} }\n",
" const referenceProfile = getReferenceProfile()\n",
"\n",
" function fixNumberTo(number, decimals = 3) {\n",
" const fractionalDigits = String(number % 1).split(&#x27;&#x27;).slice(2, 2 + decimals).join(&#x27;&#x27;)\n",
" return `${Math.trunc(number)}.${fractionalDigits}`\n",
" }\n",
"\n",
" function registerHandlebarHelperFunctions() {\n",
" //helper fun\n",
"\n",
" class GenerateChartParams {\n",
" constructor(height, width, data, bottomMargin=20, topMargin=5) {\n",
" this.MARGIN = {\n",
" TOP: topMargin,\n",
" RIGHT: 5,\n",
" BOTTOM: bottomMargin,\n",
" LEFT: 55,\n",
" };\n",
" this.SVG_WIDTH = width;\n",
" this.SVG_HEIGHT = height;\n",
" this.CHART_WIDTH = this.SVG_WIDTH - this.MARGIN.LEFT - this.MARGIN.RIGHT;\n",
" this.CHART_HEIGHT = this.SVG_HEIGHT - this.MARGIN.TOP - this.MARGIN.BOTTOM;\n",
" this.svgEl = d3.create(&quot;svg&quot;)\n",
" .attr(&quot;preserveAspectRatio&quot;, &quot;xMinYMin meet&quot;)\n",
" .attr(&quot;viewBox&quot;, &quot;30 0 240 400&quot;)\n",
" .classed(&quot;svg-content-responsive&quot;, true)\n",
" this.maxYValue = d3.max(data, (d) =&gt; Math.abs(d.axisY));\n",
" this.xScale = d3\n",
" .scaleBand()\n",
" .domain(data.map((d) =&gt; d.axisX))\n",
" .range([this.MARGIN.LEFT, this.MARGIN.LEFT + this.CHART_WIDTH]);\n",
" this.yScale = d3\n",
" .scaleLinear()\n",
" .domain([0, this.maxYValue * 1.02])\n",
" .range([this.CHART_HEIGHT, 0]);\n",
" }\n",
" }\n",
"\n",
" function generateChart(data, height = 70, width = 250, index = 0, referenceProfileExist = false) {\n",
" const sizes = new GenerateChartParams(height, width, data, 5)\n",
" const {\n",
" MARGIN,\n",
" SVG_WIDTH,\n",
" SVG_HEIGHT,\n",
" CHART_WIDTH,\n",
" CHART_HEIGHT,\n",
" svgEl,\n",
" maxYValue,\n",
" xScale,\n",
" yScale\n",
" } = sizes\n",
" const rectColors = [&quot;#44C0E7&quot;, &quot;#F5843C&quot;]\n",
"\n",
" // Add the y Axis\n",
" if (!referenceProfileExist) {\n",
" svgEl\n",
" .append(&quot;g&quot;)\n",
" .attr(&quot;transform&quot;, &quot;translate(&quot; + MARGIN.LEFT + &quot;, &quot; + MARGIN.TOP + &quot;)&quot;)\n",
" .call(d3.axisLeft(yScale).tickValues([0, maxYValue/2, maxYValue]))\n",
" .selectAll(&quot;text&quot;)\n",
" .style(&quot;font-size&quot;, &quot;8&quot;)\n",
" }\n",
"\n",
" const gChart = svgEl.append(&quot;g&quot;);\n",
" gChart\n",
" .attr(&quot;transform&quot;, &quot;translate(&quot; + 20 + &quot;, &quot; + 0 + &quot;)&quot;)\n",
" .selectAll(&quot;.bar&quot;)\n",
" .data(data)\n",
" .enter()\n",
" .append(&quot;rect&quot;)\n",
" .classed(&quot;bar&quot;, true)\n",
" .attr(&quot;width&quot;, xScale.bandwidth() - 1)\n",
" .attr(&quot;height&quot;, (d) =&gt; CHART_HEIGHT - yScale(d.axisY))\n",
" .attr(&quot;x&quot;, (d) =&gt; xScale(d.axisX))\n",
" .attr(&quot;y&quot;, (d) =&gt; yScale(d.axisY) + MARGIN.TOP)\n",
" .attr(&quot;fill&quot;, rectColors[index]);\n",
"\n",
" return svgEl._groups[0][0].outerHTML;\n",
" }\n",
"\n",
" function chartData(column) {\n",
" const data = [];\n",
" if (column.histogram) {\n",
" column.histogram.counts.slice(0, 30).forEach((count, index) =&gt; {\n",
" data.push({\n",
" axisY: count,\n",
" axisX: index,\n",
" });\n",
" });\n",
" } else if (column.frequentItems) {\n",
" Object.entries(column.frequentItems).forEach(([key, {value, estimate}], index) =&gt; {\n",
" data.push({\n",
" axisY: estimate,\n",
" axisX: value,\n",
" });\n",
" });\n",
" }\n",
"\n",
" return data\n",
" }\n",
"\n",
" function graph(column, key, referenceColumn) {\n",
" let data = [];\n",
" const columnKey = key.data.key\n",
" let chartValue = false\n",
" let chartColor = undefined\n",
" if(!!referenceColumn){\n",
" column = referenceColumn.columns[columnKey]\n",
" chartValue = true\n",
" chartColor = 1\n",
" } else if (referenceColumn === undefined) {\n",
" column = &quot;&quot;\n",
" }\n",
"\n",
" if (column.histogram || column.frequentItems) {\n",
" data = chartData(column)\n",
" } else if (referenceColumn === null ) {\n",
" $(&quot;.svg-container&quot;).css(&quot;padding-bottom&quot;, &quot;0&quot;)\n",
" return &#x27;&lt;span class=&quot;wl-table-cell__bedge-wrap&quot;&gt;No data to show the chart&lt;/span&gt;&#x27;;\n",
" } else if (referenceColumn === undefined) {\n",
" $(document).ready(function() {\n",
" $(&quot;.reference-table-head&quot;).addClass(&quot;d-none&quot;)\n",
" });\n",
" return &#x27;&#x27;\n",
" } else if (referenceColumn.frequentItems === undefined){\n",
" return &#x27;&#x27;;\n",
" }\n",
" return `\n",
" &lt;div class=&quot;svg-container&quot;&gt;\n",
" ${generateChart(data, ...[,,], chartColor, chartValue)}\n",
" &lt;/div&gt;\n",
" `;\n",
" }\n",
"\n",
" function formatLabelDate(timestamp) {\n",
" const date = new Date(timestamp);\n",
" const format = d3.timeFormat(&quot;%Y-%m-%d %I:%M:%S %p %Z&quot;);\n",
" return format(date);\n",
" }\n",
"\n",
" const driftCountElement = (driftCount, driftColor, driftName, driftRange) =&gt; `\n",
" &lt;div class=&quot;display-flex flex-direction-column&quot;&gt;\n",
" &lt;div class=&quot;drift-detection-info-drifts-item display-flex align-items&quot;&gt;\n",
" &lt;div class=&quot;drift-detection-info-drifts-item-text display-flex align-items&quot;&gt;\n",
" &lt;p class=&quot;drift-detection-info-drifts-item-count mb-0&quot;&gt;${driftCount}&lt;/p&gt;\n",
" &lt;p class=&quot;drift-detection-info-drifts-item-range display-flex justify-content-center mb-0&quot;&gt;${driftRange}&lt;/p&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;/div&gt;\n",
" `\n",
"\n",
" const drifts = {\n",
" severe: {\n",
" count: 0,\n",
" range: &quot;with detected drift (0.00 - 0.05)&quot;,\n",
" },\n",
" moderate: {\n",
" count: 0,\n",
" range: &quot;with possible drift (0.05 - 0.15)&quot;,\n",
" },\n",
" mild: {\n",
" count: 0,\n",
" range: &quot;with no evidence of drift (0.15 - 1.0)&quot;,\n",
" }\n",
" };\n",
"\n",
" const countOfDrifts = (driftNumber) =&gt; {\n",
" if(driftNumber &gt;= 0 &amp;&amp; driftNumber &lt;= 0.05) {\n",
" Object.values(drifts)[0].count++\n",
" return 0\n",
" } else if(driftNumber &gt; 0.05 &amp;&amp; driftNumber &lt;= 0.15) {\n",
" Object.values(drifts)[1].count++\n",
" return 1\n",
" } else if(driftNumber &gt; 0.15) {\n",
" Object.values(drifts)[2].count++\n",
" return 2\n",
" }\n",
"\n",
" }\n",
"\n",
" abbreviate_number = function(value, fixed = 0) {\n",
" value = +value\n",
" if (value === null) { return null; } // terminate early\n",
" if (value === 0) { return &#x27;0&#x27;; } // terminate early\n",
" fixed = (!fixed || fixed &lt; 0) ? 0 : fixed; // number of decimal places to show\n",
" var b = (value).toPrecision(2).split(&quot;e&quot;), // get power\n",
" k = b.length === 1 ? 0 : Math.floor(Math.min(b[1].slice(1), 14) / 3), // floor at decimals, ceiling at trillions\n",
" c = k &lt; 1 ? value.toFixed(0 + fixed) : (value / Math.pow(10, k * 3) ).toFixed(1 + fixed), // divide by power\n",
" d = c &lt; 0 ? c : Math.abs(c), // enforce -0 is 0\n",
" newValue = d,\n",
" suffixe = [&#x27;&#x27;, &#x27;K&#x27;, &#x27;M&#x27;, &#x27;B&#x27;, &#x27;T&#x27;][k]; // append power\n",
" return {value, newValue, suffixe};\n",
" }\n",
"\n",
" function formatBytes(bytes, decimals = 2) {\n",
" let newValue,\n",
" suffixe = &quot;&quot;\n",
" if (bytes === 0) return &#x27;0 Bytes&#x27;;\n",
"\n",
" const k = 1024;\n",
" const dm = decimals &lt; 0 ? 0 : decimals;\n",
" const sizes = [&#x27;Bytes&#x27;, &#x27;KiB&#x27;, &#x27;MB&#x27;, &#x27;GB&#x27;, &#x27;TB&#x27;, &#x27;PB&#x27;, &#x27;EB&#x27;, &#x27;ZB&#x27;, &#x27;YB&#x27;];\n",
"\n",
" const i = Math.floor(Math.log(bytes) / Math.log(k));\n",
" newValue = parseFloat((bytes / Math.pow(k, i)).toFixed(dm));\n",
" suffixe = sizes[i]\n",
" return {bytes, newValue, suffixe};\n",
" }\n",
"\n",
" const valueSuffixe = (newNumber) =&gt; `\n",
" &lt;div class=&quot;statistic-measurement&quot;&gt;\n",
" ${newNumber}\n",
" &lt;/div&gt;`\n",
" const valueNumber = (newNumber) =&gt; `\n",
" &lt;div class=&quot;statistic-number&quot;&gt;\n",
" ${newNumber}\n",
" &lt;/div&gt;`\n",
"\n",
" const numberWithSuffixe = (number, newNumber, suffixe) =&gt;\n",
" `&lt;div class=&quot;tooltip-full-number&quot;&gt;\n",
" &lt;div class=&quot;statistic-number&quot;&gt;\n",
" ${newNumber}\n",
" &lt;div class=&quot;statistic-measurement&quot;&gt;${suffixe}&lt;/div&gt;\n",
" &lt;/div&gt;\n",
" &lt;span class=&quot;tooltiptext&quot;&gt;${number}&lt;/span&gt;\n",
" &lt;/div&gt;`\n",
"\n",
" Handlebars.registerHelper(&quot;observations&quot;, function (properties) {\n",
" const {value, newValue, suffixe} = abbreviate_number(referenceProfile.properties.observations)\n",
" return numberWithSuffixe(value, valueNumber(newValue), valueNumber(suffixe));\n",
" });\n",
"\n",
" Handlebars.registerHelper(&quot;missingCells&quot;, function (properties) {\n",
" const {value, newValue, suffixe} = abbreviate_number(referenceProfile.properties.missing_cells)\n",
" if (typeof value !== &#x27;undefined&#x27; &amp;&amp; typeof newValue !== &#x27;undefined&#x27; &amp;&amp; typeof suffixe !== &#x27;undefined&#x27; ) {\n",
" return numberWithSuffixe(value, valueSuffixe(`${newValue}`), suffixe);\n",
" }\n",
" return numberWithSuffixe(0, valueNumber(0), valueNumber(&#x27;&#x27;));\n",
" });\n",
"\n",
" Handlebars.registerHelper(&quot;missingCellsPercentage&quot;, function (properties) {\n",
" const {value, newValue, suffixe} = abbreviate_number(referenceProfile.properties.missing_percentage)\n",
" if (typeof value !== &#x27;undefined&#x27; &amp;&amp; typeof newValue !== &#x27;undefined&#x27; &amp;&amp; typeof suffixe !== &#x27;undefined&#x27; ) {\n",
" return numberWithSuffixe(value, valueSuffixe(`(${newValue}%)`), suffixe);\n",
" }\n",
" return numberWithSuffixe(0, valueSuffixe(`(${0}%)`), &#x27;&#x27;);\n",
" });\n",
"\n",
" Handlebars.registerHelper(&quot;getProfileTimeStamp&quot;, function (properties) {\n",
" return formatLabelDate(+properties.properties.dataTimestamp)\n",
" });\n",
"\n",
" Handlebars.registerHelper(&quot;getProfileName&quot;, function (properties) {\n",
" return properties.properties.tags.name\n",
" });\n",
"\n",
" let driftCount = 0;\n",
" const diffFromRefTableElement = (driftFromRefNumber, circleColor) =&gt; `\n",
" &lt;div class=&quot;text-color padding-5 text-align-end justify-content-center&quot;&gt;\n",
" ${driftFromRefNumber}\n",
" &lt;/div&gt;\n",
" `\n",
"\n",
" const cheqValueTypeNumber = (profile, profileValue) =&gt; {\n",
" let validValue;\n",
" if (profile &amp;&amp; profileValue !== undefined &amp;&amp; typeof profileValue === &quot;number&quot;) {\n",
" return true\n",
" } else if (profileValue !== undefined &amp;&amp; typeof profileValue !== &quot;number&quot;) {\n",
" return false\n",
" }\n",
" }\n",
"\n",
" Handlebars.registerHelper(&quot;getDiffFromRef&quot;, function (column, key) {\n",
" const columnKey = key.data.key\n",
" const {drift_from_ref} = referenceProfile.columns[columnKey]\n",
"\n",
" if (cheqValueTypeNumber(referenceProfile, drift_from_ref)) {\n",
" const driftFromRefNumber = drift_from_ref.toPrecision(2)\n",
" const driftCategory = countOfDrifts(driftFromRefNumber)\n",
" const circleColor = Object.values(drifts)[driftCategory].colorClass\n",
" if (driftCategory==0 || driftCategory == 1){\n",
" driftCount++\n",
" }\n",
" $(document).ready(() =&gt; {\n",
" $(&quot;.drift-count&quot;).html(driftCount)\n",
" $(&quot;.all-features&quot;).html(Object.keys(referenceProfile.columns).length)\n",
" })\n",
"\n",
" return diffFromRefTableElement(driftFromRefNumber, circleColor)\n",
"\n",
" } else if (cheqValueTypeNumber(referenceProfile, drift_from_ref) !== undefined) {\n",
" Object.values(drifts)[0].count++\n",
" return diffFromRefTableElement(&quot;undefined&quot;, &quot;severe-drift-circle-color&quot;)\n",
" }\n",
"\n",
" return &#x27;&lt;p style=&quot;color: black&quot;&gt;-&lt;/p&gt;&#x27;;\n",
" });\n",
"\n",
" $(document).ready(() =&gt;\n",
" Object.values(drifts).map(({count, name, colorClass, range}) =&gt;{\n",
" $(&quot;#drift-detection-info-drifts&quot;)\n",
" .append(driftCountElement(count, colorClass, name, range))\n",
" })\n",
" )\n",
"\n",
" Handlebars.registerHelper(&quot;inferredType&quot;, function (column) {\n",
" let infferedType = &quot;&quot;;\n",
"\n",
" if (column.isDiscrete) {\n",
" infferedType = &quot;Discrete&quot;;\n",
" } else {\n",
" infferedType = &quot;Non-discrete&quot;;\n",
" }\n",
" return infferedType;\n",
" });\n",
"\n",
" Handlebars.registerHelper(&quot;frequentItems&quot;, function (column) {\n",
" frequentItemsElemString = &quot;&quot;;\n",
" if (column.isDiscrete) {\n",
" const slicedFrequentItems = column.frequentItems.items.slice(0, 5);\n",
" for (let fi = 0; fi &lt; slicedFrequentItems.length; fi++) {\n",
" frequentItemsElemString +=\n",
" &#x27;&lt;span class=&quot;wl-table-cell__bedge&quot;&gt;&#x27; + slicedFrequentItems[fi].jsonValue + &quot;&lt;/span&gt;&quot;;\n",
" }\n",
" } else {\n",
" frequentItemsElemString += &quot;No data to show&quot;;\n",
" }\n",
" return frequentItemsElemString;\n",
" });\n",
"\n",
" Handlebars.registerHelper(&quot;totalCount&quot;, function (column) {\n",
" if (column.featureStats) {\n",
" return column.featureStats.total_count;\n",
" }\n",
"\n",
" return &quot;-&quot;;\n",
" });\n",
"\n",
" Handlebars.registerHelper(&quot;mean&quot;, function (column) {\n",
" if (column.featureStats?.descriptive_statistics) {\n",
" return fixNumberTo(column.featureStats.descriptive_statistics.mean);\n",
" }\n",
" return &quot;-&quot;;\n",
" });\n",
"\n",
" Handlebars.registerHelper(&quot;getGraphHtml&quot;,(column,key) =&gt; graph(column, key, null));\n",
" Handlebars.registerHelper(&quot;getReferenceGraphHtml&quot;,(column,key) =&gt; graph(column, key, referenceProfile));\n",
"\n",
" Handlebars.registerHelper(&quot;getDiscreteTypeCount&quot;, function () {\n",
" let count = 0;\n",
"\n",
" Object.entries(this.columns).forEach((feature) =&gt; {\n",
" if (feature[1].isDiscrete === true) {\n",
" count++;\n",
" }\n",
" });\n",
" return count.toString();\n",
" });\n",
"\n",
" Handlebars.registerHelper(&quot;getNonDiscreteTypeCount&quot;, function () {\n",
" let count = 0;\n",
"\n",
" Object.entries(this.columns).forEach((feature) =&gt; {\n",
" if (feature[1].isDiscrete === false) {\n",
" count++;\n",
" }\n",
" });\n",
" return count;\n",
" });\n",
"\n",
" Handlebars.registerHelper(&quot;getUnknownTypeCount&quot;, function () {\n",
" let count = 0;\n",
" return count;\n",
" Object.entries(this.columns).forEach((feature) =&gt; {\n",
" if (!feature[1].isDiscrete) {\n",
" count++;\n",
" }\n",
" });\n",
" return count;\n",
" });\n",
" }\n",
"\n",
" function initHandlebarsTemplate() {\n",
" // Replace this context with JSON from .py file\n",
" const context = {&quot;columns&quot;: {&quot;alcohol&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 11.0666666666667, &quot;end&quot;: 14.900001490000001, &quot;width&quot;: 0, &quot;counts&quot;: [28, 68, 32, 30, 39, 28, 21, 22, 24, 13, 13, 27, 9, 17, 8, 8, 2, 2, 4, 5, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], &quot;max&quot;: 14.9, &quot;min&quot;: 11.0666666666667, &quot;bins&quot;: [11.0666666666667, 11.194444494111144, 11.322222321555587, 11.45000014900003, 11.577777976444473, 11.705555803888917, 11.83333363133336, 11.961111458777804, 12.088889286222248, 12.216667113666691, 12.344444941111133, 12.472222768555577, 12.60000059600002, 12.727778423444464, 12.855556250888908, 12.98333407833335, 13.111111905777793, 13.238889733222237, 13.36666756066668, 13.494445388111124, 13.622223215555568, 13.750001043000012, 13.877778870444454, 14.005556697888897, 14.133334525333341, 14.261112352777785, 14.388890180222226, 14.51666800766667, 14.644445835111114, 14.772223662555557, 14.900001490000001], &quot;n&quot;: 408}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: null, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: {&quot;total_count&quot;: 408, &quot;missing&quot;: 0, &quot;distinct&quot;: 7.59803978178436, &quot;min&quot;: 11.0666666666667, &quot;max&quot;: 14.9, &quot;range&quot;: 3.8333333333333, &quot;quantile_statistics&quot;: {&quot;fifth_percentile&quot;: 11.1, &quot;iqr&quot;: 1.0, &quot;q1&quot;: 11.4, &quot;median&quot;: 11.8, &quot;q3&quot;: 12.4, &quot;ninety_fifth_percentile&quot;: 13.2}, &quot;descriptive_statistics&quot;: {&quot;stddev&quot;: 0.6824986635512768, &quot;coefficient_of_variation&quot;: 0.05725985668809312, &quot;sum&quot;: 4863.083333333334, &quot;variance&quot;: 0.4658044257492789, &quot;mean&quot;: 11.919321895424838}}}, &quot;pH&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 2.89, &quot;end&quot;: 4.010000401, &quot;width&quot;: 0, &quot;counts&quot;: [4, 2, 2, 4, 8, 5, 17, 19, 39, 35, 44, 30, 35, 40, 30, 11, 20, 16, 14, 11, 1, 10, 4, 1, 0, 2, 0, 2, 0, 2], &quot;max&quot;: 4.01, &quot;min&quot;: 2.89, &quot;bins&quot;: [2.89, 2.9273333467000002, 2.9646666934000003, 3.0020000401, 3.0393333868, 3.0766667335, 3.1140000802000003, 3.1513334269, 3.1886667736, 3.2260001203, 3.2633334670000003, 3.3006668137, 3.3380001604, 3.3753335071, 3.4126668538000002, 3.4500002005, 3.4873335472, 3.5246668939, 3.5620002406, 3.5993335873000003, 3.636666934, 3.6740002807, 3.7113336274, 3.7486669741, 3.7860003208000004, 3.8233336675, 3.8606670142, 3.8980003609000002, 3.9353337076, 3.9726670543, 4.010000401], &quot;n&quot;: 408}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: null, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: {&quot;total_count&quot;: 408, &quot;missing&quot;: 0, &quot;distinct&quot;: 18.8725525817653, &quot;min&quot;: 2.89, &quot;max&quot;: 4.01, &quot;range&quot;: 1.1199999999999997, &quot;quantile_statistics&quot;: {&quot;fifth_percentile&quot;: 3.09, &quot;iqr&quot;: 0.2200000000000002, &quot;q1&quot;: 3.23, &quot;median&quot;: 3.33, &quot;q3&quot;: 3.45, &quot;ninety_fifth_percentile&quot;: 3.68}, &quot;descriptive_statistics&quot;: {&quot;stddev&quot;: 0.17649177660211463, &quot;coefficient_of_variation&quot;: 0.05273349702213279, &quot;sum&quot;: 1365.52, &quot;variance&quot;: 0.031149347208170735, &quot;mean&quot;: 3.346862745098039}}}, &quot;fixed acidity&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 4.6, &quot;end&quot;: 15.90000159, &quot;width&quot;: 0, &quot;counts&quot;: [4, 16, 16, 17, 28, 39, 40, 29, 22, 31, 23, 36, 12, 12, 23, 23, 9, 6, 2, 4, 2, 4, 2, 2, 2, 0, 0, 0, 2, 2], &quot;max&quot;: 15.9, &quot;min&quot;: 4.6, &quot;bins&quot;: [4.6, 4.9766667196666665, 5.353333439333333, 5.730000158999999, 6.106666878666666, 6.483333598333333, 6.860000318, 7.236667037666667, 7.613333757333333, 7.990000477000001, 8.366667196666667, 8.743333916333334, 9.120000636, 9.496667355666666, 9.873334075333332, 10.250000795, 10.626667514666668, 11.003334234333334, 11.380000954, 11.756667673666666, 12.133334393333334, 12.510001113000001, 12.886667832666667, 13.263334552333333, 13.640001272000001, 14.016667991666667, 14.393334711333335, 14.770001431, 15.146668150666667, 15.523334870333334, 15.90000159], &quot;n&quot;: 408}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: null, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: {&quot;total_count&quot;: 408, &quot;missing&quot;: 0, &quot;distinct&quot;: 20.588239538027807, &quot;min&quot;: 4.6, &quot;max&quot;: 15.9, &quot;range&quot;: 11.3, &quot;quantile_statistics&quot;: {&quot;fifth_percentile&quot;: 5.4, &quot;iqr&quot;: 2.7, &quot;q1&quot;: 6.7, &quot;median&quot;: 7.9, &quot;q3&quot;: 9.4, &quot;ninety_fifth_percentile&quot;: 11.9}, &quot;descriptive_statistics&quot;: {&quot;stddev&quot;: 2.013014441140909, &quot;coefficient_of_variation&quot;: 0.24676558362692394, &quot;sum&quot;: 3328.3, &quot;variance&quot;: 4.052227140241847, &quot;mean&quot;: 8.157598039215687}}}, &quot;volatile acidity&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 0.12, &quot;end&quot;: 1.1150001115, &quot;width&quot;: 0, &quot;counts&quot;: [2, 8, 5, 9, 20, 33, 37, 37, 30, 35, 23, 24, 25, 24, 14, 16, 14, 15, 11, 3, 3, 4, 6, 2, 0, 3, 0, 3, 0, 2], &quot;max&quot;: 1.115, &quot;min&quot;: 0.12, &quot;bins&quot;: [0.12, 0.15316667038333331, 0.18633334076666666, 0.21950001115, 0.2526666815333333, 0.28583335191666664, 0.3190000223, 0.35216669268333334, 0.38533336306666666, 0.41850003345, 0.4516667038333333, 0.48483337421666667, 0.5180000445999999, 0.5511667149833333, 0.5843333853666667, 0.61750005575, 0.6506667261333333, 0.6838333965166666, 0.7170000669, 0.7501667372833333, 0.7833334076666666, 0.81650007805, 0.8496667484333333, 0.8828334188166667, 0.9160000892, 0.9491667595833333, 0.9823334299666666, 1.01550010035, 1.0486667707333335, 1.0818334411166668, 1.1150001115000001], &quot;n&quot;: 408}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: null, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: {&quot;total_count&quot;: 408, &quot;missing&quot;: 0, &quot;distinct&quot;: 22.05882840516061, &quot;min&quot;: 0.12, &quot;max&quot;: 1.115, &quot;range&quot;: 0.995, &quot;quantile_statistics&quot;: {&quot;fifth_percentile&quot;: 0.25, &quot;iqr&quot;: 0.23999999999999994, &quot;q1&quot;: 0.34, &quot;median&quot;: 0.44, &quot;q3&quot;: 0.58, &quot;ninety_fifth_percentile&quot;: 0.8}, &quot;descriptive_statistics&quot;: {&quot;stddev&quot;: 0.17791965320497752, &quot;coefficient_of_variation&quot;: 0.3771756131540623, &quot;sum&quot;: 192.45999999999998, &quot;variance&quot;: 0.03165540299657947, &quot;mean&quot;: 0.47171568627450977}}}, &quot;quality&quot;: {&quot;histogram&quot;: null, &quot;frequentItems&quot;: [{&quot;value&quot;: &quot;bad&quot;, &quot;estimate&quot;: 267}, {&quot;value&quot;: &quot;good&quot;, &quot;estimate&quot;: 141}], &quot;drift_from_ref&quot;: null, &quot;isDiscrete&quot;: true, &quot;featureStats&quot;: {&quot;total_count&quot;: 408, &quot;missing&quot;: 0, &quot;distinct&quot;: 0.4901960796487877, &quot;min&quot;: null, &quot;max&quot;: null, &quot;range&quot;: null, &quot;quantile_statistics&quot;: null, &quot;descriptive_statistics&quot;: {&quot;stddev&quot;: null, &quot;coefficient_of_variation&quot;: null, &quot;sum&quot;: null, &quot;variance&quot;: null, &quot;mean&quot;: null}}}, &quot;citric acid&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 0.0, &quot;end&quot;: 0.790000079, &quot;width&quot;: 0, &quot;counts&quot;: [59, 13, 7, 26, 11, 8, 5, 5, 9, 11, 13, 13, 28, 10, 23, 36, 10, 24, 30, 9, 9, 9, 7, 2, 9, 12, 2, 4, 4, 0], &quot;max&quot;: 0.79, &quot;min&quot;: 0.0, &quot;bins&quot;: [0.0, 0.026333335966666666, 0.05266667193333333, 0.0790000079, 0.10533334386666666, 0.13166667983333333, 0.1580000158, 0.18433335176666665, 0.21066668773333333, 0.2370000237, 0.26333335966666666, 0.2896666956333333, 0.3160000316, 0.34233336756666666, 0.3686667035333333, 0.3950000395, 0.42133337546666666, 0.4476667114333333, 0.4740000474, 0.5003333833666667, 0.5266667193333333, 0.5530000553, 0.5793333912666666, 0.6056667272333334, 0.6320000632, 0.6583333991666667, 0.6846667351333333, 0.7110000711, 0.7373334070666666, 0.7636667430333334, 0.790000079], &quot;n&quot;: 408}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: null, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: {&quot;total_count&quot;: 408, &quot;missing&quot;: 0, &quot;distinct&quot;: 17.892160062112726, &quot;min&quot;: 0.0, &quot;max&quot;: 0.79, &quot;range&quot;: 0.79, &quot;quantile_statistics&quot;: {&quot;fifth_percentile&quot;: 0.0, &quot;iqr&quot;: 0.37, &quot;q1&quot;: 0.1, &quot;median&quot;: 0.34, &quot;q3&quot;: 0.47, &quot;ninety_fifth_percentile&quot;: 0.66}, &quot;descriptive_statistics&quot;: {&quot;stddev&quot;: 0.2090283588895552, &quot;coefficient_of_variation&quot;: 0.6677908576222575, &quot;sum&quot;: 127.71000000000001, &quot;variance&quot;: 0.043692854820060696, &quot;mean&quot;: 0.313014705882353}}}, &quot;chlorides&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 0.012, &quot;end&quot;: 0.230000023, &quot;width&quot;: 0, &quot;counts&quot;: [2, 0, 0, 9, 22, 39, 45, 76, 65, 42, 33, 22, 20, 8, 9, 8, 4, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1], &quot;max&quot;: 0.23, &quot;min&quot;: 0.012, &quot;bins&quot;: [0.012, 0.019266667433333332, 0.026533334866666668, 0.0338000023, 0.04106666973333333, 0.04833333716666667, 0.0556000046, 0.06286667203333333, 0.07013333946666667, 0.0774000069, 0.08466667433333333, 0.09193334176666666, 0.0992000092, 0.10646667663333333, 0.11373334406666666, 0.12100001149999999, 0.12826667893333332, 0.13553334636666667, 0.14280001380000001, 0.15006668123333333, 0.15733334866666668, 0.1646000161, 0.17186668353333334, 0.17913335096666666, 0.1864000184, 0.19366668583333332, 0.20093335326666667, 0.2082000207, 0.21546668813333333, 0.22273335556666665, 0.230000023], &quot;n&quot;: 408}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: null, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: {&quot;total_count&quot;: 408, &quot;missing&quot;: 0, &quot;distinct&quot;: 21.813730257594944, &quot;min&quot;: 0.012, &quot;max&quot;: 0.23, &quot;range&quot;: 0.218, &quot;quantile_statistics&quot;: {&quot;fifth_percentile&quot;: 0.046, &quot;iqr&quot;: 0.025999999999999995, &quot;q1&quot;: 0.06, &quot;median&quot;: 0.071, &quot;q3&quot;: 0.086, &quot;ninety_fifth_percentile&quot;: 0.12}, &quot;descriptive_statistics&quot;: {&quot;stddev&quot;: 0.024213181268290383, &quot;coefficient_of_variation&quot;: 0.3226526212509791, &quot;sum&quot;: 30.618, &quot;variance&quot;: 0.0005862781471310883, &quot;mean&quot;: 0.07504411764705882}}}, &quot;sulphates&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 0.37, &quot;end&quot;: 1.130000113, &quot;width&quot;: 0, &quot;counts&quot;: [3, 2, 5, 3, 7, 18, 18, 46, 22, 37, 21, 33, 21, 28, 29, 27, 21, 13, 24, 7, 9, 2, 4, 2, 2, 1, 1, 0, 0, 2], &quot;max&quot;: 1.13, &quot;min&quot;: 0.37, &quot;bins&quot;: [0.37, 0.3953333371, 0.4206666742, 0.4460000113, 0.47133334839999996, 0.4966666855, 0.5220000226, 0.5473333597, 0.5726666968, 0.5980000339, 0.623333371, 0.6486667080999999, 0.6740000452, 0.6993333823, 0.7246667194, 0.7500000565, 0.7753333936, 0.8006667306999999, 0.8260000677999999, 0.8513334049, 0.8766667419999999, 0.9020000791, 0.9273334162, 0.9526667533, 0.9780000904, 1.0033334274999999, 1.0286667646, 1.0540001016999998, 1.0793334388, 1.1046667759, 1.130000113], &quot;n&quot;: 408}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: null, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: {&quot;total_count&quot;: 408, &quot;missing&quot;: 0, &quot;distinct&quot;: 14.215688286897349, &quot;min&quot;: 0.37, &quot;max&quot;: 1.13, &quot;range&quot;: 0.7599999999999999, &quot;quantile_statistics&quot;: {&quot;fifth_percentile&quot;: 0.5, &quot;iqr&quot;: 0.19000000000000006, &quot;q1&quot;: 0.58, &quot;median&quot;: 0.66, &quot;q3&quot;: 0.77, &quot;ninety_fifth_percentile&quot;: 0.88}, &quot;descriptive_statistics&quot;: {&quot;stddev&quot;: 0.12701037402923776, &quot;coefficient_of_variation&quot;: 0.18776807233831805, &quot;sum&quot;: 275.97999999999996, &quot;variance&quot;: 0.016131635111046875, &quot;mean&quot;: 0.6764215686274508}}}, &quot;residual sugar&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 0.9, &quot;end&quot;: 12.90000129, &quot;width&quot;: 0, &quot;counts&quot;: [8, 39, 118, 123, 40, 16, 11, 8, 14, 8, 3, 2, 2, 6, 2, 0, 2, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], &quot;max&quot;: 12.9, &quot;min&quot;: 0.9, &quot;bins&quot;: [0.9, 1.300000043, 1.7000000860000002, 2.100000129, 2.500000172, 2.900000215, 3.3000002580000003, 3.700000301, 4.100000344000001, 4.500000387, 4.90000043, 5.300000473000001, 5.700000516000001, 6.100000559000001, 6.500000602000001, 6.900000645, 7.300000688000001, 7.700000731000001, 8.100000774, 8.500000817, 8.90000086, 9.300000903, 9.700000946000001, 10.100000989000002, 10.500001032000002, 10.900001075, 11.300001118, 11.700001161000001, 12.100001204000002, 12.500001247000002, 12.90000129], &quot;n&quot;: 408}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: null, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: {&quot;total_count&quot;: 408, &quot;missing&quot;: 0, &quot;distinct&quot;: 15.931375081243552, &quot;min&quot;: 0.9, &quot;max&quot;: 12.9, &quot;range&quot;: 12.0, &quot;quantile_statistics&quot;: {&quot;fifth_percentile&quot;: 1.6, &quot;iqr&quot;: 0.7999999999999998, &quot;q1&quot;: 2.0, &quot;median&quot;: 2.3, &quot;q3&quot;: 2.8, &quot;ninety_fifth_percentile&quot;: 5.5}, &quot;descriptive_statistics&quot;: {&quot;stddev&quot;: 1.2990000858665753, &quot;coefficient_of_variation&quot;: 0.49437249664993493, &quot;sum&quot;: 1072.05, &quot;variance&quot;: 1.6874012230813702, &quot;mean&quot;: 2.6275735294117646}}}, &quot;free sulfur dioxide&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 3.0, &quot;end&quot;: 51.0000051, &quot;width&quot;: 0, &quot;counts&quot;: [32, 78, 21, 21, 36, 17, 26, 26, 30, 21, 4, 13, 12, 10, 10, 6, 5, 4, 9, 5, 4, 8, 2, 2, 3, 0, 1, 0, 1, 1], &quot;max&quot;: 51.0, &quot;min&quot;: 3.0, &quot;bins&quot;: [3.0, 4.60000017, 6.200000340000001, 7.80000051, 9.400000680000002, 11.000000850000001, 12.60000102, 14.200001190000002, 15.800001360000001, 17.40000153, 19.000001700000002, 20.600001870000003, 22.20000204, 23.800002210000002, 25.400002380000004, 27.00000255, 28.600002720000003, 30.200002890000004, 31.80000306, 33.40000323, 35.000003400000004, 36.600003570000005, 38.20000374000001, 39.80000391, 41.40000408, 43.00000425, 44.600004420000005, 46.200004590000006, 47.80000476000001, 49.40000493, 51.0000051], &quot;n&quot;: 408}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: null, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: {&quot;total_count&quot;: 408, &quot;missing&quot;: 0, &quot;distinct&quot;: 11.029412969947018, &quot;min&quot;: 3.0, &quot;max&quot;: 51.0, &quot;range&quot;: 48.0, &quot;quantile_statistics&quot;: {&quot;fifth_percentile&quot;: 3.0, &quot;iqr&quot;: 13.0, &quot;q1&quot;: 6.0, &quot;median&quot;: 13.0, &quot;q3&quot;: 19.0, &quot;ninety_fifth_percentile&quot;: 36.0}, &quot;descriptive_statistics&quot;: {&quot;stddev&quot;: 9.994223698460777, &quot;coefficient_of_variation&quot;: 0.6774056431550788, &quot;sum&quot;: 6019.5, &quot;variance&quot;: 99.884507334875, &quot;mean&quot;: 14.753676470588236}}}, &quot;density&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 0.99007, &quot;end&quot;: 1.0032001003200002, &quot;width&quot;: 0, &quot;counts&quot;: [4, 4, 0, 10, 4, 11, 8, 32, 32, 37, 38, 49, 46, 25, 25, 18, 15, 8, 4, 8, 6, 6, 2, 4, 4, 2, 0, 2, 0, 4], &quot;max&quot;: 1.0032, &quot;min&quot;: 0.99007, &quot;bins&quot;: [0.99007, 0.9905076700106666, 0.9909453400213334, 0.991383010032, 0.9918206800426667, 0.9922583500533334, 0.992696020064, 0.9931336900746667, 0.9935713600853334, 0.9940090300960001, 0.9944467001066667, 0.9948843701173334, 0.9953220401280001, 0.9957597101386667, 0.9961973801493335, 0.9966350501600001, 0.9970727201706667, 0.9975103901813335, 0.9979480601920001, 0.9983857302026667, 0.9988234002133335, 0.9992610702240001, 0.9996987402346668, 1.0001364102453334, 1.0005740802560001, 1.0010117502666669, 1.0014494202773334, 1.0018870902880002, 1.002324760298667, 1.0027624303093334, 1.0032001003200002], &quot;n&quot;: 408}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: null, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: {&quot;total_count&quot;: 408, &quot;missing&quot;: 0, &quot;distinct&quot;: 55.88238444546564, &quot;min&quot;: 0.99007, &quot;max&quot;: 1.0032, &quot;range&quot;: 0.013130000000000086, &quot;quantile_statistics&quot;: {&quot;fifth_percentile&quot;: 0.9922, &quot;iqr&quot;: 0.0023599999999999177, &quot;q1&quot;: 0.99394, &quot;median&quot;: 0.99516, &quot;q3&quot;: 0.9963, &quot;ninety_fifth_percentile&quot;: 0.9996}, &quot;descriptive_statistics&quot;: {&quot;stddev&quot;: 0.0021784570136347352, &quot;coefficient_of_variation&quot;: 0.002188682344428877, &quot;sum&quot;: 406.09385999999995, &quot;variance&quot;: 4.745674960254368e-06, &quot;mean&quot;: 0.995328088235294}}}, &quot;total sulfur dioxide&quot;: {&quot;histogram&quot;: {&quot;start&quot;: 6.0, &quot;end&quot;: 289.0000289, &quot;width&quot;: 0, &quot;counts&quot;: [84, 92, 70, 48, 39, 14, 16, 11, 9, 10, 6, 3, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], &quot;max&quot;: 289.0, &quot;min&quot;: 6.0, &quot;bins&quot;: [6.0, 15.433334296666667, 24.866668593333333, 34.30000289, 43.73333718666667, 53.16667148333333, 62.600005780000004, 72.03334007666666, 81.46667437333333, 90.90000867, 100.33334296666666, 109.76667726333334, 119.20001156000001, 128.63334585666666, 138.06668015333332, 147.50001445, 156.93334874666667, 166.36668304333332, 175.80001734, 185.23335163666667, 194.66668593333333, 204.10002023, 213.53335452666667, 222.96668882333333, 232.40002312000001, 241.83335741666667, 251.26669171333333, 260.70002601, 270.13336030666665, 279.56669460333336, 289.0000289], &quot;n&quot;: 408}, &quot;frequentItems&quot;: null, &quot;drift_from_ref&quot;: null, &quot;isDiscrete&quot;: false, &quot;featureStats&quot;: {&quot;total_count&quot;: 408, &quot;missing&quot;: 0, &quot;distinct&quot;: 22.303926553943704, &quot;min&quot;: 6.0, &quot;max&quot;: 289.0, &quot;range&quot;: 283.0, &quot;quantile_statistics&quot;: {&quot;fifth_percentile&quot;: 10.0, &quot;iqr&quot;: 29.0, &quot;q1&quot;: 17.0, &quot;median&quot;: 28.0, &quot;q3&quot;: 46.0, &quot;ninety_fifth_percentile&quot;: 96.0}, &quot;descriptive_statistics&quot;: {&quot;stddev&quot;: 31.68721099598923, &quot;coefficient_of_variation&quot;: 0.8554477659209692, &quot;sum&quot;: 15112.999999999998, &quot;variance&quot;: 1004.0793407043408, &quot;mean&quot;: 37.041666666666664}}}}, &quot;properties&quot;: null};\n",
" // Config handlebars and pass data to HBS template\n",
" const source = document.getElementById(&quot;entry-template&quot;).innerHTML;\n",
" const template = Handlebars.compile(source);\n",
" const html = template(context);\n",
" const target = document.getElementById(&quot;generated-html&quot;);\n",
" target.innerHTML = html;\n",
" }\n",
"\n",
" function initWebsiteScripts() {\n",
" const $featureSearch = document.getElementById(&quot;wl__feature-search&quot;);\n",
" const $tableBody = document.getElementById(&quot;table-body&quot;);\n",
" const $discrete = document.getElementById(&quot;inferredDiscrete&quot;);\n",
" const $nonDiscrete = document.getElementById(&quot;inferredNonDiscrete&quot;);\n",
" const $unknown = document.getElementById(&quot;inferredUnknown&quot;);\n",
"\n",
" const activeTypes = {\n",
" discrete: true,\n",
" &quot;non-discrete&quot;: true,\n",
" unknown: true,\n",
" };\n",
"\n",
" let searchString = &quot;&quot;;\n",
"\n",
" function debounce(func, wait, immediate) {\n",
" let timeout;\n",
"\n",
" return function () {\n",
" const context = this;\n",
" const args = arguments;\n",
" const later = function () {\n",
" timeout = null;\n",
" if (!immediate) func.apply(context, args);\n",
" };\n",
"\n",
" const callNow = immediate &amp;&amp; !timeout;\n",
" clearTimeout(timeout);\n",
" timeout = setTimeout(later, wait);\n",
" if (callNow) func.apply(context, args);\n",
" };\n",
" }\n",
"\n",
" function filterNotification() {\n",
" const $notifCircleContainer = $(&quot;.notif-circle-container&quot;)\n",
" const $boxes = $(&#x27;.wl_filter-options&gt;.form-check&gt;input[name=checkbox]:checked&#x27;);\n",
" const item = Object.values($boxes).find(function(value) { return $(value)[0] === undefined});\n",
" if (item === undefined) {\n",
" $notifCircleContainer.removeClass(&quot;d-none&quot;)\n",
" } else {\n",
" $notifCircleContainer.addClass(&quot;d-none&quot;)\n",
" }\n",
" }\n",
"\n",
" function handleSearch() {\n",
" const tableBodyChildren = $tableBody.children;\n",
"\n",
" for (let i = 0; i &lt; tableBodyChildren.length; i++) {\n",
" const type = tableBodyChildren[i].dataset.inferredType.toLowerCase();\n",
" const name = tableBodyChildren[i].dataset.featureName.toLowerCase();\n",
"\n",
" if (activeTypes[type] &amp;&amp; name.startsWith(searchString)) {\n",
" tableBodyChildren[i].style.display = &quot;&quot;;\n",
" } else {\n",
" tableBodyChildren[i].style.display = &quot;none&quot;;\n",
" }\n",
" }\n",
" }\n",
"\n",
" $featureSearch.addEventListener(\n",
" &quot;keyup&quot;,\n",
" debounce((event) =&gt; {\n",
" searchString = event.target.value.toLowerCase();\n",
" handleSearch();\n",
" }, 100),\n",
" );\n",
"\n",
" $discrete.addEventListener(&quot;change&quot;, (event) =&gt; {\n",
" if (event.currentTarget.checked) {\n",
" activeTypes[&quot;discrete&quot;] = true;\n",
" } else {\n",
" activeTypes[&quot;discrete&quot;] = false;\n",
" }\n",
" handleSearch();\n",
" filterNotification()\n",
" });\n",
"\n",
" $nonDiscrete.addEventListener(&quot;change&quot;, (event) =&gt; {\n",
" if (event.currentTarget.checked) {\n",
" activeTypes[&quot;non-discrete&quot;] = true;\n",
" } else {\n",
" activeTypes[&quot;non-discrete&quot;] = false;\n",
" }\n",
" handleSearch();\n",
" filterNotification()\n",
" });\n",
"\n",
" $unknown.addEventListener(&quot;change&quot;, (event) =&gt; {\n",
" if (event.currentTarget.checked) {\n",
" activeTypes[&quot;unknown&quot;] = true;\n",
" } else {\n",
" activeTypes[&quot;unknown&quot;] = false;\n",
" }\n",
" handleSearch();\n",
" filterNotification()\n",
" });\n",
"\n",
" function checkCurrentProfile(item, referenceItem) {\n",
" if (referenceProfile &amp;&amp; Object.values(referenceProfile)) {\n",
" return referenceItem\n",
" } else {\n",
" return item\n",
" }\n",
" }\n",
"\n",
" if(checkCurrentProfile(true, false)) {\n",
" $(&quot;.svg-container&quot;).css(&quot;padding-bottom&quot;, &quot;27%&quot;)\n",
" $(&quot;#diff-from-ref&quot;).addClass(&quot;d-none&quot;)\n",
" $(&quot;.diff-from-ref-table-cell&quot;).addClass(&quot;d-none&quot;)\n",
" } else {\n",
" $(&quot;#diff-from-ref&quot;).removeClass(&quot;d-none&quot;)\n",
" $(&quot;.diff-from-ref-table-cell&quot;).removeClass(&quot;d-none&quot;)\n",
" }\n",
" }\n",
"\n",
" function checkedBoxes() {\n",
" const $boxes = $(&#x27;input[name=checkbox]:checked&#x27;);\n",
" const $notifCircleContainer = $(&quot;.notif-circle-container&quot;)\n",
"\n",
" if ($boxes.length) {\n",
" $notifCircleContainer.removeClass(&quot;d-none&quot;)\n",
" }\n",
" }\n",
"\n",
" function openFilter() {\n",
" const $filterOptions = $(&quot;.dropdown-container&quot;);\n",
" const $notifCircleContainer = $(&quot;.notif-circle-container&quot;)\n",
" const filterClass = $filterOptions.attr(&quot;class&quot;);\n",
"\n",
" if (filterClass.indexOf(&quot;d-none&quot;) &gt; 0) {\n",
" $notifCircleContainer.addClass(&quot;d-none&quot;)\n",
" $filterOptions.removeClass(&quot;d-none&quot;);\n",
" $(&quot;.filter-icon&quot;).addClass(&quot;d-none&quot;)\n",
" $(&quot;.close-filter-icon&quot;).removeClass(&quot;d-none&quot;)\n",
" } else {\n",
" $filterOptions.addClass(&quot;d-none&quot;);\n",
" $(&quot;.close-filter-icon&quot;).addClass(&quot;d-none&quot;)\n",
" $(&quot;.filter-icon&quot;).removeClass(&quot;d-none&quot;)\n",
" checkedBoxes()\n",
" }\n",
" }\n",
"\n",
" // Invoke functions -- keep in mind invokation order\n",
" registerHandlebarHelperFunctions();\n",
" initHandlebarsTemplate();\n",
" initWebsiteScripts();\n",
" &lt;/script&gt;\n",
"&lt;/html&gt;\n",
"\" width=100% height=1000px\n",
" frameBorder=0></iframe>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# Load the data\n",
"import pandas as pd\n",
"pd.options.mode.chained_assignment = None # Disabling false positive warning\n",
"\n",
"url = \"http://archive.ics.uci.edu/ml/machine-learning-databases/wine-quality/winequality-red.csv\"\n",
"wine = pd.read_csv(url,sep=\";\")\n",
"\n",
"# Split the wines into two groups: \n",
"# with alcohol below 11 as the reference sample\n",
"cond_reference = (wine['alcohol']<=11)\n",
"wine_reference = wine.loc[cond_reference]\n",
"# with alcohol above 11 as the target dataset\n",
"cond_target = (wine['alcohol']>11)\n",
"wine_target = wine.loc[cond_target]\n",
"\n",
"# Add some missing values to `citric acid`, to see how this is reflected in profile visualizer\n",
"ixs = wine.iloc[100:110].index\n",
"wine.loc[ixs,'citric acid'] = None\n",
"\n",
"# Transform the numeric `quality` feature to a categorical feature, \n",
"# where each wine is classified as Good (above 6.5) or Bad\n",
"bins = (2, 6.5, 8)\n",
"group_names = ['bad', 'good']\n",
"\n",
"wine_reference['quality'] = pd.cut(wine_reference['quality'], bins = bins, labels = group_names)\n",
"wine_target['quality'] = pd.cut(wine_target['quality'], bins = bins, labels = group_names)\n",
"\n",
"# Profile the dataframes with whylogs\n",
"import whylogs as why\n",
"result = why.log(pandas=wine_target)\n",
"# Create profile_views as arguments to feed into the NotebookProfileVisualizer\n",
"prof_view = result.view()\n",
"# Repeat for the reference profile\n",
"result_ref = why.log(pandas=wine_reference)\n",
"prof_view_ref = result_ref.view()\n",
"\n",
"# Instantiate NotebookProfileViewer\n",
"from whylogs.viz import NotebookProfileVisualizer\n",
"\n",
"visualization = NotebookProfileVisualizer()\n",
"# Set the target and reference profiles\n",
"visualization.set_profiles(target_profile_view=prof_view, reference_profile_view=prof_view_ref)\n",
"\n",
"# Run a summary_drift_report\n",
"visualization.summary_drift_report()"
]
}
],
"metadata": {
"interpreter": {
"hash": "498e653baf04937463e348bd994b2947df7aeb22ca9551fbd507161022670ceb"
},
"kernelspec": {
"display_name": "whylabs_env",
"language": "python",
"name": "whylabs_env"
},
"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.9.12"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment