Re: Python3, column names from array - numpy or pandas
Thank you for the reply. I tried that, I am trying to do this. The context is I am trying to find mapk ( k = 3 ) for this list. A, B , C, D and E are product names. If I am trying manually I will do something like this. TRUTH = [[A], [B,C], [A], [D,E]] and if my prediction is : PRED=[[B,A, D],
Python3, column names from array - numpy or pandas
I have a dataset in the below format. id A B C D E 100 1 0 0 0 0 101 0 1 1 0 0 102 1 0 0 0 0 103 0 0 0 1 1 I would like to convert this into below: 100, A 1