pub struct DataTable {
pub columns: Vec<ColumnData>,
pub row_count: usize,
}Expand description
In-memory normalized table used by plotting logic.
Fields§
§columns: Vec<ColumnData>§row_count: usizeImplementations§
Source§impl DataTable
impl DataTable
Sourcepub fn from_csv_path(path: &Path) -> Result<Self, String>
pub fn from_csv_path(path: &Path) -> Result<Self, String>
Parses a CSV file into a numeric table.
Sourcepub fn from_txt_path(path: &Path) -> Result<Self, String>
pub fn from_txt_path(path: &Path) -> Result<Self, String>
Parses a whitespace-separated TXT file into a numeric table.
Sourcepub fn column_names(&self) -> Vec<String>
pub fn column_names(&self) -> Vec<String>
Returns column names in display order.
Sourcepub fn has_column(&self, name: &str) -> bool
pub fn has_column(&self, name: &str) -> bool
Checks whether a column with this name exists.
Sourcepub fn column_values(&self, name: &str) -> Option<&[f64]>
pub fn column_values(&self, name: &str) -> Option<&[f64]>
Returns immutable numeric values of a named column.
Sourcepub fn points_for_columns(
&self,
x: &str,
y: &str,
) -> Result<Vec<(f32, f32)>, String>
pub fn points_for_columns( &self, x: &str, y: &str, ) -> Result<Vec<(f32, f32)>, String>
Builds (x, y) points from two selected columns.
Sourcepub fn from_data_source(source: &dyn DataSource) -> Result<Self, String>
pub fn from_data_source(source: &dyn DataSource) -> Result<Self, String>
Normalizes any DataSource implementation into a DataTable.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DataTable
impl RefUnwindSafe for DataTable
impl Send for DataTable
impl Sync for DataTable
impl Unpin for DataTable
impl UnsafeUnpin for DataTable
impl UnwindSafe for DataTable
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.