A comma-separated value (CSV) file has four fields labeled name, birth year, gender, and graduation year. What line of code would be appropriate to visualize counts of gender by birthYear with each gender having its own color?(1 point)

Responses

catplot(x = 'birthYear',col = "gender", data = data, hue = 'gender', kind = "count")
catplot(x = 'birthYear',col = "gender", data = data, hue = 'gender', kind = "count")

catplot(x = 'birthYear',col = "gender", data = data, hue = 'birthYear', kind = "count")
catplot(x = 'birthYear',col = "gender", data = data, hue = 'birthYear', kind = "count")

catplot(x = 'gender',col = "birthYear", data = data, hue = 'birthYear', kind = "count")
catplot(x = 'gender',col = "birthYear", data = data, hue = 'birthYear', kind = "count")

catplot(x = 'gender',col = "birthYear", data = data, hue = 'gender', kind = "count")

1 answer

To visualize counts of gender by birth year, with each gender having its own color, the appropriate line of code from the provided options would be:

catplot(x = 'birthYear', col = "gender", data = data, hue = 'gender', kind = "count")

This code specifies that the x-axis should represent 'birthYear', and it uses the hue parameter to differentiate counts based on 'gender', allowing for distinct colors for each gender.