diff --git a/README.md b/README.md index 490deea..944f0c9 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ use chrono::NaiveDate; use rustframe::{ frame::{Frame, RowIndex}, matrix::{BoolOps, Matrix, SeriesOps}, - utils::{BDateFreq, BDatesList}, + utils::{DateFreq, BDatesList}, }; let n_periods = 4; @@ -53,8 +53,7 @@ let n_periods = 4; let dates: Vec = BDatesList::from_n_periods("2024-01-02".to_string(), BDateFreq::Daily, n_periods) .unwrap() - .list() - .unwrap(); + .list().unwrap(); let col_names: Vec = vec!["a".to_string(), "b".to_string()];