veloxx 0.4.0

Veloxx: High-performance, lightweight Rust library for in-memory data processing and analytics. Features DataFrames, Series, advanced I/O (CSV, JSON, Parquet), machine learning (linear regression, K-means, logistic regression), time-series analysis, data visualization, parallel processing, and multi-platform bindings (Python, WebAssembly). Designed for minimal dependencies, optimal memory usage, and blazing speed - ideal for data science, analytics, and performance-critical applications.
Documentation
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
//! Python bindings for Veloxx
//!
//! This module provides Python bindings for all Veloxx functionality,
//! including high-performance SIMD operations and vectorized filtering.

#[cfg(feature = "python")]
use pyo3::prelude::*;

use pyo3::prelude::Bound;
use pyo3::types::{PyDict, PyModule};
#[cfg(feature = "python")]
use pyo3::{pyclass, pymethods, pymodule, wrap_pyfunction, PyErr, PyObject, PyResult, Python};

// /// Python wrapper for GroupedDataFrame operations
// #[cfg(feature = "python")]
// #[pyclass]
// pub struct PyGroupedDataFrame<'a> {
//     pub(crate) inner: GroupedDataFrame<'a>,
// }

#[cfg(feature = "python")]
use crate::{
    conditions::Condition, dataframe::DataFrame, performance::optimized_simd::OptimizedSimdOps,
    performance::ultra_fast_join::UltraFastJoin, series::Series, types::Value,
};

#[cfg(feature = "python")]
use indexmap::IndexMap;

/// Python wrapper for DataType enum
#[cfg(feature = "python")]
#[pyclass]
#[derive(Clone)]
pub enum PyDataType {
    I32,
    F64,
    String,
    Bool,
    DateTime,
}

#[cfg(feature = "python")]
#[pymethods]
impl PyDataType {
    fn __str__(&self) -> String {
        match self {
            PyDataType::I32 => "I32".to_string(),
            PyDataType::F64 => "F64".to_string(),
            PyDataType::String => "String".to_string(),
            PyDataType::Bool => "Bool".to_string(),
            PyDataType::DateTime => "DateTime".to_string(),
        }
    }
}

/// Python wrapper for join types
#[cfg(feature = "python")]
#[pyclass]
#[derive(Clone)]
pub enum PyJoinType {
    Inner,
    Left,
    Right,
    Outer,
}

/// Python wrapper for conditions
#[cfg(feature = "python")]
#[pyclass]
#[derive(Clone)]
pub struct PyCondition {
    pub(crate) inner: Condition,
}

#[cfg(feature = "python")]
#[pymethods]
impl PyCondition {
    #[staticmethod]
    pub fn gt(column: String, value: PyObject) -> PyResult<Self> {
        Python::with_gil(|py| {
            let val = if let Ok(py_value) = value.extract::<PyValue>(py) {
                py_value.inner
            } else if let Ok(v) = value.extract::<i32>(py) {
                Value::I32(v)
            } else if let Ok(v) = value.extract::<f64>(py) {
                Value::F64(v)
            } else if let Ok(v) = value.extract::<String>(py) {
                Value::String(v)
            } else {
                return Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                    "Unsupported value type for condition",
                ));
            };

            Ok(PyCondition {
                inner: Condition::Gt(column, val),
            })
        })
    }

    #[staticmethod]
    pub fn lt(column: String, value: PyObject) -> PyResult<Self> {
        Python::with_gil(|py| {
            let val = if let Ok(py_value) = value.extract::<PyValue>(py) {
                py_value.inner
            } else if let Ok(v) = value.extract::<i32>(py) {
                Value::I32(v)
            } else if let Ok(v) = value.extract::<f64>(py) {
                Value::F64(v)
            } else if let Ok(v) = value.extract::<String>(py) {
                Value::String(v)
            } else {
                return Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                    "Unsupported value type for condition",
                ));
            };

            Ok(PyCondition {
                inner: Condition::Lt(column, val),
            })
        })
    }

    #[staticmethod]
    pub fn eq(column: String, value: PyObject) -> PyResult<Self> {
        Python::with_gil(|py| {
            let val = if let Ok(py_value) = value.extract::<PyValue>(py) {
                py_value.inner
            } else if let Ok(v) = value.extract::<i32>(py) {
                Value::I32(v)
            } else if let Ok(v) = value.extract::<f64>(py) {
                Value::F64(v)
            } else if let Ok(v) = value.extract::<String>(py) {
                Value::String(v)
            } else {
                return Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                    "Unsupported value type for condition",
                ));
            };

            Ok(PyCondition {
                inner: Condition::Eq(column, val),
            })
        })
    }
}

/// Python wrapper for expressions
#[cfg(feature = "python")]
#[pyclass]
#[derive(Clone)]
pub struct PyExpr {
    pub(crate) inner: crate::expressions::Expr,
}

#[cfg(feature = "python")]
#[pymethods]
impl PyExpr {
    #[staticmethod]
    pub fn column(name: String) -> Self {
        PyExpr {
            inner: crate::expressions::Expr::Column(name),
        }
    }

