output logging

This commit is contained in:
Palash Tyagi 2024-11-17 15:20:18 +00:00
parent 5b4370a6a8
commit 861fadf733

View File

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