dabl.plot.plot_regression_continuous¶Plots for continuous features in regression.
Creates plots of all the continuous features vs the target. Relevant features are determined using F statistics.
Input data including features and target.
Identifier of the target column in X.
Output of detect_types on X. Can be used to avoid recomputing the types.
Alpha values for scatter plots. ‘auto’ is dirty hacks.
Marker size for scatter plots. ‘auto’ is dirty hacks.
Whether to drop outliers (in the target column) when plotting.
Correlation to use for ranking plots, passed to
pd.DataFrame.corrwith.
Valid values are ‘pearson’, ‘kendall’, ‘spearman’.
Whether to add jitter, i.e. apply noise, to ordinal features, to reduce overlap.
Whether to prune highly correlated features from the plot. Set to 0 to disable pruning.
Whether to find categorical features to use as hue in scatter plots.