import pandas as pd from sqlalchemy import create_engine import matplotlib.pyplot as plt import matplotlib # good is fivethirtyeight, ggplot matplotlib.style.use('seaborn-whitegrid') engine = create_engine("postgresql://postgres:@localhost:5432/") df = pd.read_excel("b.xlsx") print(df.describe()) print(df.info()) bp = df.boxplot(return_type='axes') plt.xlabel('x label') plt.ylabel('y label') plt.title("Simple Plot") plt.show() fun: plt.xkcd()