Skip to content

Tag: pandas

Map pandas dataframe columns to an array

I have a dataframe like this: And an array like: The first element will be for family_id=0 and column “choice_0” = 52 The second element will be for family_id=1 and column “choice_2” = 82 The third element will be for family_id=2 and column “choice_4” = 27 And I will like t…

putting a pandas dataframe inside a django template

I want to put a pandas dataframe inside a django template. For instance I want something like this: What I have tried are these codes. First in my django views.py, this was my function: The template is: And, the style.css is: Apparently, when I check it in my browser the template is loaded with the CSS code c…