Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

paneled-outlier-explorer

Package Overview
Dependencies
Maintainers
4
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

paneled-outlier-explorer

Paneled line charts of data points over time with point and line brushing

  • 1.1.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
4
Created
Source

Paneled Outlier Explorer

alt tag

Overview

The Paneled Outlier Explorer is a javascript library that provides paneled line charts of data points over time with point and line brushing. It is designed for use in clinical trial research, but can also be applied in other areas. The paneled outlier explorer is closely related to the (non-paneled) safety outlier explorer library, and can be used to monitor key safety signals in clinical trials in conjunction with other charts in the safety explorer suite. The Paneled Outlier Explorer includes interactive features such as real-time brushing and requires minimal user configuration.

Click here for a live demo When the page loads, the user sees multiple paneled charts providing a lab data summary for each measure over time.

alt tag

Usage

Generally speaking, minimal configuration is needed to create a Paneled Outlier Explorer. Just load a json data set and the tool will automatically create a user interface (measures, etc.) based on the data set loaded.

Initialize the chart like so:

paneledOutlierExplorer('body', {}).init(data)

Creating a chart with a basic custom configuration would look like this:

var settings = {
    'id_col': 'custom_id_variable',
    'filters': [
        {
            'value_col': 'GENDER',
            'label': 'Gender'
        }
    ]
};

paneledOutlierExplorer('body', settings).init(data)

More information is available in the project's wiki:

Keywords

FAQs

Package last updated on 19 Aug 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc