-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathd3graph.qmd
More file actions
25 lines (20 loc) · 1.17 KB
/
d3graph.qmd
File metadata and controls
25 lines (20 loc) · 1.17 KB
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
# Interactive graph
<style>
* {
font-family: sans-serif;
}
</style>
<div id="plot"></div>
<p></p>
<p id="summary" style="background-color: white; color: black;">
The major issues affecting the residents of New York are mainly related to Noise due to Residential and from street. Lack of heat and hot water, illegal parking and blocked driveways are other causes of concern. The above plots help in highlighting these major issues across various boroughs and understanding which issue affects a borough the most. This information thus helps when renting apartments as we get an insight of the challenges across the boroughs.
</p>
<p id="color" style="background-color: white; color: black;">
Please select a Borough to view a plot:</p>
<input type="radio" name="Borough" value="MANHATTAN">MANHATTAN</input>
<input type="radio" name="Borough" value="QUEENS">QUEENS</input>
<input type="radio" name="Borough" value="BRONX">BRONX</input>
<input type="radio" name="Borough" value="BROOKLYN">BROOKLYN</input>
<input type="radio" name="Borough" value="STATEN ISLAND">STATEN ISLAND</input>
<script src="https://cdn.jsdelivr.net/npm/d3@7"></script>
<script src="scripts/myscript.js"></script>