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?
Using the code:
from tabulate import tabulateimport pandas as pddf = pd.DataFrame({"VALUE":["NAN"]})print(tabulate(df, , headers="keys"))Output:
VALUE0 nanSeems that is applied to the string values a to_lower()
There's a way to avoid this?