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

User Lifeisfoo
by
7.6k points

1 Answer

4 votes

Answer:

Step-by-step explanation:

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

'gender', kind = "count")

User Pete Duncanson
by
8.2k points