- I have a CSV file containing data for all User interaction with my web app.
- I want to represent this data in teh from of tables(stats) and stats.
- Can anyone suggest me a tool or an API to achieve this?
- A standalone tool or a PHP/JS library would work for me.
user1593979
質問する
329 次
1 に答える
1
For your grids (Tables)
- http://www.datatables.net/index
- List: https://stackoverflow.com/questions/159025/jquery-grid-recommendations
For your charts:
For the stats:
- Use simple math like var1+var2/100
- or more elaborate: https://github.com/jstat/jstat
For the CSV data store:
- Use PHP http://php.net/manual/de/function.fgetcsv.php
- or use javascript to parse it: Javascript code to parse CSV data
于 2012-08-13T19:11:26.373 に答える