Python Data Analysis

code
analysis
Author

Vinodh

Published

December 10, 2025

Here is a chart generated automatically by my blog:

import matplotlib.pyplot as plt

x = [1, 2, 3, 4, 5] y = [1, 4, 9, 16, 25]

plt.figure(figsize=(8,5)) plt.plot(x, y, color=‘purple’) plt.title(“My Data Engineering Growth”) plt.show()