We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import pandas as pd import numpy as np import matplotlib.pyplot as plt df = pd.DataFrame({'Depth': [0.2, 0.4, 0.4, 0.4, 0.4, 0.4, 0.6, 0.4, 3.2, 2.0], 'DateTimeUTC': [pd.Timestamp('2018-03-28 06:25:08'), pd.Timestamp('2018-03-28 06:25:49'), pd.Timestamp('2018-03-28 06:27:06'), pd.Timestamp('2018-03-28 06:32:11'), pd.Timestamp('2018-03-28 06:32:59'), pd.Timestamp('2018-03-28 06:34:02'), pd.Timestamp('2018-03-28 06:35:38'), pd.Timestamp('2018-03-28 06:37:04'), pd.Timestamp('2018-03-28 06:39:08'), pd.Timestamp('2018-03-28 06:40:52')]}) x = np.asarray(df['DateTimeUTC']) y = np.asarray(df['Depth']) fig, axs = plt.subplots(2, 1) ax = axs[0] ax.scatter(x, y) ax.set_title("using scatter") ax = axs[1] ax.plot(x, y) ax.set_title("Using plot") fig.tight_layout() plt.show()
Matplotlib version
The text was updated successfully, but these errors were encountered:
This was found by seaborn: mwaskom/seaborn#1641
Sorry, something went wrong.
I think this is still the old issue #7413 which already has quite some duplicates.
Good catch, absolutely. I'll close this and link in that issue....
Successfully merging a pull request may close this issue.
Bug report
Matplotlib version
The text was updated successfully, but these errors were encountered: