Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improve site performance #35

Merged
merged 6 commits into from
Jul 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions _includes/00_about.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,12 @@ <h2 style=" text-align: center; margin-top: 100px"> COVID-19 County Dashboard</h

<div class="grid-2-columns" style="margin-top: 20px">
<div>
<a href="results/deaths.html" target="_blank"><img src="results/deaths.png"
style="width: 100%;"></a>
<a type="button" class="btn btn-primary" style="margin-bottom: 30px; margin-right: 10px;"
href="results/deaths.html" target="_blank">View interactive map in fullscreen</a>
<a href="results/deaths.html" target="_blank"><img src="results/deaths.svg" style="width: 100%;"></a>
<a type="button" class="btn btn-primary" style="margin-bottom: 30px; margin-right: 10px;" href="results/deaths.html" target="_blank">View interactive map in fullscreen</a>
</div>
<div>
<a href="results/severity_map.html" target="_blank"><img src="results/severity_map.png"
style="width: 100%;"></a>
<a type="button" class="btn btn-primary" style="margin-bottom: 30px; margin-right: 10px;"
href="results/severity_map.html" target="_blank">View interactive map in fullscreen</a>
<a href="results/severity_map.html" target="_blank"><img src="results/severity_map.svg" style="width: 100%;"></a>
<a type="button" class="btn btn-primary" style="margin-bottom: 30px; margin-right: 10px;" href="results/severity_map.html" target="_blank">View interactive map in fullscreen</a>
</div>
</div>
</div>
Expand Down
20 changes: 9 additions & 11 deletions _includes/01_visualizations.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,23 @@ <h1 align="center"> visualizations </h1>
<!--<figure class="video_container">-->
<!-- <iframe src="results/deaths.html" frameborder="0" allowfullscreen="true" width="100%" height="800"> </iframe>-->
<!--</figure>-->
<a href="results/deaths.html"><img src="results/deaths.png" style="width: 100%;"></a>
<a type="button" class="btn btn-primary" style="margin-bottom: 30px; margin-right: 10px;" href="results/deaths.html">View
interactive map in fullscreen</a>
<p><strong>County-level map</strong>: This map shows forecasts for the number of deaths at the county-level.</p>
<a href="results/deaths.html"><img src="results/deaths.svg" style="width: 100%;"></a>
<a type="button" class="btn btn-primary" style="margin-bottom: 30px; margin-right: 10px;" href="results/deaths.html">View interactive map in fullscreen</a>
<p> <strong>County-level map</strong>: This map shows forecasts for the number of deaths at the county-level.</p>
<br>

<a href="results/search.html"><img src="results/search_map.png" style="width: 95%;"></a>
<a type="button" class="btn btn-primary" style="margin-bottom: 30px; margin-right: 10px;" href="results/search.html">Access
time series of specific counties</a>
<p><strong>County-level map</strong>: Click this map to access cases/deaths time series of specific counties.</p>
<a href="results/search.html"><img src="results/search_map.svg" style="width: 95%;"></a>
<a type="button" class="btn btn-primary" style="margin-bottom: 30px; margin-right: 10px;" href="results/search.html">Access time series of specific counties</a>
<p> <strong>County-level map</strong>: Click this map to access cases/deaths time series of specific counties.</p>
<br>


<!--<figure class="video_container">-->
<!-- <iframe src="results/severity_map.html" frameborder="0" allowfullscreen="true" width="100%" height="800"> </iframe>-->
<!--</figure>-->
<a href="results/severity_map.html"><img src="results/severity_map.png" style="width: 100%;"></a>
<a type="button" class="btn btn-primary" style="margin-bottom: 30px; margin-right: 10px;"
href="results/severity_map.html">View interactive map in fullscreen</a>

<a href="results/severity_map.html"><img src="results/severity_map.svg" style="width: 100%;"></a>
<a type="button" class="btn btn-primary" style="margin-bottom: 30px; margin-right: 10px;" href="results/severity_map.html">View interactive map in fullscreen</a>

<p><strong>COVID pandemic severity index (CPSI)</strong>: this index is designed to help aid the distribution of medical
resources to hospitals.
Expand Down
2 changes: 1 addition & 1 deletion _includes/03_models.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div align="center"> <a type="button" class="btn btn-primary" style="margin-bottom: 30px; margin-right: 10px;" href="https://github.com/Yu-Group/covid19-severity-prediction/blob/master/modeling/readme.md">View modeling on Github</a>
</div>

<img src="results/models.jpg" style="width:100%;">
<img src="results/models.svg" style="width:100%;">
<p style="text-align: center; font-size: x-large;">Combined Linear and Exponential Predictors (CLEP) </p>
<p style="text-align: center; font-size: large;">Calculate a <strong>weighted average of the predictions</strong>: higher weight to the models with better historical performance</p>

Expand Down
Loading