summary method for class 'tune_deconv'.
# S3 method for tune_deconv
summary(
object,
metric = attr(object, "metric"),
method = attr(object, "method"),
...
)If method = "top" prints the row representing the best tuning of
parameters (maximum mean R squared, averaged across subclasses). For method
= "overall", the average effect of varying each parameter is calculated by
mean R-squared across the rest of the grid and the best value for each
parameter is printed. Invisibly returns a dataframe of mean metric values
(Pearson r^2, R^2, RMSE) averaged over subclasses.
dataframe of class 'tune_deconv'.
Specifies tuning metric to choose optimal tune: either "RMSE", "Rsq" or "pearson".
Either "top" or "overall". Determines how best parameter values are chosen. With "top" the single top configuration is chosen. With "overall", the average effect of varying each parameter is calculated using the mean R-squared across all variations of other parameters. This can give a more stable choice of final tuning.
further arguments passed to other methods.