Analyzing Financial Statements in Python
Rohan Chatterjee
Risk Modeler
Metric of how a company can generate profits from its revenue
Some efficiency ratios are also profitability ratios:
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()
Analyzing Financial Statements in Python