""" Project constants """ # Application info APP_NAME = "MySpace Ooty Data Analytics" APP_VERSION = "1.0.0" APP_AUTHOR = "Data Engineering Team" # Color schemes COLOR_PALETTE = { "primary": "#1f77b4", "secondary": "#ff7f0e", "success": "#2ca02c", "danger": "#d62728", "warning": "#ff9896", "info": "#17becf", } # Months MONTHS = { "January": 1, "February": 2, "March": 3, "April": 4, "May": 5, "June": 6, "July": 7, "August": 8, "September": 9, "October": 10, "November": 11, "December": 12 } # Statistical thresholds STRONG_CORRELATION = 0.7 MODERATE_CORRELATION = 0.4 WEAK_CORRELATION = 0.2 P_VALUE_SIGNIFICANT = 0.05 P_VALUE_HIGHLY_SIGNIFICANT = 0.01