EventPercentileTable
@objcMembers
public class EventPercentileTable : NSObject, Codable
Represents data for event counts and speed limit violations per mile. Each value is expressed as a percentile, indicating its relative standing within the dataset.
Percentile: A percentile represents the relative standing of a value in a dataset. For example, if you are at the 70th percentile, it means that 70% of the values in the dataset are below your value, and 30% are above.
-
The hard acceleration count per mile
Declaration
Swift
public let haCountPerMile: [Double]
-
The hard braking count per mile
Declaration
Swift
public let hbCountPerMile: [Double]
-
The speed distance over the speed limit per mile
Declaration
Swift
public let spDistanceOverSpeedLimitPerMile: [Double]
-
Undocumented
Declaration
Swift
public init(haCountPerMile: [Double], hbCountPerMile: [Double], spDistanceOverSpeedLimitPerMile: [Double])