在Python中,可以使用以下方法設置繪圖的顏色:
import matplotlib.pyplot as plt
x = [1, 2, 3, 4]
y = [1, 4, 9, 16]
plt.plot(x, y, color='red') # 設置線條顏色為紅色
plt.show()
color
參數。import matplotlib.pyplot as plt
x = [1, 2, 3, 4]
y = [1, 4, 9, 16]
plt.plot(x, y, color='#FF0000') # 設置線條顏色為紅色
plt.show()
import matplotlib.pyplot as plt
x = [1, 2, 3, 4]
y = [1, 4, 9, 16]
plt.plot(x, y, color=(1, 0, 0)) # 設置線條顏色為紅色
plt.show()
import matplotlib.pyplot as plt
x = [1, 2, 3, 4]
y = [1, 4, 9, 16]
plt.plot(x, y, color='r') # 設置線條顏色為紅色
plt.show()
這些方法適用于大多數繪圖函數,如plot()
、scatter()
、bar()
等。