    #[staticmethod]
    pub fn literal(value: PyObject) -> PyResult<Self> {
        Python::with_gil(|py| {
            let val = if let Ok(pyvalue) = value.extract::<PyValue>(py) {
                pyvalue.inner
            } else if let Ok(v) = value.extract::<i32>(py) {
                Value::I32(v)
            } else if let Ok(v) = value.extract::<f64>(py) {
                Value::F64(v)
            } else if let Ok(v) = value.extract::<String>(py) {
                Value::String(v)
            } else if let Ok(v) = value.extract::<bool>(py) {
                Value::Bool(v)
            } else {
                return Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                    "Unsupported literal value type",
                ));
            };

            Ok(PyExpr {
                inner: crate::expressions::Expr::Literal(val),
            })
        })
    }

    pub fn add(&self, other: &PyExpr) -> Self {
        PyExpr {
            inner: crate::expressions::Expr::Add(
                Box::new(self.inner.clone()),
                Box::new(other.inner.clone()),
            ),
        }
    }

    pub fn subtract(&self, other: &PyExpr) -> Self {
        PyExpr {
            inner: crate::expressions::Expr::Subtract(
                Box::new(self.inner.clone()),
                Box::new(other.inner.clone()),
            ),
        }
    }

    pub fn multiply(&self, other: &PyExpr) -> Self {
        PyExpr {
            inner: crate::expressions::Expr::Multiply(
                Box::new(self.inner.clone()),
                Box::new(other.inner.clone()),
            ),
        }
    }

    pub fn divide(&self, other: &PyExpr) -> Self {
        PyExpr {
            inner: crate::expressions::Expr::Divide(
                Box::new(self.inner.clone()),
                Box::new(other.inner.clone()),
            ),
        }
    }

    #[staticmethod]
    pub fn greater_than(left: &PyExpr, right: &PyExpr) -> Self {
        PyExpr {
            inner: crate::expressions::Expr::GreaterThan(
                Box::new(left.inner.clone()),
                Box::new(right.inner.clone()),
            ),
        }
    }

    #[staticmethod]
    pub fn less_than(left: &PyExpr, right: &PyExpr) -> Self {
        PyExpr {
            inner: crate::expressions::Expr::LessThan(
                Box::new(left.inner.clone()),
                Box::new(right.inner.clone()),
            ),
        }
    }

    #[staticmethod]
    pub fn equal(left: &PyExpr, right: &PyExpr) -> Self {
        PyExpr {
            inner: crate::expressions::Expr::Equals(
                Box::new(left.inner.clone()),
                Box::new(right.inner.clone()),
            ),
        }
    }

    #[staticmethod]
    pub fn equals(left: &PyExpr, right: &PyExpr) -> Self {
        // Alias for equal to match test expectations
        Self::equal(left, right)
    }

    #[staticmethod]
    pub fn not_equals(left: &PyExpr, right: &PyExpr) -> Self {
        PyExpr {
            inner: crate::expressions::Expr::NotEquals(
                Box::new(left.inner.clone()),
                Box::new(right.inner.clone()),
            ),
        }
    }

    #[staticmethod]
    pub fn and(left: &PyExpr, right: &PyExpr) -> Self {
        PyExpr {
            inner: crate::expressions::Expr::And(
                Box::new(left.inner.clone()),
                Box::new(right.inner.clone()),
            ),
        }
    }

    #[staticmethod]
    pub fn or(left: &PyExpr, right: &PyExpr) -> Self {
        PyExpr {
            inner: crate::expressions::Expr::Or(
                Box::new(left.inner.clone()),
                Box::new(right.inner.clone()),
            ),
        }
    }

    #[staticmethod]
    pub fn not(expr: &PyExpr) -> Self {
        PyExpr {
            inner: crate::expressions::Expr::Not(Box::new(expr.inner.clone())),
        }
    }

    /// Instance method for greater than comparison
    pub fn gt(&self, other: &PyExpr) -> Self {
        PyExpr {
            inner: crate::expressions::Expr::GreaterThan(
                Box::new(self.inner.clone()),
                Box::new(other.inner.clone()),
            ),
        }
    }

    /// Instance method for less than comparison
    pub fn lt(&self, other: &PyExpr) -> Self {
        PyExpr {
            inner: crate::expressions::Expr::LessThan(
                Box::new(self.inner.clone()),
                Box::new(other.inner.clone()),
            ),
        }
    }

    /// Instance method for greater than or equal comparison
    pub fn gte(&self, other: &PyExpr) -> Self {
        PyExpr {
            inner: crate::expressions::Expr::GreaterThanOrEqual(
                Box::new(self.inner.clone()),
                Box::new(other.inner.clone()),
            ),
        }
    }

    /// Instance method for less than or equal comparison
    pub fn lte(&self, other: &PyExpr) -> Self {
        PyExpr {
            inner: crate::expressions::Expr::LessThanOrEqual(
                Box::new(self.inner.clone()),
                Box::new(other.inner.clone()),
            ),
        }
    }

    /// Instance method for equality comparison
    pub fn eq(&self, other: &PyExpr) -> Self {
        PyExpr {
            inner: crate::expressions::Expr::Equals(
                Box::new(self.inner.clone()),
                Box::new(other.inner.clone()),
            ),
        }
    }

    /// Instance method for not equal comparison
    pub fn ne(&self, other: &PyExpr) -> Self {
        PyExpr {
            inner: crate::expressions::Expr::NotEquals(
                Box::new(self.inner.clone()),
                Box::new(other.inner.clone()),
            ),
        }
    }
}

