-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbubble_plot.html
107 lines (102 loc) · 3.23 KB
/
bubble_plot.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Beam Energy vs. POT Bubble Plot</title>
<!-- jQuery for JSON loading -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- Chart.js library -->
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<style>
/* Ensure the canvas container is centered and takes 80% of the page width */
#chartContainer {
width: 80%;
margin: 0 auto;
}
/* Let the canvas fill the container */
#bubbleChart {
width: 100% !important;
height: auto !important;
}
</style>
</head>
<body>
<h2>Beam Energy vs. POT Bubble Plot</h2>
<div id="chartContainer">
<canvas id="bubbleChart"></canvas>
</div>
<script>
$(document).ready(function(){
$.getJSON("data/experiments.json")
.done(function(data) {
// Remove the field_types entry if present.
delete data.field_types;
// Prepare data points for the bubble plot.
// x: Beam Energy (GeV)
// y: POT/EOT or Runtime
// r: Fixed bubble radius (adjust as needed)
let dataPoints = [];
$.each(data, function(experiment, details) {
// Convert strings to numbers
let beamEnergy = parseFloat(details["Beam Energy (GeV)"]);
let pot = parseFloat(details["POT"]);
console.log("Got pot, energy, exp:", beamEnergy, pot, experiment)
if (!isNaN(beamEnergy) && !isNaN(pot)) {
dataPoints.push({
x: beamEnergy,
y: pot,
r: 5 // fixed bubble radius; adjust if desired
});
}
});
// Create the bubble chart
var ctx = document.getElementById('bubbleChart').getContext('2d');
var bubbleChart = new Chart(ctx, {
type: 'bubble',
data: {
datasets: [{
label: 'Beam Energy vs POT',
data: dataPoints,
backgroundColor: 'rgba(75, 192, 192, 0.6)',
borderColor: 'rgba(75, 192, 192, 1)',
borderWidth: 1
}]
},
options: {
scales: {
x: {
type: 'logarithmic',
title: {
display: true,
text: 'Beam Energy (GeV)'
}
},
y: {
type: 'logarithmic',
title: {
display: true,
text: 'POT/EOT or Runtime'
}
}
},
plugins: {
tooltip: {
callbacks: {
label: function(context) {
return 'Beam Energy: ' + context.raw.x +
', POT: ' + context.raw.y;
}
}
}
}
}
});
})
.fail(function(jqxhr, textStatus, error) {
console.error("Error loading JSON:", textStatus, error);
});
});
</script>
</body>
</html>