Matplotlib提供了许多不同的方法来创建新的视觉效果,下面是一些常用的方法:
plt.plot(x, y, linestyle='--', color='r')
plt.scatter(x, y, marker='o', s=100)
plt.figure(facecolor='lightgrey', edgecolor='black')
import matplotlib.colors as mcolors
cmap = mcolors.LinearSegmentedColormap.from_list("my_colormap", ["red", "blue"])
plt.imshow(data, cmap=cmap)
from matplotlib.offsetbox import OffsetImage
img = plt.imread('logo.png')
imagebox = OffsetImage(img, zoom=0.2)
ab = AnnotationBbox(imagebox, (0.5, 0.5))
plt.gca().add_artist(ab)
这些是一些常用的方法,您可以根据需要进行进一步的定制和调整,以创建更加独特和个性化的视觉效果。