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, cids,
weights = None, weights = None,
signs = None, signs = None,
weight_xcats = None, weight_xcat = None,
normalize_weights = false, normalize_weights = false,
start = None, start = None,
end = None, end = None,
@ -84,7 +84,7 @@ pub fn linear_composite(
cids: Vec<String>, cids: Vec<String>,
weights: Option<Vec<f64>>, weights: Option<Vec<f64>>,
signs: Option<Vec<f64>>, signs: Option<Vec<f64>>,
weight_xcats: Option<Vec<String>>, weight_xcat: Option<String>,
normalize_weights: bool, normalize_weights: bool,
start: Option<String>, start: Option<String>,
end: Option<String>, end: Option<String>,
@ -101,7 +101,7 @@ pub fn linear_composite(
cids, cids,
weights, weights,
signs, signs,
weight_xcats, weight_xcat,
normalize_weights, normalize_weights,
start, start,
end, end,