add copilot instructions and rename classes

This commit is contained in:
2026-02-02 17:21:57 +01:00
parent 02a0214539
commit 6ba30ff041
12 changed files with 133 additions and 28 deletions

View File

@@ -11,7 +11,7 @@ from io import BytesIO
import imagehash
from PIL import Image
from plots import JPMCPlotsMixin
from plots import QualtricsPlotsMixin
from pptx import Presentation
@@ -514,7 +514,7 @@ def normalize_global_values(df: pl.DataFrame, target_cols: list[str]) -> pl.Data
return res.lazy() if was_lazy else res
class JPMCSurvey(JPMCPlotsMixin):
class QualtricsSurvey(QualtricsPlotsMixin):
"""Class to handle JPMorgan Chase survey data."""
def __init__(self, data_path: Union[str, Path], qsf_path: Union[str, Path]):