Better representation in nested dataframes (#3875)

* better dataframe representation in nested df

* Error message correction
This commit is contained in:
Fernando Herrera
2021-07-31 15:02:32 +01:00
committed by GitHub
parent 5826126284
commit 6984185e61
5 changed files with 79 additions and 10 deletions

View File

@ -173,7 +173,8 @@ impl NuDataFrame {
UntaggedValue::Primitive(Primitive::Int(_))
| UntaggedValue::Primitive(Primitive::Decimal(_))
| UntaggedValue::Primitive(Primitive::String(_))
| UntaggedValue::Primitive(Primitive::Boolean(_)) => {
| UntaggedValue::Primitive(Primitive::Boolean(_))
| UntaggedValue::DataFrame(_) => {
let key = format!("{}", 0);
insert_value(value, key, &mut column_values)?
}
@ -286,6 +287,27 @@ impl NuDataFrame {
Ok(series.clone())
}
pub fn get_value(&self, row: usize, span: Span) -> Result<Value, ShellError> {
let series = self.as_series(&Span::default())?;
let column = create_column(&series, row, row + 1)?;
if column.len() == 0 {
Err(ShellError::labeled_error_with_secondary(
"Not a valid row",
format!("No value found for index {}", row),
span,
format!("Note that the column size is {}", series.len()),
span,
))
} else {
let value = column
.into_iter()
.next()
.expect("already checked there is a value");
Ok(value)
}
}
// Print is made out a head and if the dataframe is too large, then a tail
pub fn print(&self) -> Result<Vec<Value>, ShellError> {
let df = &self.as_ref();

View File

@ -23,6 +23,10 @@ impl NuGroupBy {
}
}
pub fn by(&self) -> &[String] {
&self.by
}
pub fn try_from_stream<T>(input: &mut T, span: &Span) -> Result<NuGroupBy, ShellError>
where
T: Iterator<Item = Value>,