I have a "database" which loads in dataframe series, only when they are needed. The user has the option to input user defined functions to create new series within the database.
Before I can use pandas.eval()
on the string, the dataframe needs to be created from the database. Python needs to extract the subjects from the equation below:
MC= ( RR + RR)/4 + @hypot(FL,RL) + @ceil(@log(FR))
The subjects in this equation is RR
, RL
, FL
and FR
NOTE: I'm aware of the eval hatred