Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.

Select random calls to review eliminate bias

tani1901
5 - Atom

Hello everyone, 

I have a list of calls that require reviewers to review. Each month the capability of review is only 10%; hence, I would like to find a way to select the calls to assign to reviewers to prevent bias. So far some agents have been reviewed up to 32 times and some only 1.

 

There are agents in 4 tiers; each tier will have 3-4 teams. 

 

I wish to build a logic so if I set a target of 10 times across the agent then whenever the agent being reviewed it will be recorded and will turn to someone else.

 

Appreciate any help to build the idea, I attach a sample here too.

 

4 REPLIES 4
gawa
16 - Nebula
16 - Nebula

hi @tani1901 If I understand your requirement correctly, you need to:

1) Sample the specified number(10,etc) from agent in the list

2) The same agent should not be repeated in the sample (distinct count of agent shall be equivalent to the number of sample)

 

With the above understanding, I propose method by using Random % Sample tool and Iterative Macro.

In the attached WF, one agent is sampled in each iterative loop, and sampled agent will be removed from the candidate in next loop. This process will continue until the specified number of sample is obtained.

image.png

tani1901
5 - Atom

Hi @gawa, thank you for your quick response. Could you please send me the file with the loop cuz I think it wasn't attached yet.

Much appreciate your help, I will double-check with data and feedback to you on how I develop it further.

gawa
16 - Nebula
16 - Nebula

@tani1901 

I shared WF in yxzp format so it contains the associated iterative macro .yxmc in it. Please download it and try to open it anyway.

 

See here for what is yxzp?

https://help.alteryx.com/current/en/designer/file-types-support/alteryx-file-types.html#idm454367499...

 

Qiu
21 - Polaris
21 - Polaris

@tani1901 
My understanding is that you want to randomly divide the agents into 10 groups so you can interview them fairly?

We can assign a random number to each agent then do a sorting, so we can get a random order of all the agents.

The rest will be easy. 😁

0307-tani1901.png

Labels