Hello,
CSV file A
Date, Place, Level
12/6, A site, 12.435
13/6, A site, 53.454
14/6, A site, 1.545
12/6, B site, 43.456
13/6, B site, 14.542
14/6, B site, 21.512
12/6, C site, 12.212
13/6, C site, 2.321
14/6, C site, 32.514
I have a CSV file like the one above.
I would like output a line chart, with 3 lines, one of A, one for B and one for C
X-axis would be Date, and Y-axis would be Level.
If the CSV file is organized as below, I could generate the chart I want easily
CSV file B
Date, A Site, B Site C Site
12/6, 12.435, 43.456, 12.212
13/6, 53.454, 14.542, 2.321
14/6, 1.545, 21.512, 32.514
Would anyone advise on plotting the graph directly from CSV file A, or a method to convert file A to B?
I am a newbie of Log Parser, just use it for one week
Regards,
Eric