/// Python wrapper for Value
#[cfg(feature = "python")]
#[pyclass]
#[derive(Clone)]
pub struct PyValue {
    pub(crate) inner: Value,
}

#[cfg(feature = "python")]
#[pymethods]
impl PyValue {
    #[new]
    pub fn new(value: PyObject) -> PyResult<Self> {
        Python::with_gil(|py| {
            let val = if let Ok(v) = value.extract::<i32>(py) {
                Value::I32(v)
            } else if let Ok(v) = value.extract::<f64>(py) {
                Value::F64(v)
            } else if let Ok(v) = value.extract::<String>(py) {
                Value::String(v)
            } else if let Ok(v) = value.extract::<bool>(py) {
                Value::Bool(v)
            } else {
                return Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                    "Unsupported value type",
                ));
            };

            Ok(PyValue { inner: val })
        })
    }

    #[staticmethod]
    pub fn from_i32(value: i32) -> Self {
        PyValue {
            inner: Value::I32(value),
        }
    }

    #[staticmethod]
    pub fn from_f64(value: f64) -> Self {
        PyValue {
            inner: Value::F64(value),
        }
    }

    #[staticmethod]
    pub fn from_string(value: String) -> Self {
        PyValue {
            inner: Value::String(value),
        }
    }

    #[staticmethod]
    pub fn from_bool(value: bool) -> Self {
        PyValue {
            inner: Value::Bool(value),
        }
    }

    #[staticmethod]
    pub fn null() -> Self {
        PyValue { inner: Value::Null }
    }

    /// Get the string representation of the value
    pub fn __str__(&self) -> String {
        format!("{:?}", self.inner)
    }

    /// Get the value type as string
    pub fn get_type(&self) -> String {
        match &self.inner {
            Value::I32(_) => "i32".to_string(),
            Value::F64(_) => "f64".to_string(),
            Value::String(_) => "string".to_string(),
            Value::Bool(_) => "bool".to_string(),
            Value::DateTime(_) => "datetime".to_string(),
            Value::Null => "null".to_string(),
        }
    }
}

/// Python wrapper for GroupedDataFrame
#[cfg(feature = "python")]
/// Python wrapper for GroupedDataFrame operations
#[cfg(feature = "python")]
#[pyclass]
pub struct PyGroupedDataFrame {
    pub(crate) dataframe: PyDataFrame, // Own the dataframe
    pub(crate) group_columns: Vec<String>,
}

