1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
use crate::prelude::*;
use arrow::array::DictionaryArray;
use arrow::compute::cast::cast;
mod builder;
mod merge;
pub use builder::*;
use std::ops::{Deref, DerefMut};
impl From<&CategoricalChunked> for DictionaryArray<u32> {
fn from(ca: &CategoricalChunked) -> Self {
let ca = ca.rechunk();
let keys = ca.downcast_iter().next().unwrap();
let map = &**ca.categorical_map.as_ref().unwrap();
match map {
RevMapping::Local(arr) => {
DictionaryArray::from_data(keys.clone(), Arc::new(arr.clone()))
}
RevMapping::Global(reverse_map, values, _uuid) => {
let iter = keys
.into_iter()
.map(|opt_k| opt_k.map(|k| *reverse_map.get(k).unwrap()));
let keys = PrimitiveArray::from_trusted_len_iter(iter);
DictionaryArray::from_data(keys, Arc::new(values.clone()))
}
}
}
}
impl From<&CategoricalChunked> for DictionaryArray<i64> {
fn from(ca: &CategoricalChunked) -> Self {
let ca = ca.rechunk();
let keys = ca.downcast_iter().next().unwrap();
let map = &**ca.categorical_map.as_ref().unwrap();
match map {
RevMapping::Local(arr) => DictionaryArray::from_data(
cast(keys, &ArrowDataType::Int64)
.unwrap()
.as_any()
.downcast_ref::<PrimitiveArray<i64>>()
.unwrap()
.clone(),
Arc::new(arr.clone()),
),
RevMapping::Global(reverse_map, values, _uuid) => {
let iter = keys
.into_iter()
.map(|opt_k| opt_k.map(|k| *reverse_map.get(k).unwrap() as i64));
let keys = PrimitiveArray::from_trusted_len_iter(iter);
DictionaryArray::from_data(keys, Arc::new(values.clone()))
}
}
}
}
impl CategoricalChunked {
pub fn get_categorical_map(&self) -> Option<&Arc<RevMapping>> {
self.categorical_map.as_ref()
}
pub(crate) fn set_categorical_map(&mut self, categorical_map: Arc<RevMapping>) {
self.categorical_map = Some(categorical_map)
}
pub(crate) fn set_state<T>(mut self, other: &ChunkedArray<T>) -> Self {
self.categorical_map = other.categorical_map.clone();
self
}
}
impl Deref for CategoricalChunked {
type Target = UInt32Chunked;
fn deref(&self) -> &Self::Target {
let ptr = self as *const CategoricalChunked;
let ptr = ptr as *const UInt32Chunked;
unsafe { &*ptr }
}
}
impl DerefMut for CategoricalChunked {
fn deref_mut(&mut self) -> &mut Self::Target {
let ptr = self as *mut CategoricalChunked;
let ptr = ptr as *mut UInt32Chunked;
unsafe { &mut *ptr }
}
}
impl From<UInt32Chunked> for CategoricalChunked {
fn from(ca: UInt32Chunked) -> Self {
ca.cast(&DataType::Categorical)
.unwrap()
.categorical()
.unwrap()
.clone()
}
}
#[cfg(test)]
mod test {
use super::*;
use crate::{reset_string_cache, toggle_string_cache, SINGLE_LOCK};
use std::convert::TryFrom;
#[test]
fn test_categorical_round_trip() -> Result<()> {
let _lock = SINGLE_LOCK.lock();
reset_string_cache();
let slice = &[
Some("foo"),
None,
Some("bar"),
Some("foo"),
Some("foo"),
Some("bar"),
];
let ca = Utf8Chunked::new_from_opt_slice("a", slice);
let ca = ca.cast(&DataType::Categorical)?;
let ca = ca.categorical().unwrap();
let arr: DictionaryArray<u32> = (ca).into();
let s = Series::try_from(("foo", Arc::new(arr) as ArrayRef))?;
assert_eq!(s.dtype(), &DataType::Categorical);
assert_eq!(s.null_count(), 1);
assert_eq!(s.len(), 6);
Ok(())
}
#[test]
fn test_append_categorical() {
let _lock = SINGLE_LOCK.lock();
reset_string_cache();
toggle_string_cache(true);
let mut s1 = Series::new("1", vec!["a", "b", "c"])
.cast(&DataType::Categorical)
.unwrap();
let s2 = Series::new("2", vec!["a", "x", "y"])
.cast(&DataType::Categorical)
.unwrap();
let appended = s1.append(&s2).unwrap();
assert_eq!(appended.str_value(0), "\"a\"");
assert_eq!(appended.str_value(1), "\"b\"");
assert_eq!(appended.str_value(4), "\"x\"");
assert_eq!(appended.str_value(5), "\"y\"");
}
}