Replies: 3 comments 2 replies
-
Can you share a dataset of industries that have a sex column? :D If —ideally— you could share a notebook with code and data, it would help identify where you're hitting a difficulty. |
Beta Was this translation helpful? Give feedback.
0 replies
-
A leaderboard of wealthy individuals, Sample data, Thanks [ {
"assets": 77.6,
"year": 2023,
"sex": "man",
"name": "Elon Musk",
"rank": 10,
"company": "Tesla",
"industry": "tech",
"id": 152477,
},
...
] |
Beta Was this translation helpful? Give feedback.
0 replies
-
The issue might be that the dodgeX transform applies on one-dimensional data (it derives a channel X from a single channel Y), whereas groupY({x: 'count'}, {y: 'industry'}) creates both X and Y. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to display dots horizontally for each industry, but only for those industries that have a count greater than 2.
I have tried the following code:
I would greatly appreciate any help. Thanks!
Beta Was this translation helpful? Give feedback.
All reactions