[][src]Trait peroxide::structure::dataframe::WithCSV

pub trait WithCSV: Sized {
    pub fn write_csv(&self, file_path: &str) -> Result<(), Box<dyn Error>>;
pub fn read_csv(
        file_path: &str,
        delimiter: char
    ) -> Result<Self, Box<dyn Error>>; }

To handle CSV file format

Required methods

pub fn write_csv(&self, file_path: &str) -> Result<(), Box<dyn Error>>[src]

pub fn read_csv(
    file_path: &str,
    delimiter: char
) -> Result<Self, Box<dyn Error>>
[src]

Loading content...

Implementors

impl WithCSV for DataFrame[src]

pub fn write_csv(&self, file_path: &str) -> Result<(), Box<dyn Error>>[src]

Write csv file

pub fn read_csv(
    file_path: &str,
    delimiter: char
) -> Result<Self, Box<dyn Error>>
[src]

Read csv file with delimiter

Loading content...