
Example
1
Load long-format data
Start with some Yahoo Finance data. The tickers (Apple, Microsoft, Google and so on) are values inside a single 
Ticker column. Suppose you need them side by side as columns, and only want the closing price rather than open-high-low-close.
2
Add the Long to Wide (Unstack) step

3
Review the result
Each ticker now has its own column.

Reversing it
To go back the other way, use Melt (Wide to Long).Next steps
Melt (Wide to Long)
The inverse operation.
Merge branches
Join the reshaped data with another dataset.