text2sql_final_space / scripts /plot_task3.py
tjhalanigrid's picture
Step 2: added code folders
f0e5200
raw
history blame contribute delete
247 Bytes
import matplotlib.pyplot as plt
labels = ["Without", "With"]
constraint = [0, 88]
plt.figure()
plt.bar(labels, constraint)
plt.title("Constraint Satisfaction (Task 3)")
plt.ylabel("Percentage")
plt.savefig("task3_constraint.png")
plt.show()