Spaces:
Running
Running
Fix order of plots
Browse files
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['
|
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)
|