Hi, this is probably simple, but hopefully someone will have a quick answer.
Suppose I have a Pandas df and a column df['country']. I want to pass the name of the column to my front end (suppose it's Angular) so that a user can see the name, then pick the column for some action (that will be done in Pandas). However the col name isn't known by the system in advance. What do you think is an elegant way to do that? I guess I can loop through the df.cols and put each one into some UI. When the user takes an action in the UI, capture that event and send a message back that to Pandas to take an action on col 0?
Am I on the right track?