I have this input
enter image description here
and I need to get this output
enter image description here
I’m using pandas library and python, I dont know if is possible or not. Thanks in advance for any idea or examples
pivot_table(values=[‘Description’,’Ticket Number’], index=’Subregion’, columns=[‘Description’,’Ticket Number’], aggfunc=’count’)
Report_new.reset_index(inplace=True)
New contributor
Rachel Ps is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.