I have a csv file which looks like this-
I've read it and stored it in a dataframe as follows:
query_df=spark.read.csv('./rules/rules.csv',header=True)
query_df.show(truncate=False)
However when I view this dataframe using the .show() method above, a part of the last value under the 'Query' column is getting omitted:
Note that the rounding to 2 decimal places and 'form {table}' of the original string is omitted. Any idea why this is happening?