You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I calling following user defined functions from parser. def conditional_res(formula,res1,res2): res = pd.Series() res = np.where(formula,res1,res2) return res df['check']=parser.parse("conditional_res(Col1==Col2,'Yes','No')").evaluate(dct)
Above code works fine with String and Number types but date type. Is there a way to add support for Date comparison?
The text was updated successfully, but these errors were encountered:
I calling following user defined functions from parser.
def conditional_res(formula,res1,res2): res = pd.Series() res = np.where(formula,res1,res2) return res df['check']=parser.parse("conditional_res(Col1==Col2,'Yes','No')").evaluate(dct)
Above code works fine with String and Number types but date type. Is there a way to add support for Date comparison?
The text was updated successfully, but these errors were encountered: