PALANTIR-FOUNDRY: How can I add a description for a dataframe in a transform?

199 Views Asked by At

I am producing a dataframe through a transform. In that transform I am able to add Column description the usual way:

out_all.write_dataframe(df, column_descriptions=mycols_dictionary)   

My question is, can I add a dataframe description in a similar way?

Thank u in advance.

1

There are 1 best solutions below

1
On BEST ANSWER

There's no way to do it from transforms at the moment. Unlike column descriptions, dataset description is not branchable, meaning the description remains the same across branches (just like dataset name).