Practice making heat maps
Heat maps are a great way to visualize correlations between various financial ratios. They can be used to see which ratios correlate strongly with profitability ratios and thus aid us in deciding which companies to invest in.
In this exercise, you'll practice making heat maps. A pandas DataFrame merged_dat
has been loaded for you with some ratios already computed. pandas and Seaborn have been loaded with the aliases pd
and sns
.
Diese Übung ist Teil des Kurses
Analyzing Financial Statements in Python
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Make the correlation matrix
corr_mat = merged_dat[["Gross Margin", "Operating Margin", "Debt-to-equity",
"Equity Multiplier", "Current Ratio"]]____