mirror of
https://github.com/Magnus167/msyrs.git
synced 2025-11-23 08:26:09 +00:00
wip
This commit is contained in:
@@ -3,6 +3,7 @@ pub mod update_df;
|
||||
pub mod load;
|
||||
pub mod reduce_df;
|
||||
pub mod pivots;
|
||||
|
||||
// Re-export submodules for easier access
|
||||
pub use core::*;
|
||||
pub use update_df::*;
|
||||
|
||||
@@ -79,3 +79,12 @@ fn split_df_by_tickers(df: &DataFrame) -> Result<HashMap<String, DataFrame>, Box
|
||||
|
||||
Ok(df_outs)
|
||||
}
|
||||
|
||||
fn single_ticker_qdf_to_timeseries(df: &DataFrame) -> Result<Vec<DataFrame>, Box<dyn Error>> {
|
||||
let mut df_vec = Vec::new();
|
||||
|
||||
// copy the date col
|
||||
// let date_col =
|
||||
|
||||
Ok(vec![df.to_owned()])
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user