달나라 노트

Python matplotlib : clf, cla (좌표평면 지우기, 그래프 지우기, clear) 본문

Python/Python matplotlib

Python matplotlib : clf, cla (좌표평면 지우기, 그래프 지우기, clear)

CosmosProject 2022. 1. 19. 20:01
728x90
반응형

 

 

 

matplotlib에서는 clf, cla라는 method가 있습니다.

 

clf method는 clf method가 적용된 그래프의 figure를 지웁니다.

figure를 지운다고 하니까 좀 의미가 와닿지 않는데, 좀 더 간단하게 말하면 그래프 / 좌표평면 / title / x label / y label / xlim / ylim 등 모든걸 지운다고 보시면 됩니다.

 

cla method는 좌표평면을 제외한 내용을 지워줍니다.

따라서 cla method를 적용한 그래프에는 좌표평면만 남고 좌표평면 자체를 제외한 모든 것(그래프 / title / x label / y label / xlim / ylim 등)이 지워집니다.

 

 

 

 

import matplotlib.pyplot as plt

list_x = [0, 1, 2, 3, 4, 5]
list_y = [0, 1, 2, 3, 4, 5]
plt.plot(list_x, list_y)
plt.title('main')
plt.xlabel('x axis')
plt.xlabel('y axis')

plt.clf()
plt.show()

plot으로 그래프를 그리고 clf method를 적용하면 위처럼 아무 결과도 나오지 않습니다.

아무것도 보이지 않는 것 같지만 지금 위에 하얀색 바탕의 이미지가 삽입되어있습니다.

결과 화면에서 그래프와 좌표평면 모두가 지워졌기 때문에 아무것도 보이지 않습니다.

 

 

 

 

import matplotlib.pyplot as plt

list_x = [0, 1, 2, 3, 4, 5]
list_y = [0, 1, 2, 3, 4, 5]
plt.plot(list_x, list_y)
plt.title('main')
plt.xlabel('x axis')
plt.xlabel('y axis')

plt.cla()
plt.show()

plot으로 그래프를 그리고 cla method를 적용했더니 그래프, title, x label, y labal 등 좌표평면을 제외한 내용들이 사라졌습니다.

 

 

 

 

 

 

 

import matplotlib.pyplot as plt

sub_plots = plt.subplots(2, 1)
print(sub_plots)

fig = sub_plots[0]
graph = sub_plots[1]


list_x = [1, 2, 3, 4, 5]
list_y = [1, 2, 3, 4, 5]
graph[0].plot(list_x, list_y)
graph[0].set_title('plot 1')
graph[0].set_xlabel('x')
graph[0].set_ylabel('y')

list_x = [1, 2, 3, 4, 5]
list_y = [5, 1, 4, 3, 2]
graph[1].plot(list_x, list_y)
graph[1].set_title('plot 2')
graph[1].set_xlabel('x')
graph[1].set_ylabel('y')
graph[1].cla()

fig.suptitle('Multiple plots')
fig.tight_layout(pad=2)
plt.show()

cla method는 subplot에도 적용할 수 있습니다.

지금 보시면 위쪽과 아래쪽 좌표평면 모두에 대해 그래프를 그리고 subplot title, x label, y label 모두 설정하였으나

두 번째 그래프에 cla method를 적용하였더니 두 번째 그래프에 좌표평면만 남고 그 외의 모든 것(그래프, subplot title, x label y label 등)이 사라진 것을 볼 수 있습니다.

 

 

 

 

 

import matplotlib.pyplot as plt

sub_plots = plt.subplots(2, 1)
print(sub_plots)

fig = sub_plots[0]
graph = sub_plots[1]


list_x = [1, 2, 3, 4, 5]
list_y = [1, 2, 3, 4, 5]
graph[0].plot(list_x, list_y)
graph[0].set_title('plot 1')
graph[0].set_xlabel('x')
graph[0].set_ylabel('y')

list_x = [1, 2, 3, 4, 5]
list_y = [5, 1, 4, 3, 2]
graph[1].plot(list_x, list_y)
graph[1].set_title('plot 2')
graph[1].set_xlabel('x')
graph[1].set_ylabel('y')

fig.suptitle('Multiple plots')
fig.tight_layout(pad=2)

plt.clf()
plt.show()

반면에 clf method를 적용하면 모든 subplot들의 모든걸 삭제합니다.

(clf method는 subplot 중 하나에만 적용할 수 없습니다.)

 

 

 

 

 

 

728x90
반응형
Comments