I have some raw data in the following format where record delimiter is ~ and element delimiter is |.
date|o|h|l|c|e|f~07-12-2012 09:15|5934.0000|5945.5000|5934.0000|5938.6500|1749606|1749606~07-12-2012 09:16|5939.1000|5941.8000|5936.3500|5941.8000|1064557|2814163
Now I want to parse this data into a pandas data frame, but I guess the format that pandas data frame understands is key - column . So basically i am able to parse this data into three rows using split('~')
date|o|h|l|c|e|f
07-12-2012 09:15|5934.0000|5945.5000|5934.0000|5938.6500|1749606|1749606
07-12-2012 09:16|5939.1000|5941.8000|5936.3500|5941.8000|1064557|2814163
But is there a api using which I can split it on a basis of column so something like as shown below,or is there a api in pandas which I can use directly to feed my data
date - 07-12-2012 09:15,07-12-2012 09:16
o - 5934.0000,5939.1000
h ..... etc
l
c
e
f