I’m trying to create a list series of type utf8 in rust.
I tried doing the following, passing in a vector of vectors but there doesn’t seem to be a NamedFrom method for this:
// Create a vector of vectors containing strings
let str_values = vec![
vec!["a", "b", "c"],
vec!["d", "e", "f"],
vec!["g", "h", "i"],
];
let data = vec![
str_values
];
// Create a Series from the vector of vectors
let series = Series::new(field_name, data);
What would be the simplest way to do this be?