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 csv e.g missing values , mapped concepts, and i wish to use pandas for this task
From the command line i am able to do the summary statistics, draw charts, but i am not able to do so in django.
I have checked out djnago-pandas , but this is for interacting with django models , and hence i would have to import csv data into the models to use this.
I am looking for examples where pandas is working within django, and for this method , i was trying to retirve the header and provide it as a list that i can manipulate in my app