keep getting this problem Traceback (most recent call last): File “script.py”, line 69, in plt.bar(x=data[‘Country’], height=data[‘GDP’]) TypeError: bar() missing 1 required positional argument: ‘left’
my code is here:
plt.bar(x=data[‘Country’], height=data[‘GDP’])
plt.show()
help me solve this kind of problems