Search code examples
dataframepalantir-foundryfield-description

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


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.


Solution

  • 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).