#[cfg(feature = "python")]
#[pymethods]
impl PyGroupedDataFrame {
    /// Aggregate operations
    pub fn agg(&self, aggregations: Vec<(String, String)>) -> PyResult<PyDataFrame> {
        // Convert to &str tuples for the core API
        let string_refs: Vec<(&str, &str)> = aggregations
            .iter()
            .map(|(c, a)| (c.as_str(), a.as_str()))
            .collect();

        match self.dataframe.inner.group_by(self.group_columns.clone()) {
            Ok(grouped) => match grouped.agg(string_refs) {
                Ok(result) => Ok(PyDataFrame { inner: result }),
                Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                    e.to_string(),
                )),
            },
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Sum aggregation
    pub fn sum(&self) -> PyResult<PyDataFrame> {
        // Get all numeric columns for sum aggregation
        let column_names = self.dataframe.inner.column_names();
        // Build owned aggregation strings so references remain valid
        let mut sum_aggs_owned: Vec<(String, String)> = Vec::new();

        for col_name in column_names {
            if col_name.as_str() != self.group_columns[0].as_str() {
                // Skip group column
                sum_aggs_owned.push((col_name, "sum".to_string()));
            }
        }

        let sum_refs: Vec<(&str, &str)> = sum_aggs_owned
            .iter()
            .map(|(c, a)| (c.as_str(), a.as_str()))
            .collect();

        match self.dataframe.inner.group_by(self.group_columns.clone()) {
            Ok(grouped) => match grouped.agg(sum_refs) {
                Ok(result) => Ok(PyDataFrame { inner: result }),
                Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                    e.to_string(),
                )),
            },
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Mean aggregation  
    pub fn mean(&self) -> PyResult<PyDataFrame> {
        let column_names = self.dataframe.inner.column_names();
        let mut mean_aggs_owned: Vec<(String, String)> = Vec::new();

        for col_name in column_names {
            if col_name.as_str() != self.group_columns[0].as_str() {
                mean_aggs_owned.push((col_name, "mean".to_string()));
            }
        }

        let mean_refs: Vec<(&str, &str)> = mean_aggs_owned
            .iter()
            .map(|(c, a)| (c.as_str(), a.as_str()))
            .collect();

        match self.dataframe.inner.group_by(self.group_columns.clone()) {
            Ok(grouped) => match grouped.agg(mean_refs) {
                Ok(result) => Ok(PyDataFrame { inner: result }),
                Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                    e.to_string(),
                )),
            },
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Count aggregation
    pub fn count(&self) -> PyResult<PyDataFrame> {
        let column_names = self.dataframe.inner.column_names();
        let mut count_aggs_owned: Vec<(String, String)> = Vec::new();

        for col_name in column_names {
            if col_name.as_str() != self.group_columns[0].as_str() {
                count_aggs_owned.push((col_name, "count".to_string()));
            }
        }

        let count_refs: Vec<(&str, &str)> = count_aggs_owned
            .iter()
            .map(|(c, a)| (c.as_str(), a.as_str()))
            .collect();

        match self.dataframe.inner.group_by(self.group_columns.clone()) {
            Ok(grouped) => match grouped.agg(count_refs) {
                Ok(result) => Ok(PyDataFrame { inner: result }),
                Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                    e.to_string(),
                )),
            },
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Min aggregation
    pub fn min(&self) -> PyResult<PyDataFrame> {
        let column_names = self.dataframe.inner.column_names();
        let mut min_aggs_owned: Vec<(String, String)> = Vec::new();

        for col_name in column_names {
            if col_name.as_str() != self.group_columns[0].as_str() {
                min_aggs_owned.push((col_name, "min".to_string()));
            }
        }

        let min_refs: Vec<(&str, &str)> = min_aggs_owned
            .iter()
            .map(|(c, a)| (c.as_str(), a.as_str()))
            .collect();

        match self.dataframe.inner.group_by(self.group_columns.clone()) {
            Ok(grouped) => match grouped.agg(min_refs) {
                Ok(result) => Ok(PyDataFrame { inner: result }),
                Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                    e.to_string(),
                )),
            },
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Max aggregation
    pub fn max(&self) -> PyResult<PyDataFrame> {
        let column_names = self.dataframe.inner.column_names();
        let mut max_aggs_owned: Vec<(String, String)> = Vec::new();

        for col_name in column_names {
            if col_name.as_str() != self.group_columns[0].as_str() {
                max_aggs_owned.push((col_name, "max".to_string()));
            }
        }

        let max_refs: Vec<(&str, &str)> = max_aggs_owned
            .iter()
            .map(|(c, a)| (c.as_str(), a.as_str()))
            .collect();

        match self.dataframe.inner.group_by(self.group_columns.clone()) {
            Ok(grouped) => match grouped.agg(max_refs) {
                Ok(result) => Ok(PyDataFrame { inner: result }),
                Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                    e.to_string(),
                )),
            },
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }
}

/// Python wrapper for Series with high-performance operations
#[cfg(feature = "python")]
#[pyclass]
#[derive(Clone)]
pub struct PySeries {
    pub(crate) inner: Series,
}

