adding "By Craig Paardekooper"

This commit is contained in:
Frank Knoll
2024-07-20 18:33:52 +02:00
parent 8860111e07
commit a0fe9c9e0c
3 changed files with 18596 additions and 327 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+41 -33
View File
@@ -1,18 +1,20 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset="utf-8"/> <meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport"/> <meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Pfizer Vaccine Distribution by ZIP Code</title> <title>Pfizer Vaccine Distribution by ZIP Code</title>
<link href="https://cdn.datatables.net/1.13.1/css/jquery.dataTables.css" rel="stylesheet" type="text/css"/> <link href="https://cdn.datatables.net/1.13.1/css/jquery.dataTables.css" rel="stylesheet" type="text/css" />
<link href="forkMeOnGitHub.css" rel="stylesheet" type="text/css"/> <link href="forkMeOnGitHub.css" rel="stylesheet" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script charset="utf8" src="https://cdn.datatables.net/1.13.1/js/jquery.dataTables.min.js" type="text/javascript"></script> <script charset="utf8" src="https://cdn.datatables.net/1.13.1/js/jquery.dataTables.min.js"
<script src="./Utils.js"></script> type="text/javascript"></script>
<script src="./UIUtils.js"></script> <script src="./Utils.js"></script>
<script src="./DataTablesFilter.js"></script> <script src="./UIUtils.js"></script>
<script src="./VaccineDistributionByZipcodeTableInitializer.js"></script> <script src="./DataTablesFilter.js"></script>
<script> <script src="./VaccineDistributionByZipcodeTableInitializer.js"></script>
<script>
$(document).ready(function () { $(document).ready(function () {
const tableInitializer = const tableInitializer =
new VaccineDistributionByZipcodeTableInitializer( new VaccineDistributionByZipcodeTableInitializer(
@@ -23,28 +25,34 @@
}); });
</script> </script>
</head> </head>
<body> <body>
<span id="forkongithub"><a href="https://github.com/KnollFrank/HowBadIsMyBatch">Fork me on GitHub</a></span> <span id="forkongithub"><a href="https://github.com/KnollFrank/HowBadIsMyBatch">Fork me on GitHub</a></span>
<h1>Pfizer Vaccine Distribution by ZIP Code</h1> <h1>Pfizer Vaccine Distribution by ZIP Code</h1>
<table class="display" id="vaccineDistributionByZipcodeTable"> <p>
<thead> By Craig Paardekooper
<tr> </p>
<th>Provider</th> <table class="display" id="vaccineDistributionByZipcodeTable">
<th>ZIP Code</th> <thead>
<th>Lot Number</th> <tr>
<th>Doses Shipped</th> <th>Provider</th>
<th>Statistical Number of Adverse Reaction Reports</th> <th>ZIP Code</th>
<th>Statistical Number of Adverse Reaction Reports (per 100,000)</th> <th>Lot Number</th>
</tr> <th>Doses Shipped</th>
</thead> <th>Statistical Number of Adverse Reaction Reports</th>
</table> <th>Statistical Number of Adverse Reaction Reports (per 100,000)</th>
<dl> </tr>
<dt>Data Sources:</dt> </thead>
<dd><a href="https://vaers.hhs.gov/data/datasets.html" target="_blank">Vaccine Adverse Event Reporting System </table>
<dl>
<dt>Data Sources:</dt>
<dd><a href="https://vaers.hhs.gov/data/datasets.html" target="_blank">Vaccine Adverse Event Reporting System
(VAERS)</a></dd> (VAERS)</a></dd>
<dd><a href="https://icandecide.org/wp-content/uploads/2022/09/Amended-22-01962-Pfizer-2022-0426-pulled-2022-0823.xlsx" target="_blank">Vaccine Distribution by Zipcode</a></dd> <dd><a href="https://icandecide.org/wp-content/uploads/2022/09/Amended-22-01962-Pfizer-2022-0426-pulled-2022-0823.xlsx"
<dt>Last updated:</dt> target="_blank">Vaccine Distribution by Zipcode</a></dd>
<dd id="last_updated">July 05, 2024</dd> <dt>Last updated:</dt>
</dl> <dd id="last_updated">July 05, 2024</dd>
</dl>
</body> </body>
</html> </html>