This is a rough implementation of python's list/array in C. It's able to take in 5 types of data: 1. INTs (int32_t) 2. DOUBLEs / FLOATs 3. CHAR's 4. STRINGs (char*) 5. BOOLs This is a continuation ...
In [28]: pa.array([np.array([[1, 2], [3, 4]])], type=pa.list_(pa.list_(pa.int64()))) ... ArrowInvalid: Can only convert 1-dimensional array values So to create a ...