-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_visualization.py
30 lines (26 loc) · 1.01 KB
/
data_visualization.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import matplotlib.pyplot as plt
import seaborn as sns
import streamlit as st
def visualize_data(df):
st.sidebar.title("Data Visualization")
# Histogram
if st.sidebar.checkbox("Show Histogram"):
st.write("Histogram")
for column in df.select_dtypes(include=['float64', 'int64']).columns:
plt.figure()
sns.histplot(df[column], kde=True)
st.pyplot(plt)
# Scatter plot
if st.sidebar.checkbox("Show Scatter Plot"):
x_col = st.sidebar.selectbox("X-axis", df.columns)
y_col = st.sidebar.selectbox("Y-axis", df.columns)
st.write(f"Scatter plot between {x_col} and {y_col}")
plt.figure()
sns.scatterplot(x=df[x_col], y=df[y_col])
st.pyplot(plt)
# Correlation heatmap
if st.sidebar.checkbox("Show Correlation Heatmap"):
st.write("Correlation Heatmap")
plt.figure(figsize=(10, 8))
sns.heatmap(df.corr(), annot=True, cmap="coolwarm")
st.pyplot(plt)