Python में Financial Statements का विश्लेषण
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 में Financial Statements का विश्लेषण