Bitha commited on
Commit
6cafa70
1 Parent(s): c980d16

Upload eda.py

Browse files
Files changed (1) hide show
  1. eda.py +3 -1
eda.py CHANGED
@@ -4,13 +4,15 @@ import pandas as pd
4
  import matplotlib.pyplot as plt
5
  import seaborn as sns
6
 
 
 
7
  # Function to run the EDA
8
  def run():
9
  # Load dataset
10
  df = pd.read_csv('Churn_Modelling.csv')
11
 
12
  # Set the title in the Streamlit app
13
- st.title('Exploratory Data Analysis of Customer Churn')
14
  st.write('---')
15
 
16
  # 1. Distribution of Customer Churn
 
4
  import matplotlib.pyplot as plt
5
  import seaborn as sns
6
 
7
+ st.set_option('deprecation.showPyplotGlobalUse', False)
8
+
9
  # Function to run the EDA
10
  def run():
11
  # Load dataset
12
  df = pd.read_csv('Churn_Modelling.csv')
13
 
14
  # Set the title in the Streamlit app
15
+ st.title('Exploratory Data Analysis')
16
  st.write('---')
17
 
18
  # 1. Distribution of Customer Churn