In a dataframe I want to check for the specific value/'s in the current row and if the value exits i want to get the column name in which the value exists in the partiular row for example:
Resource Team Mon Tue Wed Thu Fri
19 Name1 Dev S S L L S
11 Name2 QA L W S L S
i want the output data in a new column to the existing framework. please advise how can i achieve this.
EXPECTED OUTPUT:
Resource OUTPUT
19 Name1 (S present in Mon,Tue,Fri L present in Wed, Thu)
11 Name2 (S present in Wed,Fri L present in Mon,Thu)