KashyapiNagaHarshitha commited on
Commit
4b494f9
·
verified ·
1 Parent(s): fb54fba

Update Step4_ZScore.py

Browse files
Files changed (1) hide show
  1. Step4_ZScore.py +4 -4
Step4_ZScore.py CHANGED
@@ -779,7 +779,7 @@ def update_dataframe(operation):
779
  modified_df = modify(df)
780
  elif operation == 'Shift':
781
  modified_df = shift(df)
782
- return modified_df.head()
783
 
784
  # Create a panel layout
785
  layout = pn.Column(
@@ -1092,10 +1092,10 @@ normalization_tab = pn.Column(
1092
  )
1093
 
1094
  zscore_tab = pn.Column(
1095
- pn.pane.Markdown("### Performed Z-score transformation"),
1096
- pn.pane.DataFrame(df_subset.head(), width = 1500),
1097
  pn.pane.Markdown("### Z-score transformation finished"),
1098
- pn.pane.DataFrame(df_merged_zscore.head(), width = 1500)
1099
  )
1100
 
1101
  quality_control_tab = pn.Column(
 
779
  modified_df = modify(df)
780
  elif operation == 'Shift':
781
  modified_df = shift(df)
782
+ return modified_df.head(30)
783
 
784
  # Create a panel layout
785
  layout = pn.Column(
 
1092
  )
1093
 
1094
  zscore_tab = pn.Column(
1095
+ #pn.pane.Markdown("### Performed Z-score transformation"),
1096
+ #pn.pane.DataFrame(df_subset.head(), width = 1500),
1097
  pn.pane.Markdown("### Z-score transformation finished"),
1098
+ pn.pane.DataFrame(df_merged_zscore.head(30), width = 1500)
1099
  )
1100
 
1101
  quality_control_tab = pn.Column(