有没有办法从Vec创建一个 rust 极系列< u8>?

fcg9iug3  于 2022-12-29  发布在  其他
关注(0)|答案(1)|浏览(128)

如何创建一个极地系列从植物 rust ?

use polars::prelude::*;
fn main() {
    let mut col1: Vec<u8> = Vec::new();
    col1.push(1);
    col1.push(2);
    let s1 = Series::new("col1", col1); // error: the trait `polars::prelude::NamedFrom<Vec<u8>, _>` is not implemented for `polars::prelude::Series`
}
hm2xizp9

hm2xizp91#

是的,如果您在Cargo.toml中像这样启用dtype-u8特性,您的代码将正常工作:

polars = { version = "0.26.1", features = ["dtype-u8"] }

不过,这个需求很好地隐藏在源代码中。

相关问题