Hi,
When After deploying the app I am not getting the value. But the same code is working fine in local.
CODE :-
import streamlit as st
import pandas as pd
import plotly.express as px
import seaborn as sns
import matplotlib.pyplot as plt
selected_metrics = [“ABC”]
selected_metrics = [metric for metric in selected_metrics if metric != “Type”]
correlation_matrix = filtered_df[selected_metrics].corr()
plt.figure(figsize=(20, 12))
sns.heatmap(correlation_matrix, annot=True, cmap=“coolwarm”, fmt=“.2f”, linewidths=0.5)
st.set_option(‘deprecation.showPyplotGlobalUse’, False)
st.pyplot()