pub fn change_frequency_analysis(numeric_dates: &[Vec<i32>]) -> Option<bool>Expand description
Takes an array of numeric dates and tries to understand if the days come before the month or the other way around by looking at which number changes more frequently.
Output is true if days are first, false if they are second, or None if
it failed to understand the order.