hwo to see the full row in pandas code example
Example 1: how to view the complete data frame in pandas
pd.set_option("display.max_rows", None, "display.max_columns", None)
Example 2: display full dataframe pandas
pd.set_option('display.max_rows', None, 'display.max_columns', None)