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)
這些是一些常用的方法,您可以根據需要進行進一步的定制和調整,以創建更加獨特和個性化的視覺效果。