Developing and Analyzing Visualization Quick Check
A comma-separated value (CSV) file has four fields labeled name, birth year, gender, an
graduation year. What line of code would be appropriate to visualize counts of gender by
birth Year with each gender having its own color? (1 point)
O
catplot (x = 'gender', col = "birthYear", data = data, hue =
kind "count")
O
catplot (x = 'gender', col = "birthYear", data = data, hue =
'birthYear', kind = "count")
O
catplot (x = 'birthYear', col = "gender" data = data, hue =
kind = "count")
'gender
catplot (x = 'birthYear', col = "gender", data = data, hue =
'birthYear', kind = "count")
gende

Q&A Education