Usual disclaimer: I'm very much a novice when it comes to Tableau (and R, which is my preferred data wrangling language).
Here's what I'm trying to do:
I have a dataset which has multiple variables, two of which are "time" and "genre". Here's an example of what the data looks like:
Index Title Date Genre Time
1 Sherlock 01/01/20 Drama 21:00
2 Peaky Blinders 01/01/20 Drama 20:00
3 Eastenders 01/01/20 Drama 19:30
4 BBC News 01/01/20 News 18:30
5 Antiques Roadshow 01/01/20 Factual 18:00
6 Peaky Blinders 02/01/20 Drama 21:00
7 Casualty 02/01/20 Drama 20:00
8 Eastenders 02/01/20 Drama 19:30
9 BBC News 02/01/20 News 18:30
10 Dragons Den 02/01/20 Entertainment 18:00
This is just a very small sample from a very large dataset, but what I'm trying to determine is: what are the most common combination/sequence of genres? For example, in the data above, the most common sequence of three would be "drama + drama + drama". The most common sequence of four would be "news + drama + drama + drama".
My data has thousands of dates (it's the BBC One broadcast schedule in case you were wondering) and I want to find out what the most common combination / sequence of genres are (of at least 3).
I wonder if this is too complex for Tableau and something I would need to do in R instead? Any advice would be most welcome! And as always, I'm happy to elaborate on anything that isn't clear.