我无法在 matplotlib 中关闭绘图的轴
I can't turn off the axes of my plot in 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
import numpy as np
plt.plot(np.random.random(1000))
plt.gca().get_xaxis().set_visible(False)
此短代码将 return:
我正在为随机游走模型编写代码,我使用 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
import numpy as np
plt.plot(np.random.random(1000))
plt.gca().get_xaxis().set_visible(False)
此短代码将 return: