BlendMMM commited on
Commit
30c2b16
1 Parent(s): 27403e9

Update pages/1_Data_Validation.py

Browse files
Files changed (1) hide show
  1. pages/1_Data_Validation.py +1 -1
pages/1_Data_Validation.py CHANGED
@@ -49,7 +49,7 @@ panels=st.session_state['category_dict']['Panel Level 1'][0]
49
  selected_panels=st.multiselect('Please choose the panels you wish to analyze.If no panels are selected, insights will be derived from the overall data.',st.session_state['cleaned_data'][panels].unique())
50
  aggregation_dict = {item: 'sum' if key == 'Media' else 'mean' for key, value in st.session_state['category_dict'].items() for item in value if item not in ['date','Panel_1']}
51
 
52
- st.write(st.session_state['cleaned_data'])
53
 
54
  with st.expander('**Reponse Metric Analysis**'):
55
 
 
49
  selected_panels=st.multiselect('Please choose the panels you wish to analyze.If no panels are selected, insights will be derived from the overall data.',st.session_state['cleaned_data'][panels].unique())
50
  aggregation_dict = {item: 'sum' if key == 'Media' else 'mean' for key, value in st.session_state['category_dict'].items() for item in value if item not in ['date','Panel_1']}
51
 
52
+ #st.write(st.session_state['cleaned_data'])
53
 
54
  with st.expander('**Reponse Metric Analysis**'):
55