PythonDataScience24 / AirBnB-DataScienceProject

GNU General Public License v3.0
2 stars 0 forks source link

provide visualizations for Airbnb's #23

Closed TheRBen12 closed 3 months ago

TheRBen12 commented 4 months ago

As the third task needs to be implemented, visualizations need to provided. Visualizations are provided, after a user has selected a neighborhood. For the overview, no visualizations are provided, as they are not needed for the overview.

Acceptance criteria

Questions

bdravec commented 3 months ago

import streamlit as st import matplotlib.pyplot as plt import numpy as np

arr = np.random.normal(1, 1, size=100) fig, ax = plt.subplots() ax.hist(arr, bins=20)

st.pyplot(fig)