막대그래프 import matplotlib.pyplot as plt import numpy as np # Data for plotting models = ['1', '2', '3', '4'] #model name metric = [0.561, 0.461, 0.69, 0.89] #metric x = np.arange(len(models)) # the label locations width = 0.35 # the width of the bars fig, ax = plt.subplots() rects1 = ax.bar(x, metric, width) # Add some text for labels, title and custom x-axis tick labels, etc. ax.set_ylabel('MOTA'..