object Stats extends Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Stats
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
-
final
case class
Counts
(min: Double, max: Double, sum: Double, sqrdif: Double, num: Long, pool: Int) extends Product with Serializable
Statistics for a given variable or sub-set of a variable.
Statistics for a given variable or sub-set of a variable.
Mean and standard deviation are provided on the fly by methods
meanandstddev. Multiple counts can be combined using thecombineWithmethod.- min
the minimum value of the (non-NaN) data points
- max
the maximum value of the data points
- sum
the sum across all data points
- sqrdif
the sum of the squares of the differences between the data points and their mean
- num
the number of (non-NaN) data points accounted for
- pool
the number of counts which have been combined in this count (1 for a single count). this is needed for the pooled standard deviation
- final case class Variable (name: String, total: Counts, slices: Map[String, Vec[Counts]]) extends Product with Serializable
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- def cacheDir: File
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- implicit def executionContext: ExecutionContext
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
- def get(doc: NetcdfFile)(implicit tx: InTxn): Future[Stats]
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- object Counts extends Serializable
- implicit object Serializer extends ImmutableSerializer[Stats]
- object Variable extends Serializable