snowflake.snowpark.DataFrame.show¶

DataFrame.show(n: int = 10, max_width: int = 50, *, statement_params: Optional[Dict[str, str]] = None) → None[source]¶

Evaluates this DataFrame and prints out the first n rows with the specified maximum number of characters per column.

Parameters:
  • n – The number of rows to print out.

  • max_width – The maximum number of characters to print out for each column. If the number of characters exceeds the maximum, the method prints out an ellipsis (…) at the end of the column.

  • statement_params – Dictionary of statement level parameters to be set while executing this action.