Pandas Melt is not only one of my favorite function names (makes me think of face melting in India Jones - gross clip), but it's also a crucial data analysis tool.
Pandas pd.melt() will simply turn a wide table, tall. This will 'unpivot' your data so column(s) get enumerated into rows.
I use this function I want to turn pretty data thats easy to read (many columns) into usable data (many rows) that is easier to analyze.
#Pandastutorial #pythonpandas #pandasfunction