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.
本练习是课程的一部分
Introduction to Data Visualization with Julia
练习说明
- Import the necessary package that defines the DataFrame plotting recipe.
- Use the recipe to create a scatter plot using data in the
insuranceDataFrame. - Pass the
:BMI,:Charges, and:Smokercolumns as arguments in the appropriate positions.
交互式实操练习
通过完成这段示例代码来试试这个练习。
# Import the necessary package
using ____
# Use recipe
____ ____ ____(
# Pass columns
:____,
:____,
group=:____,
legendtitle="Smoker")
xlabel!("Body Mass Index (BMI)")
ylabel!("Insurance Premium (USD)")