Corey Morris
commited on
Commit
•
1e6b767
1
Parent(s):
28d4d6a
Changed streamlit to wide layout to see more of the table
Browse files
app.py
CHANGED
@@ -5,6 +5,7 @@ from result_data_processor import ResultDataProcessor
|
|
5 |
import matplotlib.pyplot as plt
|
6 |
import numpy as np
|
7 |
|
|
|
8 |
|
9 |
def plot_top_n(df, target_column, n=10):
|
10 |
top_n = df.nlargest(n, target_column)
|
|
|
5 |
import matplotlib.pyplot as plt
|
6 |
import numpy as np
|
7 |
|
8 |
+
st.set_page_config(layout="wide")
|
9 |
|
10 |
def plot_top_n(df, target_column, n=10):
|
11 |
top_n = df.nlargest(n, target_column)
|