1
0
Fork 0

print table

main
Jeff Moe 2023-01-29 17:56:38 -07:00
parent e8ab01d886
commit 065f5b7d89
1 changed files with 6 additions and 1 deletions

View File

@ -75,6 +75,10 @@ def load_samples():
print("Unknown file type.")
exit()
return(df)
def print_table(df):
# Print the Dataframe loaded from CSV
with pd.option_context("display.max_rows", None, "display.max_columns", None):
print(df)
@ -106,7 +110,8 @@ def display_plot():
def main():
load_samples()
df = load_samples()
print_table(df)
display_plot()