The following code is from the site: https://matplotlib.org/stable/gallery/index.html bar graph. Sometimes I want to project a graph that contains almost 100 elements. The program shows everything crammed into a default size graph. Can I modify the size of the graph and make it longer?
Also, the numbers in the graph are horizontal, can I make them vertical? 100 Vs 1 0 0 ? ========================================================= Import matplotlib.pyplot as plt import numpy as np labels = ['G1', 'G2', 'G3', 'G4', 'G5'] men_means = [20, 34, 30, 35, 27] women_means = [25, 32, 34, 20, 25] x = np.arange(len(labels)) # the label locations width = 0.35 # the width of the bars fig, ax = plt.subplots() rects1 = ax.bar(x - width/2, men_means, width, label='Men') rects2 = ax.bar(x + width/2, women_means, width, label='Women') # Add some text for labels, title and custom x-axis tick labels, etc. ax.set_ylabel('Scores') ax.set_title('Scores by group and gender') ax.set_xticks(x) ax.set_xticklabels(labels) ax.legend() ax.bar_label(rects1, padding=3) ax.bar_label(rects2, padding=3) fig.tight_layout() plt.show() ======================================== Steve -- https://mail.python.org/mailman/listinfo/python-list