This method is a specific implementation of the 'fun_stats' function for numeric vectors. It efficiently calculates and returns summary statistics including the minimum, maximum, mean, and median, excluding NA values.
# S4 method for numeric
fun_stats(x)
A list with components min, max, mean, and median.
Numeric vector for which summary statistics are computed.