ahmedheakl
commited on
Commit
•
7337644
1
Parent(s):
cb50a24
Update app.py
Browse files
app.py
CHANGED
@@ -33,7 +33,7 @@ data = {
|
|
33 |
|
34 |
df = pd.DataFrame(data)
|
35 |
df['Average Score'] = df.iloc[:, 1:].mean(axis=1).round(2)
|
36 |
-
df = df[['Average Score'] + [col for col in df.columns if col
|
37 |
|
38 |
def display_data():
|
39 |
return df
|
|
|
33 |
|
34 |
df = pd.DataFrame(data)
|
35 |
df['Average Score'] = df.iloc[:, 1:].mean(axis=1).round(2)
|
36 |
+
df = df[['Method', 'Average Score'] + [col for col in df.columns if col not in ['Method', 'Average Score']]]
|
37 |
|
38 |
def display_data():
|
39 |
return df
|