This repository has been archived by the owner on Dec 22, 2024. It is now read-only.
generated from code4policy/dataviz-with-gpt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>311 Boston Data Visualization</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
<meta charset="utf-8"> | ||
<title>311 Calls Bar Chart</title> | ||
<link rel="stylesheet" type="text/css" href="styles.css"> | ||
</head> | ||
<body> | ||
|
||
<div id="chart-container"></div> | ||
|
||
<script src="https://d3js.org/d3.v7.min.js"></script> | ||
<script src="script.js"></script> | ||
<h2> Top 10 Reasons for 311 Calls in the 2023 | ||
<div id="chart"></div> | ||
<script src="https://d3js.org/d3.v6.min.js"></script> | ||
<script src="script.js"></script> | ||
</body> | ||
|
||
<h6> Source: <a> https://data.boston.gov/dataset/311-service-requests | </a> | ||
Created by Gal and Louis using chatGPT-4</h6> | ||
</html> |