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で学ぶ財務諸表分析