updating linear composite binding

This commit is contained in:
Palash Tyagi 2025-04-14 00:22:59 +01:00
parent fefe849394
commit 165e1c19e4

View File

@ -68,7 +68,7 @@ pub fn get_period_indices_hv(dfw: PyDataFrame, est_freq: &str) -> PyResult<Vec<u
cids,
weights = None,
signs = None,
weight_xcats = None,
weight_xcat = None,
normalize_weights = false,
start = None,
end = None,
@ -84,7 +84,7 @@ pub fn linear_composite(
cids: Vec<String>,
weights: Option<Vec<f64>>,
signs: Option<Vec<f64>>,
weight_xcats: Option<Vec<String>>,
weight_xcat: Option<String>,
normalize_weights: bool,
start: Option<String>,
end: Option<String>,
@ -101,7 +101,7 @@ pub fn linear_composite(
cids,
weights,
signs,
weight_xcats,
weight_xcat,
normalize_weights,
start,
end,