trait StatsTileCollectionMethods[K] extends MethodExtensions[Seq[(K, Tile)]]
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- StatsTileCollectionMethods
- MethodExtensions
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Abstract Value Members
-
abstract
def
self: Seq[(K, Tile)]
- Definition Classes
- MethodExtensions
Concrete Value Members
- def averageByKey(): Seq[(K, Tile)]
- def classBreaks(numBreaks: Int): Array[Int]
- def classBreaksDouble(numBreaks: Int): Array[Double]
-
def
classBreaksExactInt(numBreaks: Int): Array[Int]
Gives class breaks using a histogram that uses exact counts of integer values.
Gives class breaks using a histogram that uses exact counts of integer values.
- Note
This cannot handle counts that are larger than Int.MaxValue, and should not be used with very large datasets whose counts will overflow. These histograms can get very large with a wide range of values.
- def histogram(numBuckets: Int): Histogram[Double]
- def histogram(): Histogram[Double]
-
def
histogramExactInt: Histogram[Int]
Gives a histogram that uses exact counts of integer values.
Gives a histogram that uses exact counts of integer values.
- Note
This cannot handle counts that are larger than Int.MaxValue, and should not be used with very large datasets whose counts will overflow. These histograms can get very large with a wide range of values.
- def minMax: (Int, Int)
- def minMaxDouble: (Double, Double)