Re: Analysis of csv data

2014-04-14 Thread Saransh Mehta
Thank you.! On Thursday, April 10, 2014 4:13:26 PM UTC+5:30, Saransh Mehta wrote: > > I need to analyze the incoming data from the csv file and present it to > the user in the best possible way? > What tools do i need to use for analyzing the csv and drawing graphs etc > out of the csv? > -- Y

Re: Analysis of csv data

2014-04-10 Thread Petite Abeille
On Apr 10, 2014, at 8:20 PM, Saransh Mehta wrote: > What should i use to interpret the data from the csv and do the best analysis > possible from such a data(marks of the students in this example). Sometime/most of the time/all the time... what's most important is the data itself. Try naked

Re: Analysis of csv data

2014-04-10 Thread Petite Abeille
On Apr 10, 2014, at 12:54 PM, Jay Parikh wrote: > you could use d3.js for drawing data driven graphs Totally. JSON'ize your CSV appropriately and create, say, a cool Radial Reingold-Tilford Tree: http://bl.ocks.org/mbostock/4063550 Don't forget to add some uber-cool animations: http://mbo

Re: Analysis of csv data

2014-04-10 Thread Saransh Mehta
There are two entities, one that enters the data, say for example marks of some students. Now i'm able to generate the csv of the entered data and i want to present the data in graphical form or anything appealing to the other entity. What should i use to interpret the data from the csv and do

Re: Analysis of csv data

2014-04-10 Thread Pedro
Can you define what kind of analysis you want to do? May we supose you know how to load csv data into memory? Pedro Alves Em 10/04/2014 07:43, "Saransh Mehta" escreveu: > I need to analyze the incoming data from the csv file and present it to > the user in the best possible way? > What tools do

Re: Analysis of csv data

2014-04-10 Thread Julien GODIN
I would say a good ol' mycsvdata.split(",") on each line of your CSV and then put all this in a table. J On 04/10/2014 12:43 PM, Saransh Mehta wrote: > I need to analyze the incoming data from the csv file and present it > to the user in the best possible way? > What tools do i need to use for

Re: Analysis of csv data

2014-04-10 Thread Timothy W. Cook
Uh, R ??? http://cran.r-project.org/doc/manuals/R-intro.html On Thu, Apr 10, 2014 at 7:43 AM, Saransh Mehta wrote: > I need to analyze the incoming data from the csv file and present it to > the user in the best possible way? > What tools do i need to use for analyzing the csv and drawin

Re: Analysis of csv data

2014-04-10 Thread Jay Parikh
Hi Saransh, Well for just analyzing csv files you can use simple python file io but in order to do more from those extracted data then you could use d3.js for drawing data driven graphs. Could you please provide what kind of csv data you have then probably it would be easy to sort it out. Best, J

Analysis of csv data

2014-04-10 Thread Saransh Mehta
I need to analyze the incoming data from the csv file and present it to the user in the best possible way? What tools do i need to use for analyzing the csv and drawing graphs etc out of the csv? -- You received this message because you are subscribed to the Google Groups "Django users" group.