code
code
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
# Create a box plot and count plot for the 'age' column
plt.figure(figsize=(10, 5))
sns.boxplot(y='age', data=df)
plt.title("Box plot for age")
plt.show()
plt.figure(figsize=(10, 5))
sns.countplot(y='age', data=df)
plt.title("Count plot for Age")
plt.show()
plt.figure(figsize=(10, 5))
sns.countplot(y='job', data=df)
plt.title("Count plot for Job")
plt.show()