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

Exercise

Upcharging older smokers

In this exercise, your objective is to examine how age and smoker status influence the cost of insurance premium charges. To achieve this, you will create a scatter plot that showcases insurance charges against age, grouped by smoker status. The DataFrame recipe will be employed to facilitate this process.

You can leverage the pre-loaded insurance DataFrame, which contains the requisite data for the analysis. The DataFrames and StatsPlots packages have been imported.

Instructions

100 XP
  • Utilize the recipe to create a scatter plot of the insurance DataFrame.
  • Plot the :Charges (y-axis) versus :Age (x-axis) grouping by the :Smoker column.
  • Customize the plot by setting the markershape to :rect, the markersize to 5, and using marker colors :lightseagreen and :crimson.