LambdaConglomerate / x9115lam

2 stars 0 forks source link

Metrics Parser #41

Closed ghost closed 8 years ago

ghost commented 8 years ago

Just pushed a metrics parser script metrics/analyzer/metricparser.py. When you run it, it reads all the files in metrics/out/ and creates a csv version of them to import into Excel/Google Sheets.

aisobran commented 8 years ago

Usually csvs are not put together like this unless this is some excel format. The columns should be model, hypervolume, spread, convergence

ghost commented 8 years ago

I was able to import the csvs into Google Sheets and make a chart. What's the advantage to having everything in columns?

aisobran commented 8 years ago

Generally csvs are in the format I reordered to in the updated google sheet. This makes it easier to import into python using pandas or into R. If this is how you want to handle the data though I don't see a problem with it. But we will have to create graphs by hand instead of scripting it.

ghost commented 8 years ago

I pushed a fix for the parser that outputs in the format you suggested.