1. 程式人生 > 其它 >在matplotlib中關閉繪圖軸的方法

在matplotlib中關閉繪圖軸的方法

我正在為隨機遊走模型編寫程式碼,我使用plt.axes().get_xaxis().set_visible(False)來隱藏軸,但是當我執行程式時,繪圖仍然顯示兩個軸。以下是我寫的:

import matplotlib.pyplot as plt 
from random_walk import RandomWalk

# Keep making random walks, as long as the program is active
while True:
    rw = RandomWalk()
    rw.fill_walk()

    point_numbers = list(range(rw.num_points))
    plt.scatter(rw.x_values, rw.y_values, c
=point_numbers, cmap=plt.cm.Blues, edgecolors='none', s=10) # Emphasize the first and last points. plt.scatter(0, 0, c='green', edgecolors='none', s=50) plt.scatter(rw.x_values[-1], rw.y_values[-1], c='red', s=50) # Remove the axes. plt.axes().get_xaxis().set_visible(False) plt.axes().get_yaxis().set_visible(False) plt.show() keep_running
= input("Make another walk? (y/n): ") if keep_running == 'n': break

你可以用plt.gca().get_xaxis().set_visible(False)代替plt.axes().get_xaxis().set_visible(False)

下面是一個程式碼示例:

import matplotlib.pyplot as plt
from random_walk import RandomWalk
# 解決不能顯示中文
plt.rcParams['font.sans-serif'] = ['SimHei
'] plt.rcParams['axes.unicode_minus'] = False while True: # 建立一個RandomWalk例項,並繪製 rw=RandomWalk() rw.fill_walk() points_numbers=list(range(rw.num_points)) # 設定圖表標題,並給座標軸加上標籤 plt.title("隨機漫步圖", fontsize=24) plt.scatter(rw.x_values,rw.y_values,c=points_numbers,cmap=plt.cm.Blues,edgecolors='none',s=15) # 隱藏座標軸 plt.gca().get_xaxis().set_visible(False) plt.gca().get_yaxis().set_visible(False) #plt.show() plt.savefig('sjmb.png',bbox_inches='tight') keep_running=input("是否要再模擬一次隨機漫步?(y/n):") if keep_running=='n': break