jansowa commited on
Commit
25ebb2e
·
1 Parent(s): aeefa77

Fix order of plots

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,7 +12,7 @@ def load_data(file_path):
12
 
13
  # Function to style the DataFrame
14
  def style_dataframe(df: pd.DataFrame):
15
- df['Wyniki'] = df.apply(lambda row: [row['Analiza wydźwięku'], row['Znajomość związków frazeologicznych'], row['Zrozumienie tekstu']], axis=1)
16
 
17
  # Insert the new column after the 'Średnia' column
18
  cols = list(df.columns)
 
12
 
13
  # Function to style the DataFrame
14
  def style_dataframe(df: pd.DataFrame):
15
+ df['Wyniki'] = df.apply(lambda row: [row['Analiza wydźwięku'], row['Zrozumienie tekstu'], row['Znajomość związków frazeologicznych']], axis=1)
16
 
17
  # Insert the new column after the 'Średnia' column
18
  cols = list(df.columns)