max_plot_columns
limit set for the TableReport during report creation.
You can adjust this behavior in several ways:
- To fix it for a single report, change the parameter passed when creating
TableReport(default: 30):report = TableReport(max_plot_columns=50) - To change the default number of columns to be plotted during the current Python session, use
skrub.set_config:from skrub import set_config set_config(max_plot_columns=50) - To make the change permanent, use an environment variable:
export SKB_MAX_PLOT_COLUMNS=50
Note that TableReport accepts two parameters:
- The
max_plot_columnslimits the number of columns that are plotted. - The
max_association_columnslimits the number of columns for which associations should be computed.