I have csv data that looks like this:
1471361094509,doorLowerPosition,-73.3348875
1471361094509,doorUpperPosition,-3.29595
1471361094512,sectionLowerCurrFiltered,-0.2
1471361094512,actuatorLowerFrontDuty,0.0
1471361094515,doorCtrlStatus,5.0
1471361094515,SMState,14.0
1471361094516,lateralAccel,25.55
1471361094516,longitudinalAccel,25.55
1471361094519,ambientTemperature,23.5
Which I would like to import into a DataFrame with the the leftmost value being the index, the middle a column identifier and the rightmost, the value for the column at that index.
Previously I was separating these and importing them manually, then joining into a single frame. I wonder if there is quicker way to do it in one step.