Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
plese refer python code here
lsa=["esis","dega"] #sometimes lsa will be "NaN", "","NA"
if lsa not in ["NaN","NA",""]:
df=df[df['column_name'].isin([lsa])
else:
do nothing
could you please convert the same using dataiku formulas
Hi @degananda264,
You can do a filter rows with a simple formula such as the one shown below.
Your formula would look something like Isa == "Nan" || Isa == "Na" || Isa == ""
Please let me know if this does not work for you.
Thanks!
Jordan