import seaborn as sns import matplotlib.pyplot as plt import pandas as pd # Load the example tips dataset data = pd.read_csv("http://localhost:3000/data/2015_weather.csv") # Create the histogram plot sns.histplot(data=data, x="average_max_temp", kde=True) # Set the plot title and labels plt.title("Histogram of Max Temperature") plt.xlabel("Avg. Max Temperature") plt.ylabel("Frequency") # Show the plot plt.show()