gpt4 book ai didi

rust - 数据融合中的索引

转载 作者:行者123 更新时间:2023-12-04 13:07:34 25 4
gpt4 key购买 nike

上下文:我正在使用 datafusion为 csv 文件输入构建数据验证器。

需求:我想在输出报告中添加错误发生的行号。在 Pandas 中,我有能力添加可用于此目的的行索引。有没有办法在数据融合中实现类似的结果。

最佳答案

在打开 CSV 文件后,似乎没有任何简单的方法可以在数据融合中执行此操作。但您可以直接使用 arrow 打开 CSV 文件。 ,生成一个包含索引列的新 RecordBatch,然后使用 MemTable 将其提供给数据融合。这是假设我们只处理一批的例子......

use datafusion::prelude::*;
use datafusion::datasource::MemTable;
use arrow::util::pretty::print_batches;
use arrow::record_batch::RecordBatch;
use arrow::array::{UInt32Array, Int64Array};
use arrow::datatypes::{Schema, Field, DataType};
use arrow::csv;

use std::fs::File;
use std::sync::Arc;

#[tokio::main]
async fn main() -> datafusion::error::Result<()> {


let schema = Schema::new(vec![
Field::new("a", DataType::Int64, false),
Field::new("b", DataType::Int64, false),
]);

let file = File::open("tests/example.csv")?;

let mut csv = csv::Reader::new(file, Arc::new(schema), true, None, 1024, None, None);
let batch = csv.next().unwrap()?;

let length = batch.num_rows() as u32;
let idx_array = UInt32Array::from((0..length).collect::<Vec<u32>>());
let a_array = Int64Array::from(batch.column(0).as_any().downcast_ref::<Int64Array>().unwrap().values().to_vec());
let b_array = Int64Array::from(batch.column(1).as_any().downcast_ref::<Int64Array>().unwrap().values().to_vec());
let new_schema = Schema::new(vec![
Field::new("idx", DataType::UInt32, true),
Field::new("a", DataType::Int64, false),
Field::new("b", DataType::Int64, false),
]);

let new_batch = RecordBatch::try_new(Arc::new(new_schema),
vec![Arc::new(idx_array), Arc::new(a_array), Arc::new(b_array)])?;
let mem_table = MemTable::try_new(new_batch.schema(), vec![vec![new_batch]])?;

let mut ctx = ExecutionContext::new();

// create the dataframe
let df = ctx.read_table(Arc::new(mem_table))?;

let results = df.collect().await?;

print_batches(&results).unwrap();

// do whatever you need to do
// do whatever you need to do
// do whatever you need to do

Ok(())
}

我的example.csv 看起来像这样......

a,b
1,2
1,3
4,2
2,6
3,7

输出应该是...

+-----+---+---+
| idx | a | b |
+-----+---+---+
| 0 | 1 | 2 |
| 1 | 1 | 3 |
| 2 | 4 | 2 |
| 3 | 2 | 6 |
| 4 | 3 | 7 |
+-----+---+---+

不过,如果你真的只是在寻找一个像 python 中的 pandas 这样的功能的箱子,我会敦促你结帐 polars .

关于rust - 数据融合中的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68692580/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com