Spaces:
Sleeping
Sleeping
File size: 9,402 Bytes
8950f30 f5c58a6 8950f30 6e77a27 8950f30 6e77a27 8950f30 f5c58a6 8950f30 f5c58a6 8950f30 f5c58a6 8950f30 f5c58a6 8950f30 f5c58a6 8950f30 3e641d1 8950f30 f5c58a6 8950f30 f5c58a6 8950f30 f5c58a6 8950f30 f5c58a6 8950f30 f5c58a6 8950f30 f5c58a6 8950f30 f5c58a6 8950f30 f5c58a6 8950f30 3e641d1 f5c58a6 3e641d1 f5c58a6 8950f30 7b17d80 3e641d1 f5c58a6 3e641d1 f5c58a6 3e641d1 24452b2 3e641d1 109b6e2 3e641d1 f5c58a6 8950f30 58851ea f5c58a6 8950f30 f5c58a6 8950f30 f5c58a6 8950f30 f5c58a6 8950f30 f5c58a6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 | import pandas as pd
import plotly.graph_objects as go
from plotly.subplots import make_subplots
# ============================================================
# Configuration / constants
# ============================================================
DEFAULT_LINE_COLORS: dict[int, str] = {
1: "#1f77b4",
2: "#d62728",
3: "#2ca02c",
4: "#9467bd",
5: "#ff7f0e",
}
HOVER_TEMPLATE_INDEX = (
"Age: %{customdata[0]}<br>"
"Exposure Level: Level %{customdata[1]} (1 = least exposed, 5 = most exposed)<br>"
"Year: %{x}<br>"
"Index: %{y:.1f}<extra></extra>"
)
HOVER_TEMPLATE_RAW = (
"Age: %{customdata[0]}<br>"
"Exposure Level: Level %{customdata[1]} (1 = least exposed, 5 = most exposed)<br>"
"Year: %{x}<br>"
"Number of Employed Persons: %{y:,}<extra></extra>"
)
# ============================================================
# Helper functions
# ============================================================
def _build_palette(line_colors: dict[int, str] | None) -> dict[int, str]:
"""
Merge user-supplied colors with defaults (user overrides default).
"""
return {**DEFAULT_LINE_COLORS, **(line_colors or {})}
def _resolve_color(
exposure_level: int | str,
palette: dict[int, str],
) -> str | None:
"""
Get color for an exposure level, trying both raw and int-casted keys.
"""
# Try using the level directly (if it's already an int key).
color = palette.get(exposure_level) # type: ignore[arg-type]
if color is not None:
return color
# Fall back to int(exposure_level) if possible.
try:
level_int = int(exposure_level)
return palette.get(level_int)
except (TypeError, ValueError):
return None
# ============================================================
# Main plotting function
# ============================================================
def create_exposure_plot(
df: pd.DataFrame,
metric: str,
metric_label: str,
weighting_label: str,
*,
value_col: str = "employment",
y_axis_label: str = "Employed Persons",
is_index: bool = False,
base_year: int | None = None,
line_colors: dict[int, str] | None = None,
) -> go.Figure:
"""
Generate a multi-row subplot figure for AI exposure by age group.
Parameters
----------
df : pd.DataFrame
Input data with columns 'age', 'year', value_col and
'daioe_{metric}_exposure_level'.
metric : str
Metric name used in the exposure column suffix.
metric_label : str
Human-readable label for the metric (for titles).
weighting_label : str
Label describing the weighting approach (for titles).
value_col : str, default "employment"
Column used for the Y-axis (e.g., counts or indices).
y_axis_label : str, default "Employed Persons"
Y-axis title.
is_index : bool, default False
If True, use index-style hover text; otherwise value-style.
base_year : int | None, default None
Optional vertical reference line and annotation for a base year.
line_colors : dict[int, str] | None, default None
Optional mapping of exposure level -> hex color. Overrides defaults.
Returns
-------
go.Figure
A Plotly Figure with one subplot per age group.
"""
exposure_col = f"daioe_{metric}_exposure_level"
# ------------------------------------------------------------------
# 1. Clean and prepare data
# ------------------------------------------------------------------
df_clean = df.dropna(subset=["age", exposure_col, value_col]).copy()
age_groups = sorted(df_clean["age"].unique())
if not age_groups:
# No valid data to plot
return go.Figure()
hover_template = HOVER_TEMPLATE_INDEX if is_index else HOVER_TEMPLATE_RAW
palette = _build_palette(line_colors)
# ------------------------------------------------------------------
# 2. Create multi-row subplot scaffolding
# ------------------------------------------------------------------
subplot_titles = [
(
f"<b>Employed Persons Aged {age} Years by AI Exposure Level</b><br>"
f"<span style='font-size:13px; color:#6b7280;'display:inline-block;'>"
f"{metric_label} - {weighting_label}"
f"</span>"
)
for age in age_groups
]
fig = make_subplots(
rows=len(age_groups),
cols=1,
shared_xaxes=False,
subplot_titles=subplot_titles,
vertical_spacing=0.03,
)
# ------------------------------------------------------------------
# 3. Add traces per age group and exposure level
# ------------------------------------------------------------------
for i, age in enumerate(age_groups, start=1):
df_age = df_clean[df_clean["age"] == age]
# Aggregate by year and exposure level
df_plot = df_age.groupby(["year", exposure_col], as_index=False)[
value_col
].sum()
for exposure_level, sub in df_plot.groupby(exposure_col):
color = _resolve_color(exposure_level, palette)
fig.add_trace(
go.Scatter(
x=sub["year"],
y=sub[value_col],
mode="lines+markers",
line=dict(width=3, color=color),
marker=dict(size=9, color=color),
name=f"Level {exposure_level}",
showlegend=(i == 1), # legend only in first row
hovertemplate=hover_template,
customdata=list(
zip(
[age] * len(sub),
[exposure_level] * len(sub),
)
),
),
row=i,
col=1,
)
# Axes for this row
fig.update_xaxes(
title_text="Year",
tickmode="linear",
dtick=1,
row=i,
col=1,
)
fig.update_yaxes(
title_text=y_axis_label,
tickformat=",",
rangemode="tozero",
row=i,
col=1,
automargin=True,
)
# ------------------------------------------------------------------
# 4. Global layout tweaks
# ------------------------------------------------------------------
# Reserve left margin for an outside-left legend so subplot widths stay consistent.
BASE_PLOT_WIDTH = 1000
LEFT_LEGEND_MARGIN = 260
fig.update_annotations(yshift=36)
fig.update_layout(
height=700 * len(age_groups),
width=BASE_PLOT_WIDTH + LEFT_LEGEND_MARGIN, # preserve plot width
legend=dict(
title=dict(
text=(
"<b> Exposure level</b><br>"
"<span style='font-size:11px'> (1 = least exposed, 5 = most exposed) </span>"
),
side="top",
font=dict(size=13),
),
orientation="v",
x=-0.1, # left edge of plotting area
xanchor="right", # legend sits just outside-left
y=0.98,
yanchor="top",
itemsizing="constant",
itemwidth=35, # keeps items compact
tracegroupgap=6,
bordercolor="rgba(0,0,0,0.15)",
borderwidth=1,
bgcolor="rgba(255,255,255,0.85)",
font=dict(size=12),
indentation=10,
yref="paper",
),
margin=dict(
t=170,
l=LEFT_LEGEND_MARGIN,
r=60,
b=60,
),
xaxis_showgrid=True,
yaxis_showgrid=True,
template="plotly_white",
)
# ------------------------------------------------------------------
# 5. Optional base-year line and annotation
# ------------------------------------------------------------------
if base_year is not None:
fig.add_vline(
x=base_year,
line_width=2,
line_dash="dash",
line_color="black",
opacity=0.8,
row="all",
col=1,
)
annotation_text = (
"Base year 2022 — ChatGPT launch and generative AI takeoff"
if base_year == 2022
else f"Base year {base_year} (normalization anchor)"
)
n_rows = len(age_groups)
for i in range(1, n_rows + 1):
# Plotly validation rules:
# - First subplot (i=1) must use 'x' and 'y domain' (with space).
# - Subsequent subplots (i>1) must use 'x{i}' and 'y{i} domain'.
if i == 1:
xref_val = "x"
yref_val = "y domain"
else:
xref_val = f"x{i}"
yref_val = f"y{i} domain"
fig.add_annotation(
x=base_year,
xref=xref_val,
y=0.955, # Position just above the plot area (1.0)
yref=yref_val,
text=annotation_text,
showarrow=False,
font=dict(color="black", size=11),
bgcolor="rgba(255,255,255,0.7)",
yshift=10, # Slight upward shift to clear titles/ticks
)
return fig
|