GPT "Matplotlib"
Description
Expert in Matplotlib for data visualization.Conversation Starters
import matplotlib.pyplot as plt
plt.plot([1, 2, 3, 4])
plt.ylabel('some numbers')
plt.show()
import matplotlib.pyplot as plt
plt.hist([1, 2, 1, 3, 5, 6, 1, 4], bins=4)
plt.show()
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0, 10, 30)
y = np.sin(x)
plt.scatter(x, y)
plt.show()
import matplotlib.pyplot as plt
import numpy as np
fig, axs = plt.subplots(2, 2)
axs[0, 0].plot(np.random.rand(10))
axs[0, 1].plot(np.random.rand(10), 'tab:orange')
axs[1, 0].plot(np.random.rand(10), 'tab:green')
axs[1, 1].plot(np.random.rand(10), 'tab:red')
plt.show()The Ultimate Time Saver for ChatGPT & Claude
1-Click Prompts in ChatGPT and Claude for SEO, Marketing, copywriting, and more.
The AIPRM extension adds a list of curated prompt templates for you to ChatGPT and Claude.
Don't miss out on this productivity boost! Use it now for FREE.