# Define the list of variables
variables = ['f_exec_a', 'f_exec_e', 'f_exec_o', 'f_exec_dm', 'f_exec_c', 'f_exec_pb', 'fe_score']
# Generate the descriptive table
table = TableOne(df_fe,
columns=variables,
min_max=variables,
continuous=variables,
display_all=True,
missing=False)
# Print the table
print(table.tabulate(tablefmt="rounded_outline"))
I'm using TableOne in Python 3.11.9
This code below is not presenting the SD of each variable. Is it possible to have both SD and range ?
Thanks.