From 15f305fc17693bcc2fcefcbe87d6992d58e7fc6f Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Mon, 28 Apr 2025 19:22:46 +0100 Subject: [PATCH] fix README code example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 18643f2..961ad3a 100644 --- a/README.md +++ b/README.md @@ -62,10 +62,10 @@ let mb: Matrix = let fa: Frame = Frame::new( ma.clone(), - Some(col_names.clone()), + col_names.clone(), Some(RowIndex::Date(dates.clone())), ); -let fb: Frame = Frame::new(mb, Some(col_names), Some(RowIndex::Date(dates))); +let fb: Frame = Frame::new(mb, col_names, Some(RowIndex::Date(dates))); // Math that reads like math let result: Frame = &fa * &fb; // element‑wise multiply