LoslegenKostenlos loslegen

Preparing data for a facet grid plot

In this exercise, you will prepare the data to make this plot: This plot shows the gross margin of tech companies, FMCG companies, the average tech company, and the average FMCG companies over many years. In the next exercise, you'll practice making the plot. This is a neat plot to observe:

  • The gross margin of tech companies is more spread out than those of FMCG companies
  • Year by year, how profitable a company is compared to the average company in its industry.

pandas is loaded with the alias pd and seaborn is loaded with the alias sns. A pandas DataFrame dataset is loaded for you which already has a gross_margin column computed.

Diese Übung ist Teil des Kurses

Analyzing Financial Statements in Python

Kurs anzeigen

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Subset tech and fmcg companies
subset_dat = dataset.loc[____]
Code bearbeiten und ausführen