1. Learn
  2. /
  3. Courses
  4. /
  5. Introduction to Data Visualization with Julia

Exercise

Smokers by age

In this exercise, your task is to compare the demographics of policyholders based on their age and smoker status. To achieve this, you will generate two histograms representing the ages of smokers and non-smokers. The histograms will be displayed one on top of the other by manipulating the figure layout.

The DataFrames and StatsPlots packages have been imported, and the insurance DataFrame, containing the relevant data, has been loaded for your convenience.

Instructions

100 XP
  • Utilize the DataFrame recipe to create histograms of the :Age column, using data from the insurance DataFrame and grouping them by the :Smoker status.
  • Set the layout argument to display both plots, one above the other.
  • Assign the label "Age" to the x-axis of the bottom histogram only.