From 0b97e2d0be421c551dc5a31f9fcf76e2a4374fca Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Tue, 8 Apr 2025 22:39:08 +0100 Subject: [PATCH] Add linear_composite method to panel class --- src/msyrs.pyi | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/msyrs.pyi b/src/msyrs.pyi index f7ac740..f84036e 100644 --- a/src/msyrs.pyi +++ b/src/msyrs.pyi @@ -44,4 +44,6 @@ class panel: @staticmethod def get_period_indices_hv(*args, **kwargs) -> Series: ... - \ No newline at end of file + + @staticmethod + def linear_composite(*args, **kwargs) -> DataFrame: ... \ No newline at end of file