Python에 위 첨자를 추가하려면 다음 단계를 수행할 수 있습니다. -
-
numpy를 사용하여 및 f에 대한 점을 만듭니다.
-
플롯 f =ma plot() 을 사용한 곡선 f=ma라는 레이블이 있는 메서드.
-
위 첨자로 플롯 제목을 추가합니다(예:kgms-2).
-
xlabel 추가 위 첨자가 있는 플롯의 경우, 즉 ms-2입니다.
-
ylabel 추가 위 첨자가 있는 플롯의 경우, 즉, kg.
-
범례를 배치하려면 legend()를 사용하세요. 방법.
-
그림을 표시하려면 show() 방법.
예
import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True a = np.linspace(1, 10, 100) m = 20 f = m*a plt.plot(a, f, c="red", lw=5, label="f=ma") plt.title("Force $\mathregular{kgms^{-2}}$") plt.xlabel("Acceleration $\mathregular{ms^{-2}}$") plt.ylabel("Acceleration $\mathregular{kg}$") plt.legend() plt.show()
출력