Data Visualization
Visualization is a fundamental tool for the modern data scientist. It is often the central lens used to understand items such as statistical models (for example, via an AUC chart), the distribution of a crucial variable (via a histogram), or even important business metrics.
In the last two chapters, we used two popular Python graphing libraries (Matplotlib and Altair) in our examples. This chapter will focus on extending that ability to a broad range of Python graphing libraries, including some graphing functions native to Streamlit.
By the end of this chapter, you should feel comfortable using Streamlit’s native graphing functions and visualization functions to place graphs made from major Python visualization libraries in your own Streamlit app.
In this chapter, we will cover the following topics:
- San Francisco (SF) Trees – a new dataset
- Streamlit’s built-in graphing functions
- Streamlit’s built-in...