I have a timeseries dataset which has two columns. the first column is timestamp and the second is the data. The timestamp is ordered by minutes and covers the entire year.
Timestamp Data
1/1/2017 0:00 50
1/1/2017 0:01 80
...
12/31/2017 23:59 100
So now I would like the dataset to be rearranged to a table that each column stands for different days, but rows still stand for data for each minute. The new dataset will be like
1/1 1/2 1/3 ....... 12/31
0:00 50 60 34 ....... 67
0:01 34 211 90 ....... 90
...
23:59
So is there a way to do this fast?