Testing Code Block Testing the runnability of a code block in Python to see if the plugin works. Python import pandas as pd import numpy as np import matplotlib.pyplot as plt # Generate random dataset np.random.seed(42) # For reproducibility data = pd.DataFrame({ 'X': np.linspace(0, 10, 50), 'Y1': np.random.rand(50) * 10, 'Y2': np.random.rand(50) * 10 }) # Plot the dataset plt.figure(figsize=(8, 5)) plt.plot(data['X'], data['Y1'], label='Y1', marker='o') plt.plot(data['X'], data['Y2'], label='Y2', marker='s') plt.xlabel('X') plt.ylabel('Values') plt.title('Random Data Plot') plt.legend() plt.grid() plt.show() Output