import matplotlib.pyplot as plt
import numpy as np

data = [5, 10, 15, 20, 25]
x_labels = ['Category A', 'Category B', 'Category C', 'Category D', 'Category E']

plt.bar(x_labels, data)
plt.xlabel('Category')
plt.ylabel('Count')
plt.title('Bar Plot Example')

plt.show()