sql connect
Hits: 27
- Type of study: Clinimetrics
- Journal: To be determined
document.addEventListener('DOMContentLoaded', function() {
var ages = [60,60,60,60,60,50,60,50,64,36];
if (ages.length === 0) {
document.getElementById('agePlot').innerText = 'No age data found.';
return;
}
var trace = {
x: ages,
type: 'histogram',
marker: {color: 'rgb(100,200,250)'}
};
var layout = {
title: 'Age Distribution',
xaxis: {title: 'Age'},
yaxis: {title: 'Count'},
bargap: 0.05
};
Plotly.newPlot('agePlot', [trace], layout);
});