#[cfg(feature = "python")]
#[pymethods]
impl PySeries {
    #[new]
    pub fn new(name: String, data: Vec<Option<PyObject>>) -> PyResult<Self> {
        Python::with_gil(|py| {
            if data.is_empty() {
                return Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                    "Cannot create Series from empty data",
                ));
            }

            // Infer type from first non-null value
            let first_valid = data.iter().find(|x| x.is_some()).and_then(|x| x.as_ref());

            let series = match first_valid {
                Some(obj) if obj.extract::<i32>(py).is_ok() => {
                    let values: Vec<Option<i32>> = data
                        .into_iter()
                        .map(|x| x.and_then(|obj| obj.extract::<i32>(py).ok()))
                        .collect();
                    Series::new_i32(&name, values)
                }
                Some(obj) if obj.extract::<f64>(py).is_ok() => {
                    let values: Vec<Option<f64>> = data
                        .into_iter()
                        .map(|x| x.and_then(|obj| obj.extract::<f64>(py).ok()))
                        .collect();
                    Series::new_f64(&name, values)
                }
                Some(obj) if obj.extract::<String>(py).is_ok() => {
                    let values: Vec<Option<String>> = data
                        .into_iter()
                        .map(|x| x.and_then(|obj| obj.extract::<String>(py).ok()))
                        .collect();
                    Series::new_string(&name, values)
                }
                Some(obj) if obj.extract::<bool>(py).is_ok() => {
                    let values: Vec<Option<bool>> = data
                        .into_iter()
                        .map(|x| x.and_then(|obj| obj.extract::<bool>(py).ok()))
                        .collect();
                    Series::new_bool(&name, values)
                }
                _ => {
                    return Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                        "Unsupported data type or all values are None",
                    ));
                }
            };

            Ok(PySeries { inner: series })
        })
    }

    /// Create a new PySeries (static method for compatibility)
    #[staticmethod]
    pub fn new_static(name: String, data: Vec<Option<PyObject>>) -> PyResult<Self> {
        Self::new(name, data)
    }

    /// Get the name of the series
    pub fn name(&self) -> String {
        self.inner.name().to_string()
    }

    /// Set the name of the series
    pub fn set_name(&mut self, name: String) {
        self.inner.set_name(&name);
    }

    /// Get the length of the series
    pub fn len(&self) -> usize {
        self.inner.len()
    }

    /// Check if the series is empty
    pub fn is_empty(&self) -> bool {
        self.inner.len() == 0
    }

    /// Get the data type as a string
    pub fn data_type(&self) -> String {
        match &self.inner {
            Series::I32(_, _, _) => "I32".to_string(),
            Series::F64(_, _, _) => "F64".to_string(),
            Series::String(_, _, _) => "String".to_string(),
            Series::Bool(_, _, _) => "Bool".to_string(),
            Series::DateTime(_, _, _) => "DateTime".to_string(),
        }
    }

    /// Get a value at the specified index
    #[allow(deprecated)]
    pub fn get_value(&self, index: usize) -> PyResult<Option<PyObject>> {
        Python::with_gil(|py| match self.inner.get_value(index) {
            Some(Value::I32(v)) => Ok(Some(v.into_py(py))),
            Some(Value::F64(v)) => Ok(Some(v.into_py(py))),
            Some(Value::String(v)) => Ok(Some(v.into_py(py))),
            Some(Value::Bool(v)) => Ok(Some(v.into_py(py))),
            Some(Value::DateTime(v)) => Ok(Some(v.into_py(py))),
            Some(Value::Null) => Ok(None),
            None => Ok(None),
        })
    }

    /// Filter the series by indices (high-performance)
    pub fn filter(&self, indices: Vec<usize>) -> PyResult<Self> {
        match self.inner.filter(&indices) {
            Ok(filtered) => Ok(PySeries { inner: filtered }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Count non-null values
    pub fn count(&self) -> usize {
        self.inner.count()
    }

    /// Compute sum using SIMD optimization
    #[allow(deprecated)]
    pub fn sum(&self) -> PyResult<Option<PyObject>> {
        Python::with_gil(|py| match self.inner.sum() {
            Ok(Value::I32(v)) => Ok(Some(v.into_py(py))),
            Ok(Value::F64(v)) => Ok(Some(v.into_py(py))),
            Ok(Value::Null) => Ok(None),
            Ok(_) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                "Sum not supported for this data type",
            )),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        })
    }

    /// Add two series using SIMD optimization
    pub fn add(&self, other: &PySeries) -> PyResult<Self> {
        match self.inner.add(&other.inner) {
            Ok(result) => Ok(PySeries { inner: result }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Multiply two series using SIMD optimization
    pub fn multiply(&self, other: &PySeries) -> PyResult<Self> {
        match self.inner.multiply(&other.inner) {
            Ok(result) => Ok(PySeries { inner: result }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Get mean using optimized computation
    pub fn mean(&self) -> PyResult<Option<f64>> {
        match self.inner.mean() {
            Ok(Value::F64(v)) => Ok(Some(v)),
            Ok(Value::I32(v)) => Ok(Some(v as f64)),
            Ok(Value::Null) => Ok(None),
            Ok(_) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                "Mean not supported for this data type",
            )),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Get median value
    pub fn median(&self) -> PyResult<Option<f64>> {
        match self.inner.median() {
            Ok(Value::F64(v)) => Ok(Some(v)),
            Ok(Value::I32(v)) => Ok(Some(v as f64)),
            Ok(Value::Null) => Ok(None),
            Ok(_) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                "Median not supported for this data type",
            )),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Get minimum value
    #[allow(deprecated)]
    pub fn min(&self) -> PyResult<Option<PyObject>> {
        Python::with_gil(|py| match self.inner.min() {
            Ok(Value::I32(v)) => Ok(Some(v.into_py(py))),
            Ok(Value::F64(v)) => Ok(Some(v.into_py(py))),
            Ok(Value::String(v)) => Ok(Some(v.into_py(py))),
            Ok(Value::Null) => Ok(None),
            Ok(_) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                "Min not supported for this data type",
            )),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        })
    }

    /// Get maximum value
    #[allow(deprecated)]
    pub fn max(&self) -> PyResult<Option<PyObject>> {
        Python::with_gil(|py| match self.inner.max() {
            Ok(Value::I32(v)) => Ok(Some(v.into_py(py))),
            Ok(Value::F64(v)) => Ok(Some(v.into_py(py))),
            Ok(Value::String(v)) => Ok(Some(v.into_py(py))),
            Ok(Value::Null) => Ok(None),
            Ok(_) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                "Max not supported for this data type",
            )),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        })
    }

    /// Get standard deviation
    pub fn std_dev(&self) -> PyResult<Option<f64>> {
        match self.inner.std_dev() {
            Ok(Value::F64(v)) => Ok(Some(v)),
            Ok(Value::I32(v)) => Ok(Some(v as f64)),
            Ok(Value::Null) => Ok(None),
            Ok(_) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                "Standard deviation not supported for this data type",
            )),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Fill null values
    pub fn fill_nulls(&self, value: PyObject) -> PyResult<Self> {
        Python::with_gil(|py| {
            let fill_value = if let Ok(v) = value.extract::<i32>(py) {
                Value::I32(v)
            } else if let Ok(v) = value.extract::<f64>(py) {
                Value::F64(v)
            } else if let Ok(v) = value.extract::<String>(py) {
                Value::String(v)
            } else if let Ok(v) = value.extract::<bool>(py) {
                Value::Bool(v)
            } else {
                return Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                    "Unsupported fill value type",
                ));
            };

            match self.inner.fill_nulls(&fill_value) {
                Ok(result) => Ok(PySeries { inner: result }),
                Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                    e.to_string(),
                )),
            }
        })
    }

    /// Interpolate null values
    pub fn interpolate_nulls(&self) -> PyResult<Self> {
        match self.inner.interpolate_nulls() {
            Ok(result) => Ok(PySeries { inner: result }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Get unique values
    pub fn unique(&self) -> PyResult<Self> {
        match self.inner.unique() {
            Ok(result) => Ok(PySeries { inner: result }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Append another series
    pub fn append(&self, other: &PySeries) -> PyResult<Self> {
        match self.inner.append(&other.inner) {
            Ok(result) => Ok(PySeries { inner: result }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Cast to different data type
    pub fn cast(&self, target_type: PyDataType) -> PyResult<Self> {
        let data_type = match target_type {
            PyDataType::I32 => crate::types::DataType::I32,
            PyDataType::F64 => crate::types::DataType::F64,
            PyDataType::String => crate::types::DataType::String,
            PyDataType::Bool => crate::types::DataType::Bool,
            PyDataType::DateTime => crate::types::DataType::DateTime,
        };

        match self.inner.cast(data_type) {
            Ok(result) => Ok(PySeries { inner: result }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Convert to `Vec<f64>` for numeric series
    pub fn to_vec_f64(&self) -> PyResult<Vec<Option<f64>>> {
        match self.inner.to_vec_f64() {
            Ok(result) => Ok(result.into_iter().map(Some).collect()),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Calculate correlation with another series
    pub fn correlation(&self, other: &PySeries) -> PyResult<f64> {
        match self.inner.correlation(&other.inner) {
            Ok(Some(result)) => Ok(result),
            Ok(None) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                "Unable to compute correlation",
            )),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Calculate covariance with another series
    pub fn covariance(&self, other: &PySeries) -> PyResult<f64> {
        match self.inner.covariance(&other.inner) {
            Ok(Some(result)) => Ok(result),
            Ok(None) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                "Unable to compute covariance",
            )),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }
}

/// Python wrapper for DataFrame operations
#[cfg(feature = "python")]
#[pyclass]
#[derive(Clone)]
pub struct PyDataFrame {
    pub(crate) inner: DataFrame,
}

#[cfg(feature = "python")]
#[pymethods]
impl PyDataFrame {
    #[new]
    pub fn new(_py: Python, columns_dict: &Bound<'_, PyDict>) -> PyResult<Self> {
        let mut df_columns = IndexMap::new();

        for item in columns_dict.iter() {
            let key: String = item.0.extract()?;
            let series: PySeries = item.1.extract()?;
            df_columns.insert(key, series.inner);
        }

        let df = DataFrame::new(df_columns);
        Ok(PyDataFrame { inner: df })
    }

    #[staticmethod]
    pub fn from_dict(_py: Python, data: &Bound<'_, PyDict>) -> PyResult<Self> {
        let mut columns = IndexMap::new();
        for (key, value) in data.iter() {
            let name: String = key.extract()?;
            let series = if let Ok(values) = value.extract::<Vec<i32>>() {
                Series::new_i32(&name, values.into_iter().map(Some).collect())
            } else if let Ok(values) = value.extract::<Vec<f64>>() {
                Series::new_f64(&name, values.into_iter().map(Some).collect())
            } else if let Ok(values) = value.extract::<Vec<String>>() {
                Series::new_string(&name, values.into_iter().map(Some).collect())
            } else if let Ok(values) = value.extract::<Vec<bool>>() {
                Series::new_bool(&name, values.into_iter().map(Some).collect())
            } else {
                return Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(format!(
                    "Unsupported data type for column '{}'",
                    name
                )));
            };
            columns.insert(name, series);
        }

        let df = DataFrame::new(columns);
        Ok(PyDataFrame { inner: df })
    }

    /// Get the number of rows
    pub fn row_count(&self) -> usize {
        self.inner.row_count()
    }

    /// Get the number of columns  
    pub fn column_count(&self) -> usize {
        self.inner.column_count()
    }

    /// Get column names
    pub fn column_names(&self) -> Vec<String> {
        self.inner.column_names()
    }

    /// Get a column as PySeries
    pub fn get_column(&self, name: &str) -> PyResult<PySeries> {
        match self.inner.get_column(name) {
            Some(series) => Ok(PySeries {
                inner: series.clone(),
            }),
            None => Err(PyErr::new::<pyo3::exceptions::PyKeyError, _>(format!(
                "Column '{}' not found",
                name
            ))),
        }
    }

    /// Filter DataFrame using high-performance vectorized operations
    pub fn filter_gt(&self, column: &str, value: PyObject) -> PyResult<Self> {
        Python::with_gil(|py| {
            let condition = if let Ok(val) = value.extract::<i32>(py) {
                Condition::Gt(column.to_string(), Value::I32(val))
            } else if let Ok(val) = value.extract::<f64>(py) {
                Condition::Gt(column.to_string(), Value::F64(val))
            } else {
                return Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                    "Unsupported value type for comparison",
                ));
            };

            match self.inner.filter(&condition) {
                Ok(filtered) => Ok(PyDataFrame { inner: filtered }),
                Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                    e.to_string(),
                )),
            }
        })
    }

    /// Group by operations
    /// Reshape the DataFrame from long to wide format
    pub fn pivot(
        &self,
        values: &str,
        index: Vec<String>,
        columns: &str,
        agg_fn: &str,
    ) -> PyResult<Self> {
        use crate::dataframe::Pivot;
        match self.inner.pivot(values, index, columns, agg_fn) {
            Ok(result) => Ok(PyDataFrame { inner: result }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    pub fn group_by(&self, columns: Vec<String>) -> PyResult<PyGroupedDataFrame> {
        // For now, just return a PyGroupedDataFrame with the same data
        Ok(PyGroupedDataFrame {
            dataframe: self.clone(),
            group_columns: columns,
        })
    }

    /// Aggregate operations (placeholder for group_by results)
    pub fn agg(&self, _aggregations: Vec<(String, String)>) -> PyResult<Self> {
        // For now, just return a copy of self
        Ok(self.clone())
    }

    /// Select columns
    pub fn select(&self, columns: Vec<String>) -> PyResult<Self> {
        match self.inner.select_columns(columns) {
            Ok(selected) => Ok(PyDataFrame { inner: selected }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Select columns (alias for compatibility)
    pub fn select_columns(&self, columns: Vec<String>) -> PyResult<Self> {
        self.select(columns)
    }

    /// Drop columns
    pub fn drop_columns(&self, columns: Vec<String>) -> PyResult<Self> {
        match self.inner.drop_columns(columns) {
            Ok(result) => Ok(PyDataFrame { inner: result }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Rename a column
    pub fn rename_column(&self, old_name: &str, new_name: &str) -> PyResult<Self> {
        match self.inner.rename_column(old_name, new_name) {
            Ok(result) => Ok(PyDataFrame { inner: result }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Drop null values
    pub fn drop_nulls(&self, subset: Option<Vec<String>>) -> PyResult<Self> {
        match self.inner.drop_nulls(subset.as_deref()) {
            Ok(result) => Ok(PyDataFrame { inner: result }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Fill null values
    pub fn fill_nulls(&self, value: PyObject) -> PyResult<Self> {
        Python::with_gil(|py| {
            let fill_value = if let Ok(v) = value.extract::<i32>(py) {
                Value::I32(v)
            } else if let Ok(v) = value.extract::<f64>(py) {
                Value::F64(v)
            } else if let Ok(v) = value.extract::<String>(py) {
                Value::String(v)
            } else if let Ok(v) = value.extract::<bool>(py) {
                Value::Bool(v)
            } else {
                return Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                    "Unsupported fill value type",
                ));
            };

            match self.inner.fill_nulls(fill_value) {
                Ok(result) => Ok(PyDataFrame { inner: result }),
                Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                    e.to_string(),
                )),
            }
        })
    }

    /// Sort by columns
    pub fn sort(&self, by_columns: Vec<String>, ascending: bool) -> PyResult<Self> {
        match self.inner.sort(by_columns, ascending) {
            Ok(result) => Ok(PyDataFrame { inner: result }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Append another DataFrame
    pub fn append(&self, other: &PyDataFrame) -> PyResult<Self> {
        match self.inner.append(&other.inner) {
            Ok(result) => Ok(PyDataFrame { inner: result }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Calculate correlation between two columns
    pub fn correlation(&self, col1: &str, col2: &str) -> PyResult<f64> {
        match self.inner.correlation(col1, col2) {
            Ok(result) => Ok(result),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Calculate covariance between two columns
    pub fn covariance(&self, col1: &str, col2: &str) -> PyResult<f64> {
        match self.inner.covariance(col1, col2) {
            Ok(result) => Ok(result),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Describe the DataFrame (statistical summary)
    pub fn describe(&self) -> PyResult<Self> {
        match self.inner.describe() {
            Ok(result) => Ok(PyDataFrame { inner: result }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Filter with condition or indices
    pub fn filter(&self, filter_param: PyObject) -> PyResult<Self> {
        Python::with_gil(|py| {
            // Try to extract as PyCondition first
            if let Ok(condition) = filter_param.extract::<PyCondition>(py) {
                match self.inner.filter(&condition.inner) {
                    Ok(result) => Ok(PyDataFrame { inner: result }),
                    Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                        e.to_string(),
                    )),
                }
            }
            // Try to extract as Vec<usize> for indices
            else if let Ok(indices) = filter_param.extract::<Vec<usize>>(py) {
                self.filter_by_indices(indices)
            } else {
                Err(PyErr::new::<pyo3::exceptions::PyTypeError, _>(
                    "Filter parameter must be either a PyCondition or a list of indices",
                ))
            }
        })
    }

    /// Filter by row indices
    pub fn filter_by_indices(&self, indices: Vec<usize>) -> PyResult<Self> {
        // Create a new DataFrame with only the specified rows
        let mut new_series = indexmap::IndexMap::new();
        let column_names = self.inner.column_names();

        for column_name in column_names {
            if let Some(series) = self.inner.get_column(&column_name) {
                match series.filter(&indices) {
                    Ok(filtered_series) => {
                        new_series.insert(column_name.clone(), filtered_series);
                    }
                    Err(e) => {
                        return Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                            e.to_string(),
                        ))
                    }
                }
            }
        }

        let df = DataFrame::new(new_series);
        Ok(PyDataFrame { inner: df })
    }

    /// Add a computed column
    pub fn with_column(&self, name: &str, expr: &PyExpr) -> PyResult<Self> {
        match self.inner.with_column(name, &expr.inner) {
            Ok(result) => Ok(PyDataFrame { inner: result }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Export to CSV
    pub fn to_csv(&self, path: &str) -> PyResult<()> {
        match self.inner.to_csv(path) {
            Ok(_) => Ok(()),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyIOError, _>(e.to_string())),
        }
    }

    /// Load from JSON
    #[staticmethod]
    pub fn from_json(path: &str) -> PyResult<Self> {
        match DataFrame::from_json(path) {
            Ok(result) => Ok(PyDataFrame { inner: result }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyIOError, _>(e.to_string())),
        }
    }

    /// Load from CSV
    #[staticmethod]
    pub fn from_csv(path: &str) -> PyResult<Self> {
        match DataFrame::from_csv(path) {
            Ok(result) => Ok(PyDataFrame { inner: result }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyIOError, _>(e.to_string())),
        }
    }

    /// Export to JSON (placeholder - not yet implemented)
    pub fn to_json(&self, _path: &str) -> PyResult<()> {
        Err(PyErr::new::<pyo3::exceptions::PyNotImplementedError, _>(
            "to_json not yet implemented",
        ))
    }

    /// Join with another DataFrame
    pub fn join(
        &self,
        other: &PyDataFrame,
        on_column: &str,
        join_type: &PyJoinType,
    ) -> PyResult<Self> {
        let jt = match join_type {
            PyJoinType::Inner => crate::dataframe::join::JoinType::Inner,
            PyJoinType::Left => crate::dataframe::join::JoinType::Left,
            PyJoinType::Right => crate::dataframe::join::JoinType::Right,
            PyJoinType::Outer => crate::dataframe::join::JoinType::Outer,
        };

        match self.inner.join(&other.inner, on_column, jt) {
            Ok(result) => Ok(PyDataFrame { inner: result }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }

    /// Perform an ultra-fast inner join using SIMD-accelerated operations
    pub fn fast_inner_join(
        &self,
        other: &PyDataFrame,
        left_on: &str,
        right_on: &str,
    ) -> PyResult<Self> {
        match UltraFastJoin::inner_join_i32(&self.inner, &other.inner, left_on, right_on) {
            Ok(result) => Ok(PyDataFrame { inner: result }),
            Err(e) => Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
                e.to_string(),
            )),
        }
    }
}

/// High-performance vectorized operations module for Python
#[cfg(feature = "python")]
#[pyfunction]
pub fn simd_add_f64(a: Vec<f64>, b: Vec<f64>) -> PyResult<Vec<f64>> {
    if a.len() != b.len() {
        return Err(PyErr::new::<pyo3::exceptions::PyValueError, _>(
            "Arrays must have the same length",
        ));
    }

    let mut result = vec![0.0; a.len()];
    a.optimized_simd_add(&b, &mut result);
    Ok(result)
}

/// High-performance vectorized sum for Python
#[cfg(feature = "python")]
#[pyfunction]
pub fn simd_sum_f64(data: Vec<f64>) -> f64 {
    data.optimized_simd_sum()
}

/// Create a DataFrame from CSV with high-performance parsing
#[cfg(feature = "python")]
#[pyfunction]
pub fn read_csv(file_path: String) -> PyResult<PyDataFrame> {
    use crate::io::CsvReader;

    let reader = CsvReader::new();
    match reader.read_file(&file_path) {
        Ok(df) => Ok(PyDataFrame { inner: df }),
        Err(e) => Err(PyErr::new::<pyo3::exceptions::PyIOError, _>(e.to_string())),
    }
}

/// Python module definition
#[cfg(feature = "python")]
#[pymodule]
fn veloxx(m: &Bound<'_, PyModule>) -> PyResult<()> {
    // Core data structures
    m.add_class::<PySeries>()?;
    m.add_class::<PyDataFrame>()?;
    m.add_class::<PyGroupedDataFrame>()?;

    // Helper classes
    m.add_class::<PyDataType>()?;
    m.add_class::<PyJoinType>()?;
    m.add_class::<PyCondition>()?;
    m.add_class::<PyExpr>()?;
    m.add_class::<PyValue>()?;

    // High-performance functions
    m.add_function(wrap_pyfunction!(simd_add_f64, m)?)?;
    m.add_function(wrap_pyfunction!(simd_sum_f64, m)?)?;
    m.add_function(wrap_pyfunction!(read_csv, m)?)?;

    Ok(())
}