asked 95.8k views
2 votes
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

1 Answer

4 votes

Answer:

Step-by-step explanation:

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

'gender', kind = "count")

answered
User Pete Duncanson
by
8.1k points