Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Matplotlib 그림에서 svg 파일 내보내기

<시간/>

matplotlib 그림에서 SVG 파일을 내보내려면 다음 단계를 수행할 수 있습니다. -

  • Figure 크기를 설정하고 서브플롯 사이와 주변의 패딩을 조정합니다.

  • Figure와 서브플롯 세트를 생성합니다.

  • numpy를 사용하여 임의의 x 및 y 데이터 요소를 만듭니다.

  • plot() 를 사용하여 x 및 y 데이터 포인트를 플로팅합니다. 방법.

  • .svg 저장 savefig()를 사용하여 파일 형식 지정 방법.

예시

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
fig, ax = plt.subplots()
x = np.random.rand(10)
y = np.random.rand(10)
ax.plot(x, y, ls='dotted', linewidth=2, color='red')
plt.savefig("myimg.svg")

출력

이 코드를 실행하면 "myimg.svg라는 SVG 파일이 생성됩니다. "하고 현재 디렉토리에 저장합니다.

Matplotlib 그림에서 svg 파일 내보내기