Posts by André Oliveira • 1 point
1 post
-
0
votes1
answer119
viewsQ: How to join two lines in the same scale of the graph?
Hello! I have the following code: def createGraph(): plt.title("Evolution of COVID-19") plt.xlabel("Days") plt.ylabel("Infected People") countries = ['China', 'Italy'] days = [1,...,63] #Array from…