dashboard-charts
Advanced tools
Comparing version 0.3.0 to 0.3.1
{ | ||
"name": "dashboard-charts", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"description": "Clinical Dashboards", | ||
@@ -5,0 +5,0 @@ "module": "./src/index.js", |
@@ -1,7 +0,7 @@ | ||
d3.csv('../../../data/screening_and_randomization_example.csv', function(error, data) { | ||
d3.csv('https://raw.githubusercontent.com/RhoInc/data-library/master/data/clinical-trials/data-cleaning/dashboard-enrollment.csv', function(error, data) { | ||
if (error) console.log(error); | ||
var settings = {}; | ||
var instance = dashboardCharts.screening('#container', settings); | ||
var instance = dashboardCharts.renderers.enrollment('#container', settings); | ||
instance.init(data); | ||
}); |
@@ -1,7 +0,7 @@ | ||
d3.csv('../../../data/enrollment_overtime_example.csv', function(error, data) { | ||
d3.csv('https://raw.githubusercontent.com/RhoInc/data-library/master/data/clinical-trials/data-cleaning/dashboard-enrollment-over-time.csv', function(error, data){ | ||
if (error) console.log(error); | ||
var settings = {}; | ||
var instance = dashboardCharts.enrollment('#container', settings); | ||
var instance = dashboardCharts.renderers.enrollmentOverTime('#container', settings); | ||
instance.init(data); | ||
}); |
@@ -1,7 +0,7 @@ | ||
d3.csv('../../../data/form_status_example.csv', function(error, data) { | ||
d3.csv('https://raw.githubusercontent.com/RhoInc/data-library/master/data/clinical-trials/data-cleaning/dashboard-forms.csv', function (error, data) { | ||
if (error) console.log(error); | ||
var settings = {}; | ||
var instance = dashboardCharts.forms('#container'); | ||
var instance = dashboardCharts.renderers.forms('#container'); | ||
instance.init(data); | ||
}); |
@@ -1,7 +0,7 @@ | ||
d3.csv('../../../data/queries_example.csv', function(error, data) { | ||
d3.csv('https://raw.githubusercontent.com/RhoInc/data-library/master/data/clinical-trials/data-cleaning/dashboard-queries.csv', function (error, data) { | ||
if (error) console.log(error); | ||
var settings = {}; | ||
var instance = dashboardCharts.queries('#container'); | ||
var instance = dashboardCharts.renderers.queries('#container'); | ||
instance.init(data); | ||
}); |
@@ -1,7 +0,7 @@ | ||
d3.csv('../../../data/visit_completion_example.csv', function(error, data) { | ||
d3.csv('https://raw.githubusercontent.com/RhoInc/data-library/master/data/clinical-trials/data-cleaning/dashboard-visit-completion.csv', function(error, data) { | ||
if (error) console.log(error); | ||
var settings = {}; | ||
var instance = dashboardCharts.visit('#container', settings); | ||
var instance = dashboardCharts.renderers.visitCompletion('#container', settings); | ||
instance.init(data); | ||
}); |
@@ -8,3 +8,3 @@ /**-------------------------------------------------------------------------------------------\ | ||
d3.csv('../data/enrollment.csv', function(error, data) { | ||
d3.csv('https://raw.githubusercontent.com/RhoInc/data-library/master/data/clinical-trials/data-cleaning/dashboard-enrollment.csv', function(error, data) { | ||
instanceTL.init(data); | ||
@@ -20,3 +20,3 @@ }); | ||
d3.csv('../data/visitCompletion.csv', function(error, data) { | ||
d3.csv('https://raw.githubusercontent.com/RhoInc/data-library/master/data/clinical-trials/data-cleaning/dashboard-visit-completion.csv', function(error, data) { | ||
instanceTM.init(data); | ||
@@ -32,3 +32,3 @@ }); | ||
d3.csv('../data/queries.csv', function (error, data) { | ||
d3.csv('https://raw.githubusercontent.com/RhoInc/data-library/master/data/clinical-trials/data-cleaning/dashboard-queries.csv', function (error, data) { | ||
instanceTR.init(data); | ||
@@ -44,3 +44,3 @@ }); | ||
d3.csv('../data/enrollmentOverTime.csv', function(error, data){ | ||
d3.csv('https://raw.githubusercontent.com/RhoInc/data-library/master/data/clinical-trials/data-cleaning/dashboard-enrollment-over-time.csv', function(error, data){ | ||
instanceBL.init(data); | ||
@@ -56,4 +56,4 @@ }); | ||
d3.csv('../data/forms.csv', function (error, data) { | ||
d3.csv('https://raw.githubusercontent.com/RhoInc/data-library/master/data/clinical-trials/data-cleaning/dashboard-forms.csv', function (error, data) { | ||
instanceBR.init(data); | ||
}); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
152729
122