Re: how to read and parse the csv files using pandas in django

2019-03-28 Thread Jayram Rawat
can you send the data sheet which you are using in this program. On Thursday, 28 March 2019 17:04:54 UTC+5:30, naga lokesh wrote: > > I have normal python code to plot the graphs for csv data(data > visualisation).But I need code in django and graphs should display on > dashboard... > -- You r

Re: how to read and parse the csv files using pandas in django

2019-03-28 Thread Alison Mukoma
Hi, It seems that to achieve that you need to put up a django project and maybe a seperate app for best practices where you can write that code in views and send your data to templates as context variables then after put up your routing in URLs and you can design your dashboard as you like it. On

how to read and parse the csv files using pandas in django

2019-03-28 Thread naga lokesh
I have normal python code to plot the graphs for csv data(data visualisation).But I need code in django and graphs should display on dashboard... -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

Re: Pandas in Django

2014-03-08 Thread Alex Mandel
There is no reason to think you can't use Pandas or any other python library within Django. In your views.py or in a subfile that it references, import the library you want, manipulate any objects in django or from the filesystem(in this case I assume you've saved the csv somewhere django can see

Re: Pandas in Django

2014-03-08 Thread judy wawira
here is what i am trying to do I have an application that is django driven that allows users to upload a csv file , and map concepts to export to a separate application .. essentially a middleware for data migration I would like to provide users with some summary analysis of their data in cs

Re: Pandas in Django

2014-03-08 Thread Alvin Lindstam
Hello Judy. You could increase the likelihood of a helpful response: -Provide more of the code, such as relevant imports. -Provide the full error report when you get an exception (copy-pasted). -Use the correct channel. It seems that you are using the pandas library and the code you included

Pandas in Django

2014-03-06 Thread judy wawira
Hello I have a CSV file that i wish to manipulate based on user inputs and show this on a Djnago project I dont necessarily wish to save the data in the model Can anyone point me to a direction on how to do this I have tried creating a normal app like below but it says listmethod not found