AbstractBiMap

abstract class AbstractBiMap<K : Any, V : Any> : MutableBiMap<K, V>

Inheritors

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
Link copied to clipboard
open override val inverse: MutableBiMap<V, K>
Link copied to clipboard
open override val keys: MutableSet<K>
Link copied to clipboard
open override val size: Int
Link copied to clipboard
open override val values: MutableSet<V>

Functions

Link copied to clipboard

Computes the box plot summaries for the data within the map

Link copied to clipboard
open override fun clear()
Link copied to clipboard

Computes the confidence intervals for the data in the map

Link copied to clipboard
open override fun containsKey(key: K): Boolean
Link copied to clipboard
open override fun containsValue(value: V): Boolean
Link copied to clipboard
fun <K> MutableMap<K, Int>.decrement(key: K): Int

Decrements the element by 1. If the element does not exist in the map, it is added to the map with a value of 1

Link copied to clipboard
open override fun forcePut(key: K, value: V): V?
Link copied to clipboard
open operator override fun get(key: K): V?
Link copied to clipboard
fun <K> MutableMap<K, Int>.increment(key: K): Int

Increments the element by 1. If the element does not exist in the map, it is added to the map with a value of 1

Link copied to clipboard
open override fun isEmpty(): Boolean
Link copied to clipboard

The map of arrays is considered rectangular if all arrays in the map have the same number of elements (same size).

Link copied to clipboard

The size of the array that has maximum size. If empty the array size is 0.

Link copied to clipboard

The size of the array that has the minimum size. If empty the array size is 0.

Link copied to clipboard
open override fun put(key: K, value: V): V?
Link copied to clipboard
open override fun putAll(from: Map<out K, V>)
Link copied to clipboard
open override fun remove(key: K): V?
Link copied to clipboard

Computes the statistical summaries for the data within the map

Link copied to clipboard

Converts the data map to a 2-D array. The values of the map are extracted

Link copied to clipboard
fun Map<String, DoubleArray>.toDataFrame(): AnyFrame

Converts the data stored in each array to columns within a DataFrame, with the column names as the key from the map and the columns holding the data. Each array must have the same size.

Link copied to clipboard
Link copied to clipboard

Converts the inner DoubleArray to List

Link copied to clipboard
fun Map<String, DoubleArray>.toObservationData(tableName: String = "tblObservations", context: String? = null, subject: String? = null): List<ObservationDataDb>

Converts the data map to a long format view of the observations.