Comece agoraComece grátis

Music effects on depression

In this exercise, your task is to create a density plot that illustrates the impact of music on the depression levels of survey respondents. You will visualize the results by grouping them into categories: those who claim music helps, those who report no effect, and those who claim it worsens their condition.

The Plots package has already been loaded for you, and the streaming DataFrame is readily available.

Este exercicio faz parte do curso

Introduction to Data Visualization with Julia

Ver curso

Instruções do exercicio

  • Customize the density plot setting the line width to be 4 and the line styles to :solid, :dash, and :dot in that order.
  • Give the legend the title "Music effect" and position it on the :bottom.
  • Limit the x-axis values to range from 0 to 10.

exercicio interativo prático

Tente este exercicio completando este código de exemplo.

theme(:ggplot2)

density(streaming.Depression,
    group=streaming.Music_effects,
    # Set line attributes
    linewidth=____,
    linestyle=[:____ :____ :____],
    # Customize the legend
    ____=____,
    ____=:bottom)
title!("Effect of Music on Depression")
xlabel!("Depression Level")
ylabel!("Probability")
# x-axis bounds
____(____)
Editar e Executar Código