Python으로 재무제표 분석하기
Rohan Chatterjee
Risk Modeler
매출에서 이익을 창출하는 기업의 능력을 측정
일부 효율성 비율은 수익성 비율이기도 함:

sns.scatterplot(data=dataset_tech, x="current_ratio", y="gross_margin",
hue="Company")
plt.xlabel("Current Ratio")
plt.ylabel("Gross Margin")
plt.show()



sns.regplot(data=dataset_tech, x="current_ratio", y="gross_margin")
plt.xlabel("Current Ratio")
plt.ylabel("Gross Margin")
plt.show()

Python으로 재무제표 분석하기