Geospatial Data Science in Python.
View the Project on GitHub MUSA-550-Fall-2021/github-pages-single-page-starter
This single-page website demos how to display visualizations created with altair, hvplot, and folium.
For examples of how to use markdown to style text, see this this page.
This section will show examples of embedding interactive charts produced using Altair and Hvplot.
Below is a chart of the incidence of measles since 1928 for the 50 US states.
This was produced using Altair and embedded in this static web page. Note that you can also display Python code on this page:
import altair as alt
alt.renderers.enable('notebook')
Lastly, the measles incidence produced using the HvPlot package:
Important: When embedding charts, you will likely need to adjust the width/height of the charts before embedding them in the page so they fit nicely when embedded.
This post will show examples of embedding interactive maps produced using Folium.
The shortest route between the Art Museum and the Liberty Bell:
The percentage of households without internet by county:
See the lecture 9B slides and the lecture 10A slides for the code that produced these plots.