开始使用免费开始使用

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.

本练习是课程的一部分

Introduction to Data Visualization with Julia

查看课程

练习说明

  • 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.

交互式实操练习

通过完成这段示例代码来试试这个练习。

# Create histograms
____ ____ histogram(
	:____,
    group=:____,
    color=[:mediumorchid :seagreen],
    legend_title="Smoker",
    legend_position=:outertopright,
    # Set layout
    layout=____,
    # Label x-axes
    xlabel=[____ ____]
)
ylims!(0, 120)
ylabel!("Frequency")
编辑并运行代码