2

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.

Adil B
  • 14,635
  • 11
  • 60
  • 78

1 Answers1

0

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

proggeo
  • 609
  • 5
  • 11