I've some date values which get automatically format when I pass that through dataiku dataset. I don't want to format those dates. I just want them in the same format in which they are before formatting.
Before formatting
After formatting
---- UPDATE ----
I've fixed this by setting the datatype of each column in dataframe using astype()
methode.
Example:
bucketOutput_df = bucketOutput_df.astype({"bucketStatusDate": str, "bucketSpudDate": str})