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

Exercise

Upcharging heavier smokers

In this exercise, you will investigate how smoker status and BMI affect the cost of insurance premium charges. You will accomplish this by creating a scatter plot that displays insurance charges against BMI, grouped by smoker status. You will utilize the DataFrame recipe we discussed in the video to achieve this.

The insurance DataFrame has already been loaded for you, providing the necessary data for the analysis. The DataFrames package has been imported.

Instructions

100 XP
  • Import the necessary package that defines the DataFrame plotting recipe.
  • Use the recipe to create a scatter plot using data in the insurance DataFrame.
  • Pass the :BMI, :Charges, and :Smoker columns as arguments in the appropriate positions.