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

@oncojs/survivalplot

Package Overview
Dependencies
Maintainers
4
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@oncojs/survivalplot - npm Package Compare versions

Comparing version 0.3.0 to 0.3.1

13

dist/survivalplot.js

@@ -17,4 +17,4 @@ 'use strict';

palette: ['#0e6402', '#c20127', '#00005d'],
xAxisLabel: 'Survival Rate',
yAxisLabel: 'Duration (days)',
xAxisLabel: 'Duration (days)',
yAxisLabel: 'Survival Rate',
margins: {

@@ -30,3 +30,2 @@ top: 20,

var _$defaultsDeep = _.defaultsDeep({}, params, defaultOptions),
svg = _$defaultsDeep.svg,
container = _$defaultsDeep.container,

@@ -44,2 +43,10 @@ dataSets = _$defaultsDeep.dataSets,

var svg = d3.select(container).selectAll('svg');
if (svg.empty()) {
svg = d3.select(container).append('svg');
} else {
svg.selectAll('*').remove();
}
var containerBounds = container.getBoundingClientRect();

@@ -46,0 +53,0 @@

{
"name": "@oncojs/survivalplot",
"version": "0.3.0",
"version": "0.3.1",
"main": "dist/survivalplot.js",

@@ -5,0 +5,0 @@ "scripts": {

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