pub type DataFrame<K> = HashMap<K, Column>;

Aliased Type§

struct DataFrame<K> {
    base: HashMap<K, Column, RandomState>,
}

Fields§

§base: HashMap<K, Column, RandomState>