Using the code: `from tabulate import tabulate` `import pandas as pd` `df = pd.DataFrame({"VALUE":["NAN"]})` `print(tabulate(df, , headers="keys"))` Output: ` VALUE` ` 0 nan` Seems that is applied to the string values a to_lower() There's a way to avoid this?