0
Good morning,
I have the code:import pandas as pd
from matplotlib import pyplot as plt
server250_mar19 = pd.read_csv('dbnode2_mar19.csv')
plt.plot(server250_mar19.Date, server250_mar19.CPU_pct)
plt.show()
my csv file contains the following data:
but when I try to visualize the graphic obey the following:
What could be wrong? I ask for a tip.
Fernando