如何创建一个极地系列从植物 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`
}
1条答案
按热度按时间hm2xizp91#
是的,如果您在
Cargo.toml
中像这样启用dtype-u8
特性,您的代码将正常工作:不过,这个需求很好地隐藏在源代码中。