Raspberry Pi - Display and Output
What will this code display on a Raspberry Pi?
import matplotlib.pyplot as plt
plt.barh(['X', 'Y', 'Z'], [10, 15, 7])
plt.xlabel('Scores')
plt.ylabel('Groups')
plt.show()