diff --git a/src/main.rs b/src/main.rs index c2ac20b..afe60ac 100644 --- a/src/main.rs +++ b/src/main.rs @@ -158,13 +158,15 @@ fn nb() { }) .unwrap(); + println!("Downloaded DF:\n{:?}", downloaded_df.head(Some(10))); + let eq_df = msyrs_qdf::reduce_dataframe( downloaded_df.clone(), None, Some(vec!["EQXR_NSA", "EQXR_VT10"]), None, // None, - None, + Some("2024-11-12"), None, false, ) @@ -184,7 +186,7 @@ fn nb() { ]), None, // None, - None, + Some("2024-11-12"), None, true, ) @@ -194,5 +196,5 @@ fn nb() { let custom_df = msyrs_qdf::update_dataframe(&fx_df, &eq_df).unwrap(); - println!("{:?}", custom_df.head(Some(10))); + println!("{:?}", custom_df.head(Some(20))); }