fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
ax.scatter3D(df["Date"], df["New case"], df["New PCR.1"], color = "green");
I am new to python. I got the error above mentioned i.e. "ValueError: view limit minimum -0.05 is less than 1 and is an invalid Matplotlib date value. This often happens if you pass a non-datetime value to an axis that has datetime units" and couldn't find the solution for it.