diff --git a/.gitignore b/.gitignore index 513b176b3aa355e8933e9dca2042fa7dd7c4d304..a8e88d4efc42c182d26bd34b1b180024851f2f0b 100644 --- a/.gitignore +++ b/.gitignore @@ -40,3 +40,6 @@ vendor/data/processed/ !vendor/data/modeling/model_peligro_pasillo__*.txt !vendor/data/modeling/team_features_latest.parquet !vendor/data/modeling/matchup_feat_cols.json + +# Artefactos de ejes bundleados (chicos, patrón CORE artifacts) +!vendor/data/ejes/**/*.parquet diff --git a/scripts/upload_ejes_artifacts.py b/scripts/upload_ejes_artifacts.py new file mode 100644 index 0000000000000000000000000000000000000000..e3a1dd473993d0f46d70aa263bc8ea9870a0fbec --- /dev/null +++ b/scripts/upload_ejes_artifacts.py @@ -0,0 +1,55 @@ +"""Sube los artefactos de EJES a Azure (report_artifacts root) para que el Space los consuma. + +Recorre data/analysis/next_goal/artifacts/ejes///* del repo Racing y sube cada +archivo a ``{azure_report_artifacts_root}/ejes/...``. Chicos (~11MB total). + +Uso: python scripts/upload_ejes_artifacts.py [--source ../data/analysis/next_goal/artifacts/ejes] [--overwrite] +""" + +from __future__ import annotations + +import argparse +import sys +from pathlib import Path + +sys.path.insert(0, str(Path(__file__).resolve().parents[1] / "src")) + +from racing_reports.config import DEFAULT_SETTINGS +from racing_reports.datastore import DataStore, _azure_credential # noqa: F401 +from azure.storage.filedatalake import DataLakeServiceClient + +DEFAULT_SOURCE = Path(__file__).resolve().parents[2] / "data" / "analysis" / "next_goal" / "artifacts" / "ejes" + + +def main() -> None: + ap = argparse.ArgumentParser() + ap.add_argument("--source", type=Path, default=DEFAULT_SOURCE) + ap.add_argument("--overwrite", action="store_true") + args = ap.parse_args() + + src: Path = args.source + if not src.is_dir(): + raise SystemExit(f"No existe {src}") + fs = DataStore()._filesystem_client() + root = DEFAULT_SETTINGS.azure_report_artifacts_root.strip("/") + files = [p for p in src.rglob("*") if p.is_file() and not p.name.startswith("_")] + print(f"{len(files)} archivos → {root}/ejes/") + subidos = saltados = 0 + for p in files: + rel = p.relative_to(src).as_posix() + remote = f"{root}/ejes/{rel}" + fc = fs.get_file_client(remote) + if not args.overwrite: + try: + fc.get_file_properties() + saltados += 1 + continue + except Exception: + pass + fc.upload_data(p.read_bytes(), overwrite=True) + subidos += 1 + print(f"subidos: {subidos} | ya estaban: {saltados}") + + +if __name__ == "__main__": + main() diff --git a/src/racing_reports/api/routes_ejes.py b/src/racing_reports/api/routes_ejes.py new file mode 100644 index 0000000000000000000000000000000000000000..0460264d05b14cbe16a29f8f665cf7fca178049f --- /dev/null +++ b/src/racing_reports/api/routes_ejes.py @@ -0,0 +1,24 @@ +"""Endpoints de la sección "Ejes ataque/defensa" (scatter interactivo de equipos).""" + +from __future__ import annotations + +from fastapi import APIRouter, Depends, HTTPException + +from racing_reports import ejes_data +from racing_reports.api.deps import require_auth + +router = APIRouter(prefix="/api/ejes") + + +@router.get("/options", dependencies=[Depends(require_auth)]) +def options() -> dict: + """Ligas/temporadas con artefactos de ejes + labels de los ejes.""" + return {"leagues": ejes_data.available(), "ejes": ejes_data.EJE_LABELS} + + +@router.get("/profiles", dependencies=[Depends(require_auth)]) +def profiles(league: str, season: str) -> dict: + try: + return ejes_data.profiles_payload(league, season) + except FileNotFoundError as exc: + raise HTTPException(status_code=404, detail=f"Sin artefactos de ejes: {exc}") diff --git a/src/racing_reports/api/routes_reports.py b/src/racing_reports/api/routes_reports.py index efbd35f05a3faf25e7c87dd79232fae06110b91a..0e55479281bdb6fc7baffd13da7b6f4dea428f2c 100644 --- a/src/racing_reports/api/routes_reports.py +++ b/src/racing_reports/api/routes_reports.py @@ -14,7 +14,8 @@ from racing_reports.runner import ReportRunner router = APIRouter(prefix="/api/reports") -SUPPORTED_REPORTS = {"pre_match", "block_zscore", "post_match", "triple_multitag", "triple_centros", "recuperaciones"} # post_match requiere NN +SUPPORTED_REPORTS = {"pre_match", "block_zscore", "post_match", "triple_multitag", "triple_centros", + "recuperaciones", "ejes_pre", "ejes_post"} # post_match requiere NN @router.get( @@ -61,7 +62,7 @@ def run(report_type: str, payload: RunRequest) -> RunResponse: if not payload.team_a: raise HTTPException(status_code=400, detail="Elegí al menos un equipo (A).") # pre/post necesitan los dos equipos (local + visitante); los de equipo permiten 1. - if report_type in ("pre_match", "post_match") and not payload.team_b: + if report_type in ("pre_match", "post_match", "ejes_pre", "ejes_post") and not payload.team_b: raise HTTPException(status_code=400, detail="Para previo/post-partido elegí local y visitante.") if report_type == "post_match" and not payload.match_id and not payload.match_date: raise HTTPException( diff --git a/src/racing_reports/ejes_data.py b/src/racing_reports/ejes_data.py new file mode 100644 index 0000000000000000000000000000000000000000..2c6fc53f115998086f55e3ac353e2ae255f286fc --- /dev/null +++ b/src/racing_reports/ejes_data.py @@ -0,0 +1,261 @@ +"""Acceso y lógica de los artefactos de EJES de ataque (por liga-temporada). + +Los artefactos (chicos, ~KB-MB) se generan offline con scripts/ejes_build_artifacts.py del +repo Racing y viven en Azure bajo ``{report_artifacts_root}/ejes///``: + + team_profiles.parquet equipo × eje × lado(gen/con): mix_z + real/esperado en eje-alto + match_team_ejes.parquet matchId × equipo: medias de eje + tiros real/esperado + goles + fecha + match_team_vars.parquet matchId × equipo: medias de variables (drill-down "qué se movió") + scales.json σ partido-a-partido, medias/σ de liga, normas por equipo (gen y con) + predictor.json por eje: coefs {gen, con, intercept} (gen propia + concesión rival) + +En dev, ``EJES_ARTIFACTS_DIR`` apunta al directorio local y evita Azure. +""" + +from __future__ import annotations + +import json +import os +import time +from functools import lru_cache +from pathlib import Path + +import pandas as pd + +from racing_reports.config import DEFAULT_SETTINGS +from racing_reports.datastore import DataStore + +EJE_LABELS = { + "verticalidad": "Verticalidad", + "elaboracion": "Elaboración", + "individual": "Juego individual", + "rotura_lineas": "Rotura de líneas", + "amplitud_centro": "Amplitud / centros", + "profundidad_espalda": "Profundidad / espalda", + "robo_alto": "Robo alto", + "aereo_segunda": "Aéreo / 2ª jugada", +} +EJES = list(EJE_LABELS) + +_AVAIL_CACHE: dict[str, object] = {"ts": 0.0, "value": None} +_AVAIL_TTL = 1800.0 + + +def _slug(league: str) -> str: + return "".join(c.lower() if c.isalnum() else "-" for c in league).strip("-") + + +def _local_dir() -> Path | None: + raw = os.getenv("EJES_ARTIFACTS_DIR") + return Path(raw).expanduser() if raw else None + + +def _bundled_dir() -> Path: + from racing_reports import vendor_env + return vendor_env.DATA_DIR / "ejes" + + +def _path(league: str, season: str, fname: str) -> Path: + """Orden: dir local de dev (env) → bundle del repo (vendor/data/ejes) → Azure.""" + rel = f"ejes/{_slug(league)}/{season}/{fname}" + local = _local_dir() + if local is not None: + p = local / _slug(league) / season / fname + if p.exists(): + return p + raise FileNotFoundError(f"No existe el artefacto local: {p}") + bundled = _bundled_dir() / _slug(league) / season / fname + if bundled.exists(): + return bundled + return DataStore().sync_artifact(rel) + + +@lru_cache(maxsize=64) +def _scales(league: str, season: str) -> dict: + return json.loads(_path(league, season, "scales.json").read_text(encoding="utf-8")) + + +@lru_cache(maxsize=64) +def _predictor(league: str, season: str) -> dict: + return json.loads(_path(league, season, "predictor.json").read_text(encoding="utf-8")) + + +@lru_cache(maxsize=32) +def _match_ejes(league: str, season: str) -> pd.DataFrame: + return pd.read_parquet(_path(league, season, "match_team_ejes.parquet")) + + +@lru_cache(maxsize=32) +def _match_vars(league: str, season: str) -> pd.DataFrame: + return pd.read_parquet(_path(league, season, "match_team_vars.parquet")) + + +@lru_cache(maxsize=32) +def _profiles(league: str, season: str) -> pd.DataFrame: + return pd.read_parquet(_path(league, season, "team_profiles.parquet")) + + +def available() -> dict[str, list[str]]: + """{liga: [temporadas]} con artefactos de ejes. Local si EJES_ARTIFACTS_DIR; si no, Azure.""" + def _scan(base: Path) -> dict[str, list[str]]: + idx = {} + idx_path = base / "_index.json" + if idx_path.exists(): + idx = json.loads(idx_path.read_text(encoding="utf-8")) + out: dict[str, list[str]] = {} + for p in sorted(base.glob("*/*/team_profiles.parquet")): + slug = p.parent.parent.name + out.setdefault(idx.get(slug, slug), []).append(p.parent.name) + return out + + local = _local_dir() + if local is not None: + return _scan(local) + bundled = _bundled_dir() + if bundled.is_dir(): + out = _scan(bundled) + if out: + return out + now = time.time() + if _AVAIL_CACHE["value"] is not None and now - float(_AVAIL_CACHE["ts"]) < _AVAIL_TTL: + return _AVAIL_CACHE["value"] # type: ignore[return-value] + root = f"{DEFAULT_SETTINGS.azure_report_artifacts_root}/ejes".strip("/") + found: dict[str, list[str]] = {} + try: + fs = DataStore()._filesystem_client() + for p in fs.get_paths(path=root, recursive=True): + name = getattr(p, "name", "") or "" + if not name.endswith("team_profiles.parquet"): + continue + parts = name[len(root):].strip("/").split("/") + if len(parts) >= 3: + found.setdefault(parts[0], []).append(parts[1]) + except Exception: + pass + _AVAIL_CACHE["value"] = found + _AVAIL_CACHE["ts"] = now + return found + + +def teams(league: str, season: str) -> list[str]: + return sorted(_profiles(league, season)["equipo"].unique()) + + +def _eje_z(scales: dict, eje_col: str, value: float) -> float: + mu = scales["eje_match_mean"].get(eje_col, 0.0) + sd = scales["eje_match_std"].get(eje_col, 1.0) or 1.0 + return (value - mu) / sd + + +def pre_prediction(league: str, season: str, home: str, away: str) -> dict: + """Para cada equipo: por eje, su norma y la predicción del partido (crece/decrece).""" + sc = _scales(league, season) + pred = _predictor(league, season) + out = [] + for team, rival in [(home, away), (away, home)]: + gen = sc["team_eje_norm_gen"].get(team) + con = sc["team_eje_norm_con"].get(rival) + if gen is None or con is None: + raise ValueError(f"Sin perfil de ejes para {team if gen is None else rival} " + f"en {league} {season}") + rows = [] + for eje in EJES: + ec = f"eje_{eje}" + c = pred.get(eje) + norma = gen.get(ec, 0.0) + if c is None: + p = norma + else: + p = c["intercept"] + c["gen"] * norma + c["con"] * con.get(ec, 0.0) + sigma = sc["eje_sigma"].get(ec, 1.0) or 1.0 + rows.append(dict( + eje=eje, label=EJE_LABELS[eje], + norma_z=round(_eje_z(sc, ec, norma), 2), + pred_z=round(_eje_z(sc, ec, p), 2), + delta_sigma=round((p - norma) / sigma, 2), + )) + out.append(dict(team=team, rival=rival, rows=rows)) + return {"league": league, "season": season, "teams": out} + + +def _resolve_match(mt: pd.DataFrame, home: str, away: str, + match_id: str | None, match_date: str | None) -> pd.DataFrame: + pair = mt[((mt["team"] == home) & (mt["rival"] == away)) | + ((mt["team"] == away) & (mt["rival"] == home))] + if match_id: + got = pair[pair["matchId"] == str(match_id)] + if len(got): + return got + if match_date and "fecha" in pair.columns: + got = pair[pair["fecha"].astype(str).str.startswith(str(match_date)[:10])] + if len(got): + return got + if pair.empty: + raise ValueError(f"No hay partidos {home} vs {away} en los artefactos.") + if "fecha" in pair.columns: + last = pair["fecha"].astype(str).max() + return pair[pair["fecha"].astype(str) == last] + return pair[pair["matchId"] == pair["matchId"].iloc[-1]] + + +def post_signature(league: str, season: str, home: str, away: str, + match_id: str | None = None, match_date: str | None = None, + top_movers: int = 8) -> dict: + """Firma de ataque del partido: ejes vs norma, ejecución esperado-vs-real, variables movidas.""" + sc = _scales(league, season) + mt = _match_ejes(league, season) + mv = _match_vars(league, season) + rows_match = _resolve_match(mt, home, away, match_id, match_date) + mid = rows_match["matchId"].iloc[0] + fecha = str(rows_match["fecha"].iloc[0]) if "fecha" in rows_match.columns else "" + + teams_out = [] + for _, r in rows_match.iterrows(): + team = r["team"] + norm = sc["team_eje_norm_gen"].get(team, {}) + ejes_rows = [] + for eje in EJES: + ec = f"eje_{eje}" + hoy, norma = float(r[ec]), float(norm.get(ec, 0.0)) + sigma = sc["eje_sigma"].get(ec, 1.0) or 1.0 + ejes_rows.append(dict( + eje=eje, label=EJE_LABELS[eje], + partido_z=round(_eje_z(sc, ec, hoy), 2), + norma_z=round(_eje_z(sc, ec, norma), 2), + dev_sigma=round((hoy - norma) / sigma, 2), + )) + movers = [] + vrow = mv[(mv["matchId"] == mid) & (mv["team"] == team)] + if len(vrow): + vrow = vrow.iloc[0] + vnorm = sc["team_var_norm"].get(team, {}) + for var, sigma in sc["var_sigma"].items(): + if var not in vrow or not sigma: + continue + hoy_v = float(vrow[var]) + norma_v = float(vnorm.get(var, 0.0)) + movers.append(dict(variable=var, hoy=round(hoy_v, 2), norma=round(norma_v, 2), + dev_sigma=round((hoy_v - norma_v) / sigma, 2))) + movers.sort(key=lambda d: -abs(d["dev_sigma"])) + movers = movers[:top_movers] + teams_out.append(dict( + team=team, rival=r["rival"], n_seq=int(r["n_seq"]), + tiros_real=int(r["tiros_real"]), tiros_esperados=round(float(r["tiros_esp"]), 1), + goles=int(r["goles"]), ejes=ejes_rows, movers=movers, + )) + return {"league": league, "season": season, "match_id": mid, "fecha": fecha, + "teams": teams_out} + + +def profiles_payload(league: str, season: str) -> dict: + """Payload para el scatter interactivo: por equipo × lado × eje: mix_z y dif (pp vs liga).""" + df = _profiles(league, season) + out: dict[str, dict] = {} + for _, r in df.iterrows(): + eq = out.setdefault(r["equipo"], {"gen": {}, "con": {}}) + dif = (r["real"] - r["liga_real"]) if pd.notna(r["real"]) else None + eq[r["lado"]][r["eje"]] = { + "z": float(r["mix_z"]), + "dif": round(float(dif), 1) if dif is not None else None, + } + return {"league": league, "season": season, "ejes": EJE_LABELS, "teams": out} diff --git a/src/racing_reports/reports/ejes.py b/src/racing_reports/reports/ejes.py new file mode 100644 index 0000000000000000000000000000000000000000..acaeee064f9024d668f2aaa3b4a43f288bba73c8 --- /dev/null +++ b/src/racing_reports/reports/ejes.py @@ -0,0 +1,201 @@ +"""Reportes de EJES de ataque: previo (qué ejes crecen/decrecen) y post (firma del partido). + +Ambos consumen SOLO los artefactos chicos de ejes (ejes_data) — no bajan el preprocessed. +Devuelven ReportBundle con figura matplotlib + HTML autocontenido (estilo oscuro de la app). +""" + +from __future__ import annotations + +from pathlib import Path + +import matplotlib +matplotlib.use("Agg") +import matplotlib.pyplot as plt + +from racing_reports import ejes_data +from racing_reports.reports.bundle import FigureArtifact, ReportBundle +from racing_reports.reports.common import png_to_data_uri, save_figure + +BG, FG, MUT = "#10141a", "#e5e7eb", "#9ca3af" +UP, DOWN, DOT = "#34d399", "#f87171", "#facc15" + + +def _style_axes(ax): + ax.set_facecolor(BG) + for s in ax.spines.values(): + s.set_color("#374151") + ax.tick_params(colors=MUT, labelsize=9) + ax.axvline(0, color="#4b5563", lw=1, ls="--") + + +def _html_shell(title: str, subtitle: str, body: str) -> str: + return f""" +{title}

{title}

{subtitle}

{body}""" + + +def _cls(v: float) -> str: + return "pos" if v > 0 else ("neg" if v < 0 else "") + + +# ────────────────────────── PREVIO ────────────────────────── + +def _fig_pre(pred: dict): + fig, axes = plt.subplots(1, 2, figsize=(12.5, 5.2), sharex=True) + fig.patch.set_facecolor(BG) + for ax, tinfo in zip(axes, pred["teams"]): + _style_axes(ax) + rows = tinfo["rows"] + ys = range(len(rows)) + for y, r in zip(ys, rows): + a, b = r["norma_z"], r["pred_z"] + color = UP if b >= a else DOWN + ax.plot([a, b], [y, y], color=color, lw=3, solid_capstyle="round", zorder=2) + ax.scatter([a], [y], color=DOT, s=42, zorder=3) + ax.scatter([b], [y], color=color, s=64, zorder=3, + marker=">" if b >= a else "<") + ax.set_yticks(list(ys)) + ax.set_yticklabels([r["label"] for r in rows], color=FG, fontsize=10) + ax.invert_yaxis() + ax.set_title(f"{tinfo['team']} (vs {tinfo['rival']})", color=FG, fontsize=12) + ax.set_xlabel("z vs liga (medias de partido)", color=MUT, fontsize=9) + fig.suptitle("Ejes de ataque esperados — punto amarillo = su norma, flecha = predicción del partido", + color=FG, fontsize=11, y=1.0) + fig.tight_layout() + return fig + + +def generate_pre(out_path: Path, league: str, season: str, + home_name: str, away_name: str) -> ReportBundle: + pred = ejes_data.pre_prediction(league, season, home_name, away_name) + out_dir = out_path.parent + fig = _fig_pre(pred) + png, svg = save_figure(fig, out_dir, "ejes_pre_prediccion") + plt.close(fig) + + tables = [] + for tinfo in pred["teams"]: + rows = "".join( + f"{r['label']}{r['norma_z']:+.2f}" + f"{r['pred_z']:+.2f}" + f"{r['delta_sigma']:+.2f}σ" + for r in sorted(tinfo["rows"], key=lambda x: -abs(x["delta_sigma"])) + ) + tables.append( + f"

{tinfo['team']}

" + f"" + f"{rows}
ejesu norma (z)predicción (z)Δ esperado
" + ) + body = ( + f"ejes previstos" + f"
{''.join(tables)}
" + "

Predicción = generación propia × concesión del rival (regresión por eje, " + "leave-one-match-out). Δ en σ partido-a-partido: ±1σ = variación normal entre partidos. " + "El rival moldea sobre todo la elaboración y la rotura de líneas; robo alto y profundidad " + "son más oportunistas (menos predecibles).

" + ) + html = _html_shell( + f"Ejes de ataque — previo: {home_name} vs {away_name}", + f"{league} {season} · qué dimensiones de ataque se esperan crecer/decrecer vs la norma de cada equipo", + body, + ) + out_path.write_text(html, encoding="utf-8") + return ReportBundle( + report_type="ejes_pre", html_path=out_path, + figures=[FigureArtifact(name="ejes_pre_prediccion", title="Ejes esperados del partido", + section="Ejes de ataque", png_path=png, svg_path=svg)], + meta={"league": league, "season": season}, + ) + + +# ────────────────────────── POST ────────────────────────── + +def _fig_post(sig: dict): + fig, axes = plt.subplots(1, 2, figsize=(12.5, 5.2), sharex=True) + fig.patch.set_facecolor(BG) + for ax, tinfo in zip(axes, sig["teams"]): + _style_axes(ax) + rows = tinfo["ejes"] + ys = range(len(rows)) + vals = [r["dev_sigma"] for r in rows] + ax.barh(list(ys), vals, color=[UP if v >= 0 else DOWN for v in vals], height=0.55) + ax.set_yticks(list(ys)) + ax.set_yticklabels([r["label"] for r in rows], color=FG, fontsize=10) + ax.invert_yaxis() + ax.set_title(f"{tinfo['team']} — {tinfo['tiros_real']} tiros " + f"(esp. {tinfo['tiros_esperados']}) · {tinfo['goles']} gol(es)", + color=FG, fontsize=11) + ax.set_xlabel("desvío vs su norma (σ partido-a-partido)", color=MUT, fontsize=9) + fig.suptitle("Firma de ataque del partido — qué usó de más (verde) y de menos (rojo) cada equipo", + color=FG, fontsize=11, y=1.0) + fig.tight_layout() + return fig + + +def generate_post(out_path: Path, league: str, season: str, home_name: str, away_name: str, + match_id: str | None = None, match_date: str | None = None) -> ReportBundle: + sig = ejes_data.post_signature(league, season, home_name, away_name, + match_id=match_id, match_date=match_date) + out_dir = out_path.parent + fig = _fig_post(sig) + png, svg = save_figure(fig, out_dir, "ejes_post_firma") + plt.close(fig) + + blocks = [] + for tinfo in sig["teams"]: + dif = tinfo["tiros_real"] - tinfo["tiros_esperados"] + ejec = (f"

Ejecución del día: {tinfo['tiros_real']} tiros vs " + f"{tinfo['tiros_esperados']} esperados por el modelo según sus jugadas " + f"({dif:+.1f}) · " + f"{tinfo['goles']} gol(es) · {tinfo['n_seq']} secuencias.

") + ejes_rows = "".join( + f"{r['label']}{r['partido_z']:+.2f}" + f"{r['norma_z']:+.2f}" + f"{r['dev_sigma']:+.2f}σ" + for r in sorted(tinfo["ejes"], key=lambda x: -abs(x["dev_sigma"])) + ) + movers_rows = "".join( + f"{m['variable']}{m['hoy']}" + f"{m['norma']}" + f"{m['dev_sigma']:+.1f}σ" + for m in tinfo["movers"] + ) + blocks.append( + f"

{tinfo['team']}

{ejec}" + f"" + f"{ejes_rows}
ejepartido (z)su norma (z)desvío
" + f"

Variables que más se movieron

" + f"" + f"{movers_rows}
variablehoynormadesvío
" + ) + body = ( + f"firma del partido" + f"
{''.join(blocks)}
" + "

Desvíos en σ partido-a-partido (±1σ = partido normal, ±2σ = inusual). " + "«Esperados» = suma de P(tiro) del modelo neutral sobre las jugadas reales del equipo: " + "positivo = sobre-ejecutó sus jugadas, negativo = las desperdició.

" + ) + html = _html_shell( + f"Firma de ataque — {home_name} vs {away_name}" + (f" ({sig['fecha'][:10]})" if sig["fecha"] else ""), + f"{league} {season} · qué caracterizó el ataque de cada equipo vs su propia norma", + body, + ) + out_path.write_text(html, encoding="utf-8") + return ReportBundle( + report_type="ejes_post", html_path=out_path, + figures=[FigureArtifact(name="ejes_post_firma", title="Firma de ataque del partido", + section="Ejes de ataque", png_path=png, svg_path=svg)], + meta={"league": league, "season": season, "match_id": sig["match_id"], "fecha": sig["fecha"]}, + ) diff --git a/src/racing_reports/runner.py b/src/racing_reports/runner.py index a68a3245778b8a0229141266256d7337ab0c1ddb..192be89c142e72c4737d74e070d0004b3f70702a 100644 --- a/src/racing_reports/runner.py +++ b/src/racing_reports/runner.py @@ -13,11 +13,12 @@ from racing_reports.config import DEFAULT_SETTINGS, Settings from racing_reports.datastore import DataStore from racing_reports.match_index import MatchIndex from racing_reports.models import ReportRequest, ReportResult -from racing_reports.reports import block_zscore, post_match, pre_match, recuperaciones, triple_multitag +from racing_reports.reports import block_zscore, ejes, post_match, pre_match, recuperaciones, triple_multitag from racing_reports.reports.bundle import ReportBundle from racing_reports.utils import git_commit, slugify, utc_now_iso, write_json -VALID_REPORTS = {"pre_match", "post_match", "block_zscore", "triple_multitag", "triple_centros", "recuperaciones"} +VALID_REPORTS = {"pre_match", "post_match", "block_zscore", "triple_multitag", "triple_centros", + "recuperaciones", "ejes_pre", "ejes_post"} def _norm(text: str) -> str: @@ -73,7 +74,8 @@ class ReportRunner: # post_match siempre corre el pre_match del mismo partido antes. if "post_match" in seen and "pre_match" not in seen: seen = ["pre_match"] + seen - order = {"pre_match": 0, "block_zscore": 1, "triple_multitag": 2, "triple_centros": 3, "recuperaciones": 4, "post_match": 5} + order = {"pre_match": 0, "block_zscore": 1, "triple_multitag": 2, "triple_centros": 3, + "recuperaciones": 4, "post_match": 5, "ejes_pre": 6, "ejes_post": 7} return sorted(dict.fromkeys(seen), key=lambda r: order[r]) def run(self, request: ReportRequest) -> ReportResult: @@ -98,10 +100,10 @@ class ReportRunner: home_name = match["home_team"] away_name = match["away_team"] match_date = match["date"] - elif "post_match" in report_types: + elif {"post_match", "ejes_post"} & set(report_types): # Partido reciente sin matchId en el dataset: usamos lo que mandó el front # (local/visitante/fecha). El matchId real se resuelve más abajo desde el - # preprocessed, una vez descargado. + # preprocessed (post_match) o desde los artefactos de ejes (ejes_post). home_name = request.home_team away_name = request.away_team match_date = request.match_date or None @@ -197,6 +199,24 @@ class ReportRunner: venue_a=flt.get("venue_a", flt.get("venue", "both")), venue_b=flt.get("venue_b", flt.get("venue", "both")), ) + elif report_type == "ejes_pre": + result = ejes.generate_pre( + out_path=out_path, + league=request.league, + season=str(request.season), + home_name=home_name, + away_name=away_name, + ) + elif report_type == "ejes_post": + result = ejes.generate_post( + out_path=out_path, + league=request.league, + season=str(request.season), + home_name=home_name, + away_name=away_name, + match_id=request.match_id or None, + match_date=match_date, + ) elif report_type == "post_match": # Si el partido no traía matchId (reciente, no está en el dataset), # lo resolvemos del preprocessed ya descargado por local/visitante/fecha. diff --git a/src/racing_reports/web/app.py b/src/racing_reports/web/app.py index b1affdb3f1e9dde7c2113c49d00cfded5f934c5a..eee65d6bd3edb3d8d65daaf1b66bd45c974dfaa6 100644 --- a/src/racing_reports/web/app.py +++ b/src/racing_reports/web/app.py @@ -17,6 +17,7 @@ from racing_reports.api.routes_jobs import router as api_jobs_router from racing_reports.api.routes_meta import router as api_meta_router from racing_reports.api.routes_reports import router as api_reports_router from racing_reports.api.routes_team_vars import router as api_team_vars_router +from racing_reports.api.routes_ejes import router as api_ejes_router from racing_reports.config import DEFAULT_SETTINGS from racing_reports.datastore import DataStore from racing_reports.match_index import MatchIndex @@ -41,6 +42,7 @@ app.include_router(api_meta_router) app.include_router(api_reports_router) app.include_router(api_jobs_router) app.include_router(api_team_vars_router) +app.include_router(api_ejes_router) # Estado en memoria (single container en HF Space). Re-export para retrocompat. Job = jobs_mod.Job diff --git a/src/racing_reports/web/templates/home.html b/src/racing_reports/web/templates/home.html index 1aca55acae5b968723706a27f97326edfb0faf13..75d52d29544cd1df9c11980c2823d4606d8b8f4d 100644 --- a/src/racing_reports/web/templates/home.html +++ b/src/racing_reports/web/templates/home.html @@ -199,6 +199,19 @@ + +
+

Ejes de ataque — previo

+

Qué dimensiones de ataque (verticalidad, elaboración, 1v1, rotura de líneas, profundidad…) se espera que crezcan o decrezcan para cada equipo vs su norma, según la generación propia y la concesión del rival.

+ +
+ +
+

Ejes de ataque — post-partido (firma)

+

Del último cruce jugado entre y : qué ejes usó de más/menos cada equipo vs su norma, ejecución del día (tiros reales vs esperados por el modelo) y las variables que más se movieron.

+ +

+
@@ -439,6 +452,55 @@ + + +
+

5. Ejes ataque/defensa

+

Los 8 ejes de ataque por equipo: qué GENERA cada uno y qué CONCEDE, en identidad (z vs su liga) o rendimiento (pp de tiro vs liga en jugadas de ese eje). Hover = equipo y valores.

+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+

+
+ + +
+
@@ -549,6 +611,10 @@ tvpLeague:'', tvpSeason:'', tvpSeasons:[], tvpTeam:'', tvpTeams:[], tvpScope:'liga', tvpVars:[''], tvpResult:null, tvpLoading:false, tvpError:'', tvpZmax:3, tvpShowMean:false, tvpShowBest:false, tvsScope:'all', tvsResult:null, tvsLoading:false, tvsError:'', + // Ejes ataque/defensa (scatter) + ejLeagues:{}, ejLeagueList:[], ejLeague:'', ejSeason:'', ejSeasons:[], ejLabels:{}, + ejX:'elaboracion', ejY:'verticalidad', ejLado:'gen', ejMet:'z', ejData:null, ejError:'', ejLoaded:false, + ejPostMsg:'', ejPostMsgError:false, async init() { await this.loadLeagues(); await this.loadSeasons(false); await this.loadTeams(); this._refreshHealth(); }, async _getJSON(u){ const r=await fetch(u); if(!r.ok) throw new Error((await r.json().catch(()=>({detail:r.statusText}))).detail); return r.json(); }, @@ -578,6 +644,7 @@ this.tvpOnLeague(); this.tvLoaded = true; } catch(e){ this.tvError = 'No se pudieron cargar las opciones: '+e; } + this.ejInit(); }, tvpPct(z){ const m=this.tvpZmax||3; const c=Math.max(-m,Math.min(m,z)); return 50 + c/m*50; }, tvpAddVar(){ this.tvpVars.push(''); }, @@ -711,7 +778,7 @@ async onSeasonChange(){ await this.loadTeams(); }, async _refreshHealth(){ try{ const r=await fetch('/api/health'); if(r.ok){ this.preprocessedCached=!!(await r.json()).preprocessed_cached; } }catch(_e){} }, - reportTitle(id){ return ({pre_match:'Reporte previo (head-to-head)',block_zscore:'Bloques (z-score)',triple_multitag:'Triple Análisis (Multi-Tag)',triple_centros:'Triple Análisis (Centros)',recuperaciones:'Recuperaciones',post_match:'Reporte post-partido'})[id]||id; }, + reportTitle(id){ return ({pre_match:'Reporte previo (head-to-head)',block_zscore:'Bloques (z-score)',triple_multitag:'Triple Análisis (Multi-Tag)',triple_centros:'Triple Análisis (Centros)',recuperaciones:'Recuperaciones',post_match:'Reporte post-partido',ejes_pre:'Ejes de ataque — previo',ejes_post:'Ejes de ataque — firma del partido'})[id]||id; }, visibleFigures(rt,figs){ return this.onlyFigure ? figs.filter(f=>f.name===this.onlyFigure) : figs; }, async toggleCatalog(id){ const r=this.reports[id]; r.catalogOpen=!r.catalogOpen; @@ -720,7 +787,7 @@ async runFull(id){ await this.runOne(id, null); }, async runOne(id, figName){ if (!this.teamA){ alert('Elegí el Equipo A.'); return; } - const isMatch = (id==='pre_match'); + const isMatch = (id==='pre_match' || id==='ejes_pre'); if (isMatch && !this.teamB){ alert('Elegí local y visitante.'); return; } const teamB = isMatch ? this.teamB : (this.compareTwo ? this.teamB : ''); if (teamB && teamB===this.teamA){ alert('A y B deben ser distintos.'); return; } @@ -751,6 +818,79 @@ }, _pmErr(m){ this.postMatchMsg=m; this.postMatchMsgError=true; }, + async ejRunPost(){ + this.ejPostMsg=''; this.ejPostMsgError=false; + if (!this.teamA||!this.teamB){ this.ejPostMsg='Elegí los dos equipos.'; this.ejPostMsgError=true; return; } + if (this.teamA===this.teamB){ this.ejPostMsg='A y B deben ser distintos.'; this.ejPostMsgError=true; return; } + this.ejPostMsg='Usa el último cruce jugado entre ambos (según artefactos de ejes).'; + await this._post('ejes_post', { league:this.league, season:this.season, team_a:this.teamA, team_b:this.teamB, filters:{}, only:[] }, null, `Ejes — firma: ${this.teamA} vs ${this.teamB}`); + }, + async ejInit(){ + if (this.ejLoaded) return; + try { + const o = await this._getJSON('/api/ejes/options'); + this.ejLeagues = o.leagues||{}; this.ejLabels = o.ejes||{}; + this.ejLeagueList = Object.keys(this.ejLeagues).sort(); + if (!this.ejLeagueList.length){ this.ejError='No hay artefactos de ejes disponibles.'; return; } + this.ejLeague = this.ejLeagueList.find(l=>l.toLowerCase().includes('segunda')) || this.ejLeagueList[0]; + this.ejLoaded = true; + this.ejOnLeague(); + } catch(e){ this.ejError='Error cargando ejes: '+e; } + }, + ejOnLeague(){ + this.ejSeasons = (this.ejLeagues[this.ejLeague]||[]).slice().sort().reverse(); + this.ejSeason = this.ejSeasons[0]||''; + this.ejLoad(); + }, + async ejLoad(){ + this.ejError=''; this.ejData=null; + if (!this.ejLeague||!this.ejSeason) return; + try { + this.ejData = await this._getJSON(`/api/ejes/profiles?league=${encodeURIComponent(this.ejLeague)}&season=${encodeURIComponent(this.ejSeason)}`); + await this.$nextTick(); this.ejDraw(); + } catch(e){ this.ejError='Error: '+e; } + }, + ejDraw(){ + const svg=document.getElementById('ejsvg'), tip=document.getElementById('ejtip'), wrap=document.getElementById('ejwrap'); + if (!svg||!this.ejData) return; + svg.innerHTML=''; + const NS='http://www.w3.org/2000/svg', W=980, H=440, M={l:56,r:20,t:14,b:46}; + const met=this.ejMet, lado=this.ejLado, ex=this.ejX, ey=this.ejY, labels=this.ejLabels; + const pts=Object.entries(this.ejData.teams).map(([team,d])=>{ + const a=(d[lado]||{})[ex]||{}, b=(d[lado]||{})[ey]||{}; + return {team, x:a[met], y:b[met]}; + }).filter(p=>p.x!=null&&p.y!=null); + if (!pts.length) return; + const ext=Math.max(...pts.map(p=>Math.max(Math.abs(p.x),Math.abs(p.y))))*1.15||1; + const X=v=>M.l+((v+ext)/(2*ext))*(W-M.l-M.r), Y=v=>H-M.b-((v+ext)/(2*ext))*(H-M.t-M.b); + const el=(tag,attrs)=>{const e=document.createElementNS(NS,tag);for(const k in attrs)e.setAttribute(k,attrs[k]);svg.appendChild(e);return e;}; + el('line',{x1:M.l,y1:Y(0),x2:W-M.r,y2:Y(0),stroke:'#4b5563','stroke-dasharray':'4 4'}); + el('line',{x1:X(0),y1:M.t,x2:X(0),y2:H-M.b,stroke:'#4b5563','stroke-dasharray':'4 4'}); + const unit = met==='z'?'':'pp'; + const tx1=el('text',{x:W-M.r,y:Y(0)-8,'font-size':'12','text-anchor':'end',fill:'#9ca3af'}); tx1.textContent=(labels[ex]||ex)+' alto →'; + const ty1=el('text',{x:X(0)+6,y:M.t+12,'font-size':'12',fill:'#9ca3af'}); ty1.textContent='↑ '+(labels[ey]||ey)+' alto'; + [-1,-0.5,0.5,1].forEach(f=>{ + const v=+(f*ext).toFixed(1); + const a=el('text',{x:X(v),y:H-M.b+16,'font-size':'11','text-anchor':'middle',fill:'#6b7280'}); a.textContent=v+unit; + const b=el('text',{x:M.l-8,y:Y(v)+4,'font-size':'11','text-anchor':'end',fill:'#6b7280'}); b.textContent=v+unit; + }); + pts.forEach(pt=>{ + const racing = pt.team==='Racing de Santander'; + const c=el('circle',{cx:X(pt.x),cy:Y(pt.y),r:racing?8:6,fill:racing?'#f59e0b':'#9ca3af','fill-opacity':racing?1:0.7,stroke:'#111827','stroke-width':1}); + c.style.cursor='pointer'; + if (racing){ const l=el('text',{x:X(pt.x)+11,y:Y(pt.y)+4,'font-size':'12','font-weight':'600',fill:'#e5e7eb'}); l.textContent='Racing'; } + c.addEventListener('mousemove',ev=>{ + const r=wrap.getBoundingClientRect(); + tip.style.display='block'; + tip.style.left=Math.min(ev.clientX-r.left+14,r.width-240)+'px'; + tip.style.top=(ev.clientY-r.top+10)+'px'; + const fx=met==='z'?pt.x.toFixed(2):pt.x.toFixed(1)+'pp', fy=met==='z'?pt.y.toFixed(2):pt.y.toFixed(1)+'pp'; + tip.innerHTML=''+pt.team+'
'+(labels[ex]||ex)+': '+fx+'
'+(labels[ey]||ey)+': '+fy; + c.setAttribute('r',racing?10:8); + }); + c.addEventListener('mouseleave',()=>{ tip.style.display='none'; c.setAttribute('r',racing?8:6); }); + }); + }, async _post(id, body, figName, title){ let resp; try { resp=await fetch(`/api/reports/${id}/run`,{method:'POST',headers:{'content-type':'application/json'},body:JSON.stringify(body)}); } diff --git a/vendor/data/ejes/_index.json b/vendor/data/ejes/_index.json new file mode 100644 index 0000000000000000000000000000000000000000..83a22d6bf6b7b94c0ef3cc6ddaf6c888ef63fac9 --- /dev/null +++ b/vendor/data/ejes/_index.json @@ -0,0 +1,30 @@ +{ + "english-football-league---championship": "English Football League - Championship", + "uefa-conference-league": "UEFA Conference League", + "danish-superligaen": "Danish Superligaen", + "english-premier-league": "English Premier League", + "spanish-segunda-division": "Spanish Segunda Division", + "french-ligue-1": "French Ligue 1", + "belgian-challenger-pro-league": "Belgian Challenger Pro League", + "serbian-super-liga": "Serbian Super Liga", + "chile-primera": "Chile Primera", + "spanish-la-liga": "Spanish La Liga", + "norwegian-eliteserien": "Norwegian Eliteserien", + "polish-ekstraklasa": "Polish Ekstraklasa", + "swedish-allsvenskan": "Swedish Allsvenskan", + "italian-serie-a": "Italian Serie A", + "german-bundesliga": "German Bundesliga", + "liga-profesional-argentina": "Liga Profesional Argentina", + "dutch-eredivisie": "Dutch Eredivisie", + "croatia-prva-hnl": "Croatia Prva HNL", + "uefa-champions-league": "UEFA Champions League", + "french-ligue-2": "French Ligue 2", + "uefa-europa-league": "UEFA Europa League", + "ecuador-liga-pro": "Ecuador Liga Pro", + "brack-super-league": "Brack Super League", + "portuguese-primeira-liga": "Portuguese Primeira Liga", + "dutch-eerste-divisie": "Dutch Eerste Divisie", + "italian-serie-b": "Italian Serie B", + "german-bundesliga-zwei": "German Bundesliga Zwei", + "austrian-bundesliga": "Austrian Bundesliga" +} \ No newline at end of file diff --git a/vendor/data/ejes/austrian-bundesliga/25-26/ejes_definition.json b/vendor/data/ejes/austrian-bundesliga/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/austrian-bundesliga/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/austrian-bundesliga/25-26/match_team_ejes.parquet b/vendor/data/ejes/austrian-bundesliga/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..396d34cbb9f73494d8bfa5b8f9dc5070673a6f08 --- /dev/null +++ b/vendor/data/ejes/austrian-bundesliga/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34ac9709b1400fa0f71928e8538614ea303347633aa3836934bd6af16f0c57a0 +size 50362 diff --git a/vendor/data/ejes/austrian-bundesliga/25-26/match_team_vars.parquet b/vendor/data/ejes/austrian-bundesliga/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..f042a6a0c875eee4da6ca6cf17d8b51afd9ae2ec --- /dev/null +++ b/vendor/data/ejes/austrian-bundesliga/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:369d7898e2b3bfea976781f4c9157f5e1ee61f0f787961eec669b47e88f66b0d +size 188615 diff --git a/vendor/data/ejes/austrian-bundesliga/25-26/predictor.json b/vendor/data/ejes/austrian-bundesliga/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..18582e01add43dd056eae5917d92ee448b6895b6 --- /dev/null +++ b/vendor/data/ejes/austrian-bundesliga/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.8698, "con": 0.7797, "intercept": 0.0142}, "elaboracion": {"gen": 0.8787, "con": 0.8584, "intercept": 0.0001}, "individual": {"gen": 0.8901, "con": 0.5205, "intercept": 0.0002}, "rotura_lineas": {"gen": 0.7177, "con": 0.8074, "intercept": -0.0006}, "amplitud_centro": {"gen": 0.7346, "con": 0.7682, "intercept": -0.0003}, "profundidad_espalda": {"gen": 0.5978, "con": 0.8096, "intercept": -0.0008}, "robo_alto": {"gen": 0.8745, "con": 0.7521, "intercept": 0.0036}, "aereo_segunda": {"gen": 0.8563, "con": 0.803, "intercept": 0.0004}} \ No newline at end of file diff --git a/vendor/data/ejes/austrian-bundesliga/25-26/scales.json b/vendor/data/ejes/austrian-bundesliga/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..65e1ee8f8112363b02838a29759455affb8b618a --- /dev/null +++ b/vendor/data/ejes/austrian-bundesliga/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 2.2706, "atk_w": 1.2243, "ball_distance": 44.4577, "behind_line_ok": 0.023, "broke_last_line": 0.0154, "broke_second_last": 0.041, "cross_pvadded_max": 0.0013, "dang_runs": 0.0682, "deep_completions": 0.1132, "def_h": 3.0438, "dribbles_box": 0.0098, "dribbles_last_third": 0.0221, "duration_s": 18.4642, "hold_max": 1.5917, "hold_mean": 1.0796, "hold_min": 1.0543, "line_breaks": 0.221, "max_x": 3.9481, "n_centros": 0.0456, "n_events": 1.725, "n_involved": 0.1619, "n_passes": 0.5913, "opt_quality_mean": 0.1432, "paredes": 0.0976, "pass_options_mean": 1.5337, "passes_behind_line": 0.0388, "pct_adentro": 0.0381, "pct_afuera": 0.0364, "pct_cortos": 0.0458, "pct_headpass": 0.0156, "pct_largos": 0.0471, "pct_launch": 0.0374, "pct_layoff": 0.0051, "pct_medios": 0.0381, "pct_switch": 0.0044, "pct_through": 0.0041, "pct_verticales": 0.0575, "pelotazos_espalda": 0.0338, "press_final": 0.4181, "press_media": 0.2789, "prog_x": 2.5661, "start_x": 4.5257, "starts_from_dispossess": 0.0161, "takeons_ok": 0.0195, "tempo": 0.0397, "transition_speed": 0.6923, "verticalidad_media": 0.0731}, "eje_sigma": {"eje_verticalidad": 0.1181, "eje_elaboracion": 0.1026, "eje_individual": 0.0618, "eje_rotura_lineas": 0.064, "eje_amplitud_centro": 0.0577, "eje_profundidad_espalda": 0.0861, "eje_robo_alto": 0.0959, "eje_aereo_segunda": 0.069}, "eje_match_mean": {"eje_verticalidad": -0.0219, "eje_elaboracion": -0.0002, "eje_individual": -0.0006, "eje_rotura_lineas": 0.0012, "eje_amplitud_centro": 0.0005, "eje_profundidad_espalda": 0.002, "eje_robo_alto": -0.0058, "eje_aereo_segunda": -0.0007}, "eje_match_std": {"eje_verticalidad": 0.1337, "eje_elaboracion": 0.1181, "eje_individual": 0.0709, "eje_rotura_lineas": 0.0679, "eje_amplitud_centro": 0.061, "eje_profundidad_espalda": 0.0894, "eje_robo_alto": 0.1101, "eje_aereo_segunda": 0.0777}, "team_var_norm": {"Austria Wien": {"atk_l": 37.247, "atk_w": 32.686, "ball_distance": 95.8914, "behind_line_ok": 0.0588, "broke_last_line": 0.0385, "broke_second_last": 0.1505, "cross_pvadded_max": 0.0006, "dang_runs": 0.1003, "deep_completions": 0.3634, "def_h": 29.9407, "dribbles_box": 0.0129, "dribbles_last_third": 0.0537, "duration_s": 23.1901, "hold_max": 9.295, "hold_mean": 5.7404, "hold_min": 3.6356, "line_breaks": 0.4531, "max_x": 69.8701, "n_centros": 0.1382, "n_events": 5.158, "n_involved": 1.8105, "n_passes": 2.7692, "opt_quality_mean": 0.0356, "paredes": 0.2203, "pass_options_mean": 8.9608, "passes_behind_line": 0.1417, "pct_adentro": 0.5338, "pct_afuera": 0.3929, "pct_cortos": 0.3773, "pct_headpass": 0.051, "pct_largos": 0.2148, "pct_launch": 0.1055, "pct_layoff": 0.0081, "pct_medios": 0.3364, "pct_switch": 0.0038, "pct_through": 0.0024, "pct_verticales": 0.5019, "pelotazos_espalda": 0.1037, "press_final": 2.5633, "press_media": 1.9129, "prog_x": 24.159, "start_x": 46.5474, "starts_from_dispossess": 0.0354, "takeons_ok": 0.0416, "tempo": 0.3993, "transition_speed": 3.7005, "verticalidad_media": 0.3542}, "Blau-Weiß Linz": {"atk_l": 40.3425, "atk_w": 32.0728, "ball_distance": 95.329, "behind_line_ok": 0.0407, "broke_last_line": 0.0209, "broke_second_last": 0.1355, "cross_pvadded_max": 0.0007, "dang_runs": 0.0886, "deep_completions": 0.3024, "def_h": 31.1582, "dribbles_box": 0.0061, "dribbles_last_third": 0.0382, "duration_s": 23.8606, "hold_max": 9.6337, "hold_mean": 5.5424, "hold_min": 3.3149, "line_breaks": 0.4172, "max_x": 68.1032, "n_centros": 0.1065, "n_events": 5.1708, "n_involved": 1.8724, "n_passes": 2.6514, "opt_quality_mean": 0.0319, "paredes": 0.1892, "pass_options_mean": 8.7267, "passes_behind_line": 0.1273, "pct_adentro": 0.5311, "pct_afuera": 0.3883, "pct_cortos": 0.3636, "pct_headpass": 0.053, "pct_largos": 0.2152, "pct_launch": 0.1207, "pct_layoff": 0.0104, "pct_medios": 0.3414, "pct_switch": 0.004, "pct_through": 0.0022, "pct_verticales": 0.5002, "pelotazos_espalda": 0.0979, "press_final": 2.5448, "press_media": 1.9086, "prog_x": 24.2207, "start_x": 45.1211, "starts_from_dispossess": 0.0421, "takeons_ok": 0.0362, "tempo": 0.4309, "transition_speed": 4.1346, "verticalidad_media": 0.3545}, "Grazer AK": {"atk_l": 40.2141, "atk_w": 32.9616, "ball_distance": 98.1642, "behind_line_ok": 0.0507, "broke_last_line": 0.0238, "broke_second_last": 0.1241, "cross_pvadded_max": 0.0003, "dang_runs": 0.1149, "deep_completions": 0.2145, "def_h": 32.8187, "dribbles_box": 0.0077, "dribbles_last_third": 0.0413, "duration_s": 23.4329, "hold_max": 10.3087, "hold_mean": 6.4454, "hold_min": 4.2461, "line_breaks": 0.4437, "max_x": 66.4975, "n_centros": 0.0956, "n_events": 4.9511, "n_involved": 1.7903, "n_passes": 2.5623, "opt_quality_mean": -0.0602, "paredes": 0.1616, "pass_options_mean": 8.6827, "passes_behind_line": 0.145, "pct_adentro": 0.5227, "pct_afuera": 0.3887, "pct_cortos": 0.3186, "pct_headpass": 0.0532, "pct_largos": 0.2686, "pct_launch": 0.1167, "pct_layoff": 0.0118, "pct_medios": 0.325, "pct_switch": 0.0053, "pct_through": 0.003, "pct_verticales": 0.5119, "pelotazos_espalda": 0.1131, "press_final": 2.4958, "press_media": 1.8163, "prog_x": 25.7852, "start_x": 41.848, "starts_from_dispossess": 0.0338, "takeons_ok": 0.0375, "tempo": 0.3873, "transition_speed": 4.142, "verticalidad_media": 0.3695}, "Hartberg": {"atk_l": 40.9458, "atk_w": 32.2481, "ball_distance": 94.8591, "behind_line_ok": 0.0527, "broke_last_line": 0.0221, "broke_second_last": 0.1256, "cross_pvadded_max": 0.0007, "dang_runs": 0.0981, "deep_completions": 0.2012, "def_h": 35.3189, "dribbles_box": 0.0091, "dribbles_last_third": 0.0426, "duration_s": 28.7856, "hold_max": 10.7828, "hold_mean": 6.949, "hold_min": 4.7359, "line_breaks": 0.4465, "max_x": 63.3581, "n_centros": 0.0694, "n_events": 5.277, "n_involved": 1.6715, "n_passes": 2.5464, "opt_quality_mean": -0.1231, "paredes": 0.1739, "pass_options_mean": 8.8033, "passes_behind_line": 0.1367, "pct_adentro": 0.4849, "pct_afuera": 0.4285, "pct_cortos": 0.3245, "pct_headpass": 0.0411, "pct_largos": 0.2704, "pct_launch": 0.1133, "pct_layoff": 0.0106, "pct_medios": 0.3197, "pct_switch": 0.0068, "pct_through": 0.003, "pct_verticales": 0.5487, "pelotazos_espalda": 0.1058, "press_final": 2.6448, "press_media": 1.8088, "prog_x": 27.5093, "start_x": 37.1227, "starts_from_dispossess": 0.0421, "takeons_ok": 0.038, "tempo": 0.3486, "transition_speed": 4.1107, "verticalidad_media": 0.4257}, "LASK": {"atk_l": 41.2851, "atk_w": 32.9391, "ball_distance": 128.0927, "behind_line_ok": 0.0561, "broke_last_line": 0.0327, "broke_second_last": 0.1543, "cross_pvadded_max": 0.0016, "dang_runs": 0.1747, "deep_completions": 0.3753, "def_h": 31.0286, "dribbles_box": 0.0128, "dribbles_last_third": 0.0554, "duration_s": 32.9366, "hold_max": 10.1356, "hold_mean": 6.0665, "hold_min": 3.8436, "line_breaks": 0.5511, "max_x": 68.8257, "n_centros": 0.1395, "n_events": 5.9959, "n_involved": 1.8257, "n_passes": 2.9937, "opt_quality_mean": 0.076, "paredes": 0.232, "pass_options_mean": 8.9176, "passes_behind_line": 0.1284, "pct_adentro": 0.514, "pct_afuera": 0.3894, "pct_cortos": 0.35, "pct_headpass": 0.0425, "pct_largos": 0.21, "pct_launch": 0.0799, "pct_layoff": 0.0084, "pct_medios": 0.3444, "pct_switch": 0.0057, "pct_through": 0.0036, "pct_verticales": 0.4663, "pelotazos_espalda": 0.0923, "press_final": 2.5412, "press_media": 1.8247, "prog_x": 25.0972, "start_x": 44.8983, "starts_from_dispossess": 0.0402, "takeons_ok": 0.0577, "tempo": 0.353, "transition_speed": 3.3731, "verticalidad_media": 0.3412}, "Rapid": {"atk_l": 41.5174, "atk_w": 32.1031, "ball_distance": 141.9981, "behind_line_ok": 0.05, "broke_last_line": 0.024, "broke_second_last": 0.1525, "cross_pvadded_max": 0.0013, "dang_runs": 0.1577, "deep_completions": 0.2972, "def_h": 30.8785, "dribbles_box": 0.0139, "dribbles_last_third": 0.0612, "duration_s": 29.5006, "hold_max": 10.5411, "hold_mean": 6.2131, "hold_min": 3.8774, "line_breaks": 0.684, "max_x": 68.8984, "n_centros": 0.1429, "n_events": 6.0217, "n_involved": 1.9196, "n_passes": 3.3233, "opt_quality_mean": 0.0602, "paredes": 0.2988, "pass_options_mean": 9.0017, "passes_behind_line": 0.1311, "pct_adentro": 0.5146, "pct_afuera": 0.4005, "pct_cortos": 0.3702, "pct_headpass": 0.0482, "pct_largos": 0.1975, "pct_launch": 0.0816, "pct_layoff": 0.01, "pct_medios": 0.3486, "pct_switch": 0.0043, "pct_through": 0.0033, "pct_verticales": 0.4505, "pelotazos_espalda": 0.0937, "press_final": 2.603, "press_media": 1.8846, "prog_x": 24.9013, "start_x": 44.9249, "starts_from_dispossess": 0.0455, "takeons_ok": 0.0588, "tempo": 0.3932, "transition_speed": 3.3221, "verticalidad_media": 0.2935}, "Rheindorf Altach": {"atk_l": 39.4675, "atk_w": 31.7876, "ball_distance": 96.4901, "behind_line_ok": 0.0442, "broke_last_line": 0.0224, "broke_second_last": 0.1538, "cross_pvadded_max": 0.0008, "dang_runs": 0.105, "deep_completions": 0.2442, "def_h": 32.1346, "dribbles_box": 0.0104, "dribbles_last_third": 0.0438, "duration_s": 33.3833, "hold_max": 9.9646, "hold_mean": 6.1328, "hold_min": 4.0123, "line_breaks": 0.4756, "max_x": 67.0237, "n_centros": 0.1018, "n_events": 6.0242, "n_involved": 1.7962, "n_passes": 2.7682, "opt_quality_mean": -0.0168, "paredes": 0.207, "pass_options_mean": 8.7443, "passes_behind_line": 0.1371, "pct_adentro": 0.5031, "pct_afuera": 0.4164, "pct_cortos": 0.3587, "pct_headpass": 0.0558, "pct_largos": 0.232, "pct_launch": 0.1228, "pct_layoff": 0.0113, "pct_medios": 0.33, "pct_switch": 0.0058, "pct_through": 0.0014, "pct_verticales": 0.504, "pelotazos_espalda": 0.1091, "press_final": 2.423, "press_media": 1.8048, "prog_x": 24.8434, "start_x": 43.2419, "starts_from_dispossess": 0.0376, "takeons_ok": 0.0406, "tempo": 0.3904, "transition_speed": 3.7629, "verticalidad_media": 0.3538}, "Ried": {"atk_l": 38.9549, "atk_w": 32.3391, "ball_distance": 85.088, "behind_line_ok": 0.0501, "broke_last_line": 0.0276, "broke_second_last": 0.127, "cross_pvadded_max": 0.001, "dang_runs": 0.0733, "deep_completions": 0.2673, "def_h": 29.5834, "dribbles_box": 0.0098, "dribbles_last_third": 0.0581, "duration_s": 21.8472, "hold_max": 11.7491, "hold_mean": 7.7604, "hold_min": 5.4566, "line_breaks": 0.4445, "max_x": 68.8824, "n_centros": 0.0974, "n_events": 4.8076, "n_involved": 1.7582, "n_passes": 2.4681, "opt_quality_mean": 0.0981, "paredes": 0.1307, "pass_options_mean": 8.5107, "passes_behind_line": 0.1205, "pct_adentro": 0.5328, "pct_afuera": 0.3765, "pct_cortos": 0.3386, "pct_headpass": 0.0604, "pct_largos": 0.2558, "pct_launch": 0.1117, "pct_layoff": 0.0072, "pct_medios": 0.3173, "pct_switch": 0.0073, "pct_through": 0.0047, "pct_verticales": 0.5036, "pelotazos_espalda": 0.0936, "press_final": 2.4642, "press_media": 1.8193, "prog_x": 24.0286, "start_x": 46.0996, "starts_from_dispossess": 0.0416, "takeons_ok": 0.0509, "tempo": 0.3592, "transition_speed": 3.6727, "verticalidad_media": 0.3676}, "Salzburg": {"atk_l": 39.2285, "atk_w": 32.0684, "ball_distance": 131.7378, "behind_line_ok": 0.0494, "broke_last_line": 0.0308, "broke_second_last": 0.1669, "cross_pvadded_max": 0.0017, "dang_runs": 0.1174, "deep_completions": 0.3746, "def_h": 30.1495, "dribbles_box": 0.0165, "dribbles_last_third": 0.078, "duration_s": 22.8739, "hold_max": 8.86, "hold_mean": 5.2821, "hold_min": 3.2415, "line_breaks": 0.6184, "max_x": 69.0844, "n_centros": 0.1169, "n_events": 5.4983, "n_involved": 1.926, "n_passes": 3.3505, "opt_quality_mean": 0.112, "paredes": 0.3006, "pass_options_mean": 8.9275, "passes_behind_line": 0.1135, "pct_adentro": 0.5313, "pct_afuera": 0.388, "pct_cortos": 0.4335, "pct_headpass": 0.0382, "pct_largos": 0.1608, "pct_launch": 0.0677, "pct_layoff": 0.0099, "pct_medios": 0.3259, "pct_switch": 0.004, "pct_through": 0.0042, "pct_verticales": 0.4583, "pelotazos_espalda": 0.0722, "press_final": 2.7401, "press_media": 1.9344, "prog_x": 23.1434, "start_x": 46.906, "starts_from_dispossess": 0.0484, "takeons_ok": 0.0615, "tempo": 0.3852, "transition_speed": 3.0373, "verticalidad_media": 0.2968}, "Sturm Graz": {"atk_l": 36.3699, "atk_w": 32.3511, "ball_distance": 91.0502, "behind_line_ok": 0.051, "broke_last_line": 0.0259, "broke_second_last": 0.162, "cross_pvadded_max": 0.0015, "dang_runs": 0.1131, "deep_completions": 0.3484, "def_h": 29.1157, "dribbles_box": 0.0178, "dribbles_last_third": 0.0769, "duration_s": 20.4032, "hold_max": 9.5345, "hold_mean": 6.0523, "hold_min": 4.0559, "line_breaks": 0.4662, "max_x": 70.1849, "n_centros": 0.1193, "n_events": 4.8627, "n_involved": 1.8065, "n_passes": 2.6476, "opt_quality_mean": 0.0896, "paredes": 0.2027, "pass_options_mean": 8.8573, "passes_behind_line": 0.1187, "pct_adentro": 0.5315, "pct_afuera": 0.3776, "pct_cortos": 0.3846, "pct_headpass": 0.0449, "pct_largos": 0.2107, "pct_launch": 0.0849, "pct_layoff": 0.0109, "pct_medios": 0.3148, "pct_switch": 0.0022, "pct_through": 0.0031, "pct_verticales": 0.4816, "pelotazos_espalda": 0.0821, "press_final": 2.6735, "press_media": 1.9529, "prog_x": 24.1674, "start_x": 47.5494, "starts_from_dispossess": 0.0416, "takeons_ok": 0.0565, "tempo": 0.3991, "transition_speed": 3.7804, "verticalidad_media": 0.3456}, "WSG Tirol": {"atk_l": 40.0213, "atk_w": 32.019, "ball_distance": 96.3509, "behind_line_ok": 0.0423, "broke_last_line": 0.0179, "broke_second_last": 0.1501, "cross_pvadded_max": 0.0008, "dang_runs": 0.0978, "deep_completions": 0.2368, "def_h": 31.3692, "dribbles_box": 0.0077, "dribbles_last_third": 0.0466, "duration_s": 21.532, "hold_max": 10.6256, "hold_mean": 6.7855, "hold_min": 4.4376, "line_breaks": 0.4576, "max_x": 67.0537, "n_centros": 0.101, "n_events": 4.8154, "n_involved": 1.8301, "n_passes": 2.5913, "opt_quality_mean": 0.0194, "paredes": 0.1677, "pass_options_mean": 8.6004, "passes_behind_line": 0.1213, "pct_adentro": 0.5455, "pct_afuera": 0.3705, "pct_cortos": 0.3451, "pct_headpass": 0.0612, "pct_largos": 0.2378, "pct_launch": 0.1137, "pct_layoff": 0.0107, "pct_medios": 0.3352, "pct_switch": 0.0068, "pct_through": 0.0036, "pct_verticales": 0.4902, "pelotazos_espalda": 0.0993, "press_final": 2.5085, "press_media": 1.8154, "prog_x": 23.1411, "start_x": 45.3298, "starts_from_dispossess": 0.0368, "takeons_ok": 0.0364, "tempo": 0.3957, "transition_speed": 3.8002, "verticalidad_media": 0.3514}, "Wolfsberger AC": {"atk_l": 41.192, "atk_w": 32.9606, "ball_distance": 118.7524, "behind_line_ok": 0.0584, "broke_last_line": 0.0234, "broke_second_last": 0.1606, "cross_pvadded_max": 0.0009, "dang_runs": 0.1349, "deep_completions": 0.3315, "def_h": 31.9163, "dribbles_box": 0.0093, "dribbles_last_third": 0.0415, "duration_s": 25.9303, "hold_max": 9.9586, "hold_mean": 5.9875, "hold_min": 3.7005, "line_breaks": 0.5378, "max_x": 68.2962, "n_centros": 0.1089, "n_events": 5.5011, "n_involved": 1.8751, "n_passes": 3.0365, "opt_quality_mean": -0.0127, "paredes": 0.2402, "pass_options_mean": 8.5688, "passes_behind_line": 0.1457, "pct_adentro": 0.534, "pct_afuera": 0.394, "pct_cortos": 0.3343, "pct_headpass": 0.0417, "pct_largos": 0.2253, "pct_launch": 0.0923, "pct_layoff": 0.0112, "pct_medios": 0.3695, "pct_switch": 0.0062, "pct_through": 0.003, "pct_verticales": 0.4906, "pelotazos_espalda": 0.11, "press_final": 2.4757, "press_media": 1.8019, "prog_x": 26.2267, "start_x": 42.9304, "starts_from_dispossess": 0.0396, "takeons_ok": 0.0429, "tempo": 0.3935, "transition_speed": 3.8297, "verticalidad_media": 0.3405}}, "team_eje_norm_gen": {"Austria Wien": {"eje_verticalidad": -0.0177, "eje_elaboracion": 0.0116, "eje_individual": -0.0068, "eje_rotura_lineas": 0.0135, "eje_amplitud_centro": 0.0197, "eje_profundidad_espalda": 0.0476, "eje_robo_alto": 0.0223, "eje_aereo_segunda": -0.0029}, "Blau-Weiß Linz": {"eje_verticalidad": -0.0028, "eje_elaboracion": -0.0189, "eje_individual": -0.0478, "eje_rotura_lineas": -0.0297, "eje_amplitud_centro": -0.0164, "eje_profundidad_espalda": -0.0086, "eje_robo_alto": 0.0124, "eje_aereo_segunda": 0.0341}, "Grazer AK": {"eje_verticalidad": 0.0465, "eje_elaboracion": -0.0674, "eje_individual": -0.0305, "eje_rotura_lineas": -0.0251, "eje_amplitud_centro": -0.0191, "eje_profundidad_espalda": -0.0027, "eje_robo_alto": -0.0708, "eje_aereo_segunda": 0.0372}, "Hartberg": {"eje_verticalidad": 0.0993, "eje_elaboracion": -0.0555, "eje_individual": -0.0314, "eje_rotura_lineas": -0.0262, "eje_amplitud_centro": -0.0003, "eje_profundidad_espalda": -0.0172, "eje_robo_alto": -0.1389, "eje_aereo_segunda": 0.0014}, "LASK": {"eje_verticalidad": -0.0708, "eje_elaboracion": 0.0234, "eje_individual": 0.0383, "eje_rotura_lineas": 0.0263, "eje_amplitud_centro": 0.0303, "eje_profundidad_espalda": 0.0296, "eje_robo_alto": 0.0033, "eje_aereo_segunda": -0.0498}, "Rapid": {"eje_verticalidad": -0.1135, "eje_elaboracion": 0.0874, "eje_individual": 0.042, "eje_rotura_lineas": 0.0269, "eje_amplitud_centro": 0.0348, "eje_profundidad_espalda": -0.0011, "eje_robo_alto": 0.0173, "eje_aereo_segunda": -0.0273}, "Rheindorf Altach": {"eje_verticalidad": -0.0043, "eje_elaboracion": 0.0016, "eje_individual": -0.0219, "eje_rotura_lineas": -0.0124, "eje_amplitud_centro": 0.0157, "eje_profundidad_espalda": -0.0086, "eje_robo_alto": -0.0346, "eje_aereo_segunda": 0.0476}, "Ried": {"eje_verticalidad": 0.0145, "eje_elaboracion": -0.0755, "eje_individual": -0.008, "eje_rotura_lineas": -0.008, "eje_amplitud_centro": -0.0152, "eje_profundidad_espalda": -0.0189, "eje_robo_alto": 0.0295, "eje_aereo_segunda": 0.019}, "Salzburg": {"eje_verticalidad": -0.1426, "eje_elaboracion": 0.127, "eje_individual": 0.0543, "eje_rotura_lineas": 0.0433, "eje_amplitud_centro": -0.0055, "eje_profundidad_espalda": -0.0055, "eje_robo_alto": 0.0621, "eje_aereo_segunda": -0.0652}, "Sturm Graz": {"eje_verticalidad": -0.0395, "eje_elaboracion": -0.0024, "eje_individual": 0.0493, "eje_rotura_lineas": 0.0066, "eje_amplitud_centro": -0.0241, "eje_profundidad_espalda": -0.0009, "eje_robo_alto": 0.0568, "eje_aereo_segunda": -0.0246}, "WSG Tirol": {"eje_verticalidad": -0.0089, "eje_elaboracion": -0.0465, "eje_individual": -0.0321, "eje_rotura_lineas": -0.012, "eje_amplitud_centro": -0.0201, "eje_profundidad_espalda": -0.0327, "eje_robo_alto": 0.0028, "eje_aereo_segunda": 0.0432}, "Wolfsberger AC": {"eje_verticalidad": -0.0203, "eje_elaboracion": 0.0144, "eje_individual": -0.0139, "eje_rotura_lineas": 0.0107, "eje_amplitud_centro": 0.0057, "eje_profundidad_espalda": 0.0442, "eje_robo_alto": -0.0354, "eje_aereo_segunda": -0.02}}, "team_eje_norm_con": {"Austria Wien": {"eje_verticalidad": -0.0239, "eje_elaboracion": 0.0268, "eje_individual": 0.0092, "eje_rotura_lineas": -0.0036, "eje_amplitud_centro": -0.0231, "eje_profundidad_espalda": -0.0253, "eje_robo_alto": -0.0593, "eje_aereo_segunda": -0.0105}, "Blau-Weiß Linz": {"eje_verticalidad": 0.0105, "eje_elaboracion": -0.017, "eje_individual": -0.0059, "eje_rotura_lineas": -0.0179, "eje_amplitud_centro": -0.0295, "eje_profundidad_espalda": -0.0107, "eje_robo_alto": 0.0003, "eje_aereo_segunda": 0.0337}, "Grazer AK": {"eje_verticalidad": -0.0044, "eje_elaboracion": -0.0095, "eje_individual": -0.0306, "eje_rotura_lineas": -0.0187, "eje_amplitud_centro": 0.0067, "eje_profundidad_espalda": 0.0015, "eje_robo_alto": 0.0139, "eje_aereo_segunda": 0.0236}, "Hartberg": {"eje_verticalidad": -0.1528, "eje_elaboracion": 0.1432, "eje_individual": 0.0429, "eje_rotura_lineas": 0.0668, "eje_amplitud_centro": 0.061, "eje_profundidad_espalda": 0.1009, "eje_robo_alto": 0.0981, "eje_aereo_segunda": -0.0786}, "LASK": {"eje_verticalidad": -0.0583, "eje_elaboracion": 0.0429, "eje_individual": -0.0034, "eje_rotura_lineas": 0.0262, "eje_amplitud_centro": 0.0068, "eje_profundidad_espalda": 0.0189, "eje_robo_alto": 0.0036, "eje_aereo_segunda": -0.0408}, "Rapid": {"eje_verticalidad": -0.0182, "eje_elaboracion": -0.001, "eje_individual": -0.0053, "eje_rotura_lineas": 0.0174, "eje_amplitud_centro": -0.0055, "eje_profundidad_espalda": 0.0079, "eje_robo_alto": -0.0211, "eje_aereo_segunda": -0.0008}, "Rheindorf Altach": {"eje_verticalidad": 0.013, "eje_elaboracion": -0.057, "eje_individual": 0.0056, "eje_rotura_lineas": -0.0279, "eje_amplitud_centro": 0.0006, "eje_profundidad_espalda": 0.0212, "eje_robo_alto": 0.0106, "eje_aereo_segunda": 0.0153}, "Ried": {"eje_verticalidad": 0.0104, "eje_elaboracion": -0.0453, "eje_individual": -0.0006, "eje_rotura_lineas": -0.0161, "eje_amplitud_centro": -0.0011, "eje_profundidad_espalda": -0.0012, "eje_robo_alto": -0.018, "eje_aereo_segunda": 0.0303}, "Salzburg": {"eje_verticalidad": 0.0184, "eje_elaboracion": -0.0499, "eje_individual": -0.0167, "eje_rotura_lineas": -0.0182, "eje_amplitud_centro": -0.0074, "eje_profundidad_espalda": -0.0265, "eje_robo_alto": -0.0592, "eje_aereo_segunda": 0.009}, "Sturm Graz": {"eje_verticalidad": 0.0475, "eje_elaboracion": -0.0673, "eje_individual": 0.001, "eje_rotura_lineas": -0.0246, "eje_amplitud_centro": -0.0011, "eje_profundidad_espalda": -0.0324, "eje_robo_alto": -0.0528, "eje_aereo_segunda": 0.0263}, "WSG Tirol": {"eje_verticalidad": -0.067, "eje_elaboracion": 0.0289, "eje_individual": -0.0234, "eje_rotura_lineas": 0.0196, "eje_amplitud_centro": 0.0064, "eje_profundidad_espalda": -0.015, "eje_robo_alto": 0.0153, "eje_aereo_segunda": 0.0025}, "Wolfsberger AC": {"eje_verticalidad": -0.0402, "eje_elaboracion": 0.0072, "eje_individual": 0.0199, "eje_rotura_lineas": 0.0122, "eje_amplitud_centro": -0.0069, "eje_profundidad_espalda": -0.0141, "eje_robo_alto": 0.0011, "eje_aereo_segunda": -0.0201}}} \ No newline at end of file diff --git a/vendor/data/ejes/austrian-bundesliga/25-26/team_profiles.parquet b/vendor/data/ejes/austrian-bundesliga/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..cbb0218ee5c2315facb1c6bab1cc6dd32eb86631 --- /dev/null +++ b/vendor/data/ejes/austrian-bundesliga/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1784b7725e7c99c700c598a05c435111093633695beb78b206a076c9b86dedff +size 8157 diff --git a/vendor/data/ejes/belgian-challenger-pro-league/25-26/ejes_definition.json b/vendor/data/ejes/belgian-challenger-pro-league/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/belgian-challenger-pro-league/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/belgian-challenger-pro-league/25-26/match_team_ejes.parquet b/vendor/data/ejes/belgian-challenger-pro-league/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..a832fe020d389b23d23b4ae29ce54f0fe25b4570 --- /dev/null +++ b/vendor/data/ejes/belgian-challenger-pro-league/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cfab575bd22847b5ff6a5b97be3c5479d525e1bcf91cb4d8ce62ee364669212 +size 67505 diff --git a/vendor/data/ejes/belgian-challenger-pro-league/25-26/match_team_vars.parquet b/vendor/data/ejes/belgian-challenger-pro-league/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..89b8e5fce14d75e3e0f82a025888331766b9955c --- /dev/null +++ b/vendor/data/ejes/belgian-challenger-pro-league/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2061185f9c5c4ce62dfed0afa9b3bc3b4be377c0b5684d646c30dec3e7e883e9 +size 249583 diff --git a/vendor/data/ejes/belgian-challenger-pro-league/25-26/predictor.json b/vendor/data/ejes/belgian-challenger-pro-league/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..48ba157cefe0397de5468096104e07405c8c7658 --- /dev/null +++ b/vendor/data/ejes/belgian-challenger-pro-league/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.9531, "con": 0.4901, "intercept": 0.013}, "elaboracion": {"gen": -0.1909, "con": -0.2175, "intercept": 0.5071}, "individual": {"gen": -0.1567, "con": -0.172, "intercept": 0.3343}, "rotura_lineas": {"gen": 0.9102, "con": 0.7676, "intercept": 0.0}, "amplitud_centro": {"gen": -0.1782, "con": -0.2534, "intercept": 0.2314}, "profundidad_espalda": {"gen": -0.1951, "con": -0.3453, "intercept": 0.223}, "robo_alto": {"gen": 0.8256, "con": 0.7802, "intercept": 0.0057}, "aereo_segunda": {"gen": 0.9255, "con": 0.6728, "intercept": 0.0007}} \ No newline at end of file diff --git a/vendor/data/ejes/belgian-challenger-pro-league/25-26/scales.json b/vendor/data/ejes/belgian-challenger-pro-league/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..a05378241668f9e83ecabeedec7a3c9fa7686a69 --- /dev/null +++ b/vendor/data/ejes/belgian-challenger-pro-league/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 1.7236, "atk_w": 1.3367, "ball_distance": 45.3685, "behind_line_ok": 0.029, "broke_last_line": 0.0186, "broke_second_last": 0.0467, "cross_pvadded_max": 0.0158, "dang_runs": 0.0845, "deep_completions": 8.084, "def_h": 2.9379, "dribbles_box": 0.3954, "dribbles_last_third": 1.7019, "duration_s": 410.166, "hold_max": 27.4279, "hold_mean": 0.8223, "hold_min": 0.8067, "line_breaks": 0.2539, "max_x": 4.8193, "n_centros": 2.6303, "n_events": 128.7672, "n_involved": 0.1519, "n_passes": 71.4463, "opt_quality_mean": 0.1382, "paredes": 7.4493, "pass_options_mean": 1.9819, "passes_behind_line": 0.0477, "pct_adentro": 0.0333, "pct_afuera": 0.0318, "pct_cortos": 0.0526, "pct_headpass": 0.014, "pct_largos": 0.0441, "pct_launch": 0.0311, "pct_layoff": 0.0052, "pct_medios": 0.0427, "pct_switch": 0.0047, "pct_through": 0.0035, "pct_verticales": 0.0483, "pelotazos_espalda": 0.0383, "press_final": 0.4256, "press_media": 0.2962, "prog_x": 5.9722, "start_x": 5.5229, "starts_from_dispossess": 0.0171, "takeons_ok": 1.343, "tempo": 0.0393, "transition_speed": 0.6974, "verticalidad_media": 0.0573}, "eje_sigma": {"eje_verticalidad": 0.105, "eje_elaboracion": 4.8283, "eje_individual": 3.6518, "eje_rotura_lineas": 0.0663, "eje_amplitud_centro": 2.1898, "eje_profundidad_espalda": 1.9536, "eje_robo_alto": 0.1165, "eje_aereo_segunda": 0.0651}, "eje_match_mean": {"eje_verticalidad": -0.0293, "eje_elaboracion": 0.36, "eje_individual": 0.2516, "eje_rotura_lineas": -0.0001, "eje_amplitud_centro": 0.1616, "eje_profundidad_espalda": 0.1448, "eje_robo_alto": -0.0094, "eje_aereo_segunda": -0.0011}, "eje_match_std": {"eje_verticalidad": 0.1307, "eje_elaboracion": 4.8926, "eje_individual": 3.7017, "eje_rotura_lineas": 0.0752, "eje_amplitud_centro": 2.2192, "eje_profundidad_espalda": 1.9796, "eje_robo_alto": 0.1263, "eje_aereo_segunda": 0.0749}, "team_var_norm": {"Anderlecht II": {"atk_l": 42.7023, "atk_w": 33.6565, "ball_distance": 108.4924, "behind_line_ok": 0.039, "broke_last_line": 0.0329, "broke_second_last": 0.1626, "cross_pvadded_max": 0.0007, "dang_runs": 0.1557, "deep_completions": 0.3214, "def_h": 33.0482, "dribbles_box": 0.0086, "dribbles_last_third": 0.0596, "duration_s": 21.3761, "hold_max": 9.6916, "hold_mean": 5.5692, "hold_min": 3.1803, "line_breaks": 0.5548, "max_x": 66.6222, "n_centros": 0.1146, "n_events": 5.1205, "n_involved": 1.7985, "n_passes": 3.1867, "opt_quality_mean": 0.0335, "paredes": 0.2571, "pass_options_mean": 8.3246, "passes_behind_line": 0.1044, "pct_adentro": 0.5025, "pct_afuera": 0.3977, "pct_cortos": 0.3868, "pct_headpass": 0.0251, "pct_largos": 0.1748, "pct_launch": 0.0722, "pct_layoff": 0.0103, "pct_medios": 0.3397, "pct_switch": 0.0043, "pct_through": 0.0031, "pct_verticales": 0.4433, "pelotazos_espalda": 0.0788, "press_final": 2.4448, "press_media": 1.7429, "prog_x": 24.205, "start_x": 43.9027, "starts_from_dispossess": 0.0428, "takeons_ok": 0.0503, "tempo": 0.3429, "transition_speed": 3.0991, "verticalidad_media": 0.2968}, "Beerschot": {"atk_l": 42.0656, "atk_w": 32.7335, "ball_distance": 132.7431, "behind_line_ok": 0.0659, "broke_last_line": 0.0359, "broke_second_last": 0.1651, "cross_pvadded_max": 0.0019, "dang_runs": 0.1623, "deep_completions": 0.432, "def_h": 29.485, "dribbles_box": 0.0135, "dribbles_last_third": 0.0638, "duration_s": 38.6316, "hold_max": 10.2034, "hold_mean": 5.4474, "hold_min": 3.1964, "line_breaks": 0.7118, "max_x": 70.6205, "n_centros": 0.1534, "n_events": 6.8399, "n_involved": 1.9132, "n_passes": 3.3892, "opt_quality_mean": 0.1204, "paredes": 0.2979, "pass_options_mean": 8.9905, "passes_behind_line": 0.1352, "pct_adentro": 0.5198, "pct_afuera": 0.3892, "pct_cortos": 0.4038, "pct_headpass": 0.0434, "pct_largos": 0.179, "pct_launch": 0.0746, "pct_layoff": 0.0103, "pct_medios": 0.3271, "pct_switch": 0.0026, "pct_through": 0.0026, "pct_verticales": 0.4541, "pelotazos_espalda": 0.0905, "press_final": 2.4449, "press_media": 1.803, "prog_x": 24.2624, "start_x": 47.5923, "starts_from_dispossess": 0.044, "takeons_ok": 0.0482, "tempo": 0.3688, "transition_speed": 3.0466, "verticalidad_media": 0.292}, "Beveren": {"atk_l": 41.0241, "atk_w": 33.3067, "ball_distance": 122.413, "behind_line_ok": 0.0808, "broke_last_line": 0.048, "broke_second_last": 0.1845, "cross_pvadded_max": 0.0016, "dang_runs": 0.1393, "deep_completions": 0.466, "def_h": 29.3237, "dribbles_box": 0.0103, "dribbles_last_third": 0.0567, "duration_s": 28.2254, "hold_max": 8.6793, "hold_mean": 4.8505, "hold_min": 2.7619, "line_breaks": 0.6345, "max_x": 71.179, "n_centros": 0.1604, "n_events": 5.8005, "n_involved": 1.9507, "n_passes": 3.3716, "opt_quality_mean": 0.093, "paredes": 0.3283, "pass_options_mean": 8.6394, "passes_behind_line": 0.1482, "pct_adentro": 0.5238, "pct_afuera": 0.3987, "pct_cortos": 0.3809, "pct_headpass": 0.0528, "pct_largos": 0.1811, "pct_launch": 0.0836, "pct_layoff": 0.0098, "pct_medios": 0.362, "pct_switch": 0.0053, "pct_through": 0.0026, "pct_verticales": 0.4627, "pelotazos_espalda": 0.1065, "press_final": 2.3571, "press_media": 1.8452, "prog_x": 23.8641, "start_x": 48.3481, "starts_from_dispossess": 0.0423, "takeons_ok": 0.0468, "tempo": 0.3802, "transition_speed": 3.2266, "verticalidad_media": 0.305}, "Club Brugge II": {"atk_l": 44.162, "atk_w": 33.1305, "ball_distance": 147.6823, "behind_line_ok": 0.0541, "broke_last_line": 0.0352, "broke_second_last": 0.1646, "cross_pvadded_max": 0.0007, "dang_runs": 0.171, "deep_completions": 0.3324, "def_h": 33.8166, "dribbles_box": 0.0116, "dribbles_last_third": 0.0631, "duration_s": 34.7632, "hold_max": 9.2318, "hold_mean": 4.9813, "hold_min": 2.6801, "line_breaks": 0.6448, "max_x": 64.8806, "n_centros": 0.1024, "n_events": 6.5448, "n_involved": 1.9336, "n_passes": 3.7212, "opt_quality_mean": -0.0205, "paredes": 0.3756, "pass_options_mean": 8.8121, "passes_behind_line": 0.1158, "pct_adentro": 0.5125, "pct_afuera": 0.3976, "pct_cortos": 0.4346, "pct_headpass": 0.0362, "pct_largos": 0.1508, "pct_launch": 0.0581, "pct_layoff": 0.0114, "pct_medios": 0.3251, "pct_switch": 0.0044, "pct_through": 0.0026, "pct_verticales": 0.4396, "pelotazos_espalda": 0.0749, "press_final": 2.434, "press_media": 1.8098, "prog_x": 24.3783, "start_x": 41.5743, "starts_from_dispossess": 0.0428, "takeons_ok": 0.0608, "tempo": 0.3505, "transition_speed": 2.9031, "verticalidad_media": 0.293}, "Eupen": {"atk_l": 41.2861, "atk_w": 33.2173, "ball_distance": 143.9648, "behind_line_ok": 0.0603, "broke_last_line": 0.0322, "broke_second_last": 0.14, "cross_pvadded_max": 0.0054, "dang_runs": 0.1731, "deep_completions": 4.1136, "def_h": 33.6418, "dribbles_box": 0.069, "dribbles_last_third": 0.3257, "duration_s": 200.8216, "hold_max": 11.6946, "hold_mean": 5.6515, "hold_min": 3.3081, "line_breaks": 0.6267, "max_x": 65.5531, "n_centros": 1.0627, "n_events": 58.6838, "n_involved": 1.914, "n_passes": 34.4793, "opt_quality_mean": -0.0468, "paredes": 3.9103, "pass_options_mean": 8.661, "passes_behind_line": 0.1352, "pct_adentro": 0.5129, "pct_afuera": 0.4048, "pct_cortos": 0.3855, "pct_headpass": 0.0474, "pct_largos": 0.1885, "pct_launch": 0.0874, "pct_layoff": 0.013, "pct_medios": 0.3453, "pct_switch": 0.0034, "pct_through": 0.0026, "pct_verticales": 0.4774, "pelotazos_espalda": 0.0985, "press_final": 2.5297, "press_media": 1.8093, "prog_x": 26.4393, "start_x": 40.2952, "starts_from_dispossess": 0.0384, "takeons_ok": 0.287, "tempo": 0.3612, "transition_speed": 3.0764, "verticalidad_media": 0.3318}, "Francs Borains": {"atk_l": 41.514, "atk_w": 32.453, "ball_distance": 99.395, "behind_line_ok": 0.0491, "broke_last_line": 0.0293, "broke_second_last": 0.1348, "cross_pvadded_max": 0.0009, "dang_runs": 0.1231, "deep_completions": 0.3149, "def_h": 31.8689, "dribbles_box": 0.0068, "dribbles_last_third": 0.0436, "duration_s": 22.832, "hold_max": 8.9889, "hold_mean": 5.2805, "hold_min": 3.1411, "line_breaks": 0.512, "max_x": 67.4857, "n_centros": 0.1434, "n_events": 5.0785, "n_involved": 1.8496, "n_passes": 2.8164, "opt_quality_mean": 0.0405, "paredes": 0.2249, "pass_options_mean": 8.8496, "passes_behind_line": 0.1101, "pct_adentro": 0.5087, "pct_afuera": 0.3955, "pct_cortos": 0.4125, "pct_headpass": 0.0506, "pct_largos": 0.1864, "pct_launch": 0.091, "pct_layoff": 0.0119, "pct_medios": 0.306, "pct_switch": 0.0027, "pct_through": 0.0028, "pct_verticales": 0.4912, "pelotazos_espalda": 0.0777, "press_final": 2.4829, "press_media": 1.9075, "prog_x": 23.9258, "start_x": 44.6318, "starts_from_dispossess": 0.0488, "takeons_ok": 0.0428, "tempo": 0.3932, "transition_speed": 3.7052, "verticalidad_media": 0.3595}, "Genk II": {"atk_l": 43.4091, "atk_w": 33.2013, "ball_distance": 132.6249, "behind_line_ok": 0.0577, "broke_last_line": 0.0305, "broke_second_last": 0.1619, "cross_pvadded_max": 0.0013, "dang_runs": 0.1497, "deep_completions": 0.3047, "def_h": 33.6594, "dribbles_box": 0.0157, "dribbles_last_third": 0.0744, "duration_s": 32.5447, "hold_max": 10.0733, "hold_mean": 5.4793, "hold_min": 3.0274, "line_breaks": 0.5921, "max_x": 65.5494, "n_centros": 0.1036, "n_events": 6.1324, "n_involved": 1.8419, "n_passes": 3.3311, "opt_quality_mean": -0.0034, "paredes": 0.295, "pass_options_mean": 9.037, "passes_behind_line": 0.1225, "pct_adentro": 0.4893, "pct_afuera": 0.4155, "pct_cortos": 0.3732, "pct_headpass": 0.0311, "pct_largos": 0.1645, "pct_launch": 0.0679, "pct_layoff": 0.0099, "pct_medios": 0.368, "pct_switch": 0.0038, "pct_through": 0.0035, "pct_verticales": 0.4403, "pelotazos_espalda": 0.0862, "press_final": 2.6084, "press_media": 1.8353, "prog_x": 24.8843, "start_x": 41.9394, "starts_from_dispossess": 0.0473, "takeons_ok": 0.0746, "tempo": 0.3442, "transition_speed": 3.0561, "verticalidad_media": 0.2966}, "Gent II": {"atk_l": 41.7624, "atk_w": 32.2808, "ball_distance": 149.3387, "behind_line_ok": 0.0532, "broke_last_line": 0.035, "broke_second_last": 0.1945, "cross_pvadded_max": 0.0007, "dang_runs": 0.1451, "deep_completions": 0.3367, "def_h": 32.2867, "dribbles_box": 0.0089, "dribbles_last_third": 0.0544, "duration_s": 13.2771, "hold_max": 8.7088, "hold_mean": 4.8438, "hold_min": 2.6242, "line_breaks": 0.8061, "max_x": 66.1935, "n_centros": 0.0923, "n_events": 4.9849, "n_involved": 1.9343, "n_passes": 3.845, "opt_quality_mean": 0.0191, "paredes": 0.402, "pass_options_mean": 9.0581, "passes_behind_line": 0.1207, "pct_adentro": 0.5149, "pct_afuera": 0.3979, "pct_cortos": 0.4521, "pct_headpass": 0.031, "pct_largos": 0.1475, "pct_launch": 0.0635, "pct_layoff": 0.0118, "pct_medios": 0.3148, "pct_switch": 0.0045, "pct_through": 0.0025, "pct_verticales": 0.4174, "pelotazos_espalda": 0.0892, "press_final": 2.7271, "press_media": 2.0007, "prog_x": 22.855, "start_x": 44.6312, "starts_from_dispossess": 0.0481, "takeons_ok": 0.0507, "tempo": 0.3756, "transition_speed": 2.7206, "verticalidad_media": 0.2474}, "Kortrijk": {"atk_l": 43.5605, "atk_w": 33.7216, "ball_distance": 95.2631, "behind_line_ok": 0.0476, "broke_last_line": 0.0355, "broke_second_last": 0.1465, "cross_pvadded_max": 0.0014, "dang_runs": 0.1479, "deep_completions": 0.3544, "def_h": 30.4878, "dribbles_box": 0.0126, "dribbles_last_third": 0.058, "duration_s": 35.5824, "hold_max": 9.2574, "hold_mean": 5.5852, "hold_min": 3.3717, "line_breaks": 0.5453, "max_x": 68.8767, "n_centros": 0.1434, "n_events": 6.2775, "n_involved": 1.8281, "n_passes": 2.8543, "opt_quality_mean": 0.0733, "paredes": 0.2063, "pass_options_mean": 8.7037, "passes_behind_line": 0.1116, "pct_adentro": 0.54, "pct_afuera": 0.3711, "pct_cortos": 0.3921, "pct_headpass": 0.049, "pct_largos": 0.1961, "pct_launch": 0.0836, "pct_layoff": 0.0087, "pct_medios": 0.3241, "pct_switch": 0.006, "pct_through": 0.0038, "pct_verticales": 0.4743, "pelotazos_espalda": 0.0792, "press_final": 2.4428, "press_media": 1.8601, "prog_x": 23.2068, "start_x": 46.9456, "starts_from_dispossess": 0.0473, "takeons_ok": 0.0503, "tempo": 0.3756, "transition_speed": 3.5697, "verticalidad_media": 0.3395}, "Lierse SK": {"atk_l": 42.1223, "atk_w": 32.8715, "ball_distance": 97.8209, "behind_line_ok": 0.0481, "broke_last_line": 0.0259, "broke_second_last": 0.1459, "cross_pvadded_max": 0.0013, "dang_runs": 0.1267, "deep_completions": 0.3098, "def_h": 31.8162, "dribbles_box": 0.0098, "dribbles_last_third": 0.0637, "duration_s": 33.9616, "hold_max": 10.3114, "hold_mean": 5.938, "hold_min": 3.4401, "line_breaks": 0.4807, "max_x": 66.8774, "n_centros": 0.1211, "n_events": 6.1301, "n_involved": 1.8072, "n_passes": 2.9127, "opt_quality_mean": 0.004, "paredes": 0.2363, "pass_options_mean": 8.1575, "passes_behind_line": 0.1095, "pct_adentro": 0.527, "pct_afuera": 0.3893, "pct_cortos": 0.3835, "pct_headpass": 0.0539, "pct_largos": 0.1943, "pct_launch": 0.0848, "pct_layoff": 0.0109, "pct_medios": 0.3391, "pct_switch": 0.003, "pct_through": 0.0024, "pct_verticales": 0.4971, "pelotazos_espalda": 0.0791, "press_final": 2.3644, "press_media": 1.7755, "prog_x": 24.5163, "start_x": 43.2991, "starts_from_dispossess": 0.0436, "takeons_ok": 0.0481, "tempo": 0.3822, "transition_speed": 3.8771, "verticalidad_media": 0.3607}, "Liège": {"atk_l": 44.2965, "atk_w": 34.1653, "ball_distance": 119.7471, "behind_line_ok": 0.0513, "broke_last_line": 0.0343, "broke_second_last": 0.1416, "cross_pvadded_max": 0.0046, "dang_runs": 0.17, "deep_completions": 3.7874, "def_h": 31.9325, "dribbles_box": 0.1921, "dribbles_last_third": 0.933, "duration_s": 196.089, "hold_max": 11.1615, "hold_mean": 5.4194, "hold_min": 3.0601, "line_breaks": 0.5182, "max_x": 69.4685, "n_centros": 1.4151, "n_events": 61.8827, "n_involved": 1.8517, "n_passes": 33.2507, "opt_quality_mean": 0.018, "paredes": 3.5776, "pass_options_mean": 8.443, "passes_behind_line": 0.1223, "pct_adentro": 0.5067, "pct_afuera": 0.4052, "pct_cortos": 0.3932, "pct_headpass": 0.0462, "pct_largos": 0.2032, "pct_launch": 0.0806, "pct_layoff": 0.0104, "pct_medios": 0.3167, "pct_switch": 0.0068, "pct_through": 0.0022, "pct_verticales": 0.4753, "pelotazos_espalda": 0.0963, "press_final": 2.2958, "press_media": 1.6661, "prog_x": 28.5441, "start_x": 41.837, "starts_from_dispossess": 0.036, "takeons_ok": 0.5617, "tempo": 0.3793, "transition_speed": 3.8322, "verticalidad_media": 0.3432}, "Lokeren": {"atk_l": 41.6753, "atk_w": 32.9383, "ball_distance": 114.6654, "behind_line_ok": 0.0519, "broke_last_line": 0.0378, "broke_second_last": 0.1478, "cross_pvadded_max": 0.0012, "dang_runs": 0.1852, "deep_completions": 0.3777, "def_h": 30.3535, "dribbles_box": 0.0101, "dribbles_last_third": 0.0549, "duration_s": 27.2507, "hold_max": 9.9458, "hold_mean": 5.8119, "hold_min": 3.4874, "line_breaks": 0.4988, "max_x": 69.1177, "n_centros": 0.1448, "n_events": 5.4704, "n_involved": 1.8222, "n_passes": 3.0185, "opt_quality_mean": 0.1096, "paredes": 0.2751, "pass_options_mean": 9.0033, "passes_behind_line": 0.1122, "pct_adentro": 0.5227, "pct_afuera": 0.3866, "pct_cortos": 0.3817, "pct_headpass": 0.0396, "pct_largos": 0.1826, "pct_launch": 0.0863, "pct_layoff": 0.009, "pct_medios": 0.346, "pct_switch": 0.0045, "pct_through": 0.002, "pct_verticales": 0.4616, "pelotazos_espalda": 0.078, "press_final": 2.446, "press_media": 1.8837, "prog_x": 23.6324, "start_x": 46.7383, "starts_from_dispossess": 0.0442, "takeons_ok": 0.0349, "tempo": 0.3666, "transition_speed": 3.1511, "verticalidad_media": 0.3215}, "Lommel": {"atk_l": 40.4236, "atk_w": 32.9588, "ball_distance": 145.5206, "behind_line_ok": 0.069, "broke_last_line": 0.0333, "broke_second_last": 0.1828, "cross_pvadded_max": 0.0012, "dang_runs": 0.1753, "deep_completions": 0.4156, "def_h": 31.2309, "dribbles_box": 0.0113, "dribbles_last_third": 0.0564, "duration_s": 50.0875, "hold_max": 27.1252, "hold_mean": 5.339, "hold_min": 3.1094, "line_breaks": 0.7645, "max_x": 69.0498, "n_centros": 0.1305, "n_events": 6.4798, "n_involved": 2.0312, "n_passes": 3.6517, "opt_quality_mean": 0.0406, "paredes": 0.3232, "pass_options_mean": 8.2109, "passes_behind_line": 0.1479, "pct_adentro": 0.5191, "pct_afuera": 0.4043, "pct_cortos": 0.4003, "pct_headpass": 0.0485, "pct_largos": 0.1814, "pct_launch": 0.0717, "pct_layoff": 0.0133, "pct_medios": 0.3426, "pct_switch": 0.0045, "pct_through": 0.0017, "pct_verticales": 0.4706, "pelotazos_espalda": 0.1014, "press_final": 2.3953, "press_media": 1.7672, "prog_x": 25.1036, "start_x": 45.3203, "starts_from_dispossess": 0.046, "takeons_ok": 0.0456, "tempo": 0.3966, "transition_speed": 3.4375, "verticalidad_media": 0.313}, "Olympic Charleroi": {"atk_l": 43.3373, "atk_w": 32.8301, "ball_distance": 117.0654, "behind_line_ok": 0.0482, "broke_last_line": 0.02, "broke_second_last": 0.14, "cross_pvadded_max": 0.0009, "dang_runs": 0.1221, "deep_completions": 0.2858, "def_h": 32.3939, "dribbles_box": 0.0081, "dribbles_last_third": 0.0492, "duration_s": 34.4007, "hold_max": 9.7202, "hold_mean": 5.6716, "hold_min": 3.388, "line_breaks": 0.5785, "max_x": 66.2159, "n_centros": 0.1223, "n_events": 6.233, "n_involved": 1.837, "n_passes": 3.0139, "opt_quality_mean": -0.0241, "paredes": 0.2505, "pass_options_mean": 8.7328, "passes_behind_line": 0.1256, "pct_adentro": 0.5084, "pct_afuera": 0.4043, "pct_cortos": 0.4054, "pct_headpass": 0.0474, "pct_largos": 0.2089, "pct_launch": 0.0973, "pct_layoff": 0.0152, "pct_medios": 0.2994, "pct_switch": 0.0059, "pct_through": 0.0014, "pct_verticales": 0.4963, "pelotazos_espalda": 0.0964, "press_final": 2.3912, "press_media": 1.7622, "prog_x": 24.3065, "start_x": 42.942, "starts_from_dispossess": 0.0408, "takeons_ok": 0.0476, "tempo": 0.3739, "transition_speed": 3.4394, "verticalidad_media": 0.3514}, "Patro Eisden": {"atk_l": 40.7889, "atk_w": 31.0971, "ball_distance": 69.4859, "behind_line_ok": 0.0522, "broke_last_line": 0.019, "broke_second_last": 0.1131, "cross_pvadded_max": 0.0018, "dang_runs": 0.0696, "deep_completions": 0.2626, "def_h": 29.1936, "dribbles_box": 0.0132, "dribbles_last_third": 0.0613, "duration_s": 15.0711, "hold_max": 10.6945, "hold_mean": 7.2828, "hold_min": 5.0543, "line_breaks": 0.2825, "max_x": 70.1495, "n_centros": 0.119, "n_events": 3.7661, "n_involved": 1.5966, "n_passes": 1.9794, "opt_quality_mean": 0.1028, "paredes": 0.1008, "pass_options_mean": 8.4335, "passes_behind_line": 0.1436, "pct_adentro": 0.5086, "pct_afuera": 0.3836, "pct_cortos": 0.286, "pct_headpass": 0.0647, "pct_largos": 0.2893, "pct_launch": 0.1263, "pct_layoff": 0.0069, "pct_medios": 0.3176, "pct_switch": 0.0099, "pct_through": 0.0011, "pct_verticales": 0.5376, "pelotazos_espalda": 0.1189, "press_final": 2.5623, "press_media": 1.7991, "prog_x": 25.5681, "start_x": 46.1599, "starts_from_dispossess": 0.0434, "takeons_ok": 0.0381, "tempo": 0.3051, "transition_speed": 3.8294, "verticalidad_media": 0.4438}, "RWDM Brussels": {"atk_l": 44.5889, "atk_w": 32.7814, "ball_distance": 126.3501, "behind_line_ok": 0.0557, "broke_last_line": 0.0334, "broke_second_last": 0.1499, "cross_pvadded_max": 0.0108, "dang_runs": 0.1531, "deep_completions": 3.2993, "def_h": 33.9682, "dribbles_box": 0.2305, "dribbles_last_third": 0.9096, "duration_s": 208.0172, "hold_max": 12.2753, "hold_mean": 5.3627, "hold_min": 2.9605, "line_breaks": 0.6851, "max_x": 65.5213, "n_centros": 1.1851, "n_events": 60.7024, "n_involved": 1.8167, "n_passes": 32.9945, "opt_quality_mean": -0.039, "paredes": 2.7825, "pass_options_mean": 8.6849, "passes_behind_line": 0.1248, "pct_adentro": 0.4861, "pct_afuera": 0.4266, "pct_cortos": 0.4077, "pct_headpass": 0.0337, "pct_largos": 0.1904, "pct_launch": 0.0928, "pct_layoff": 0.0106, "pct_medios": 0.3157, "pct_switch": 0.0064, "pct_through": 0.0029, "pct_verticales": 0.4534, "pelotazos_espalda": 0.0945, "press_final": 2.4507, "press_media": 1.7771, "prog_x": 27.0312, "start_x": 39.9094, "starts_from_dispossess": 0.0442, "takeons_ok": 0.8729, "tempo": 0.3455, "transition_speed": 3.1456, "verticalidad_media": 0.2988}, "Seraing": {"atk_l": 42.2413, "atk_w": 32.7421, "ball_distance": 98.6247, "behind_line_ok": 0.0606, "broke_last_line": 0.0223, "broke_second_last": 0.1165, "cross_pvadded_max": 0.0009, "dang_runs": 0.1247, "deep_completions": 0.2551, "def_h": 32.4281, "dribbles_box": 0.0112, "dribbles_last_third": 0.061, "duration_s": 19.018, "hold_max": 9.7375, "hold_mean": 6.1973, "hold_min": 4.0815, "line_breaks": 0.4699, "max_x": 67.664, "n_centros": 0.1124, "n_events": 4.4732, "n_involved": 1.7262, "n_passes": 2.4728, "opt_quality_mean": -0.0353, "paredes": 0.1765, "pass_options_mean": 8.8384, "passes_behind_line": 0.1774, "pct_adentro": 0.492, "pct_afuera": 0.4009, "pct_cortos": 0.2993, "pct_headpass": 0.0406, "pct_largos": 0.2587, "pct_launch": 0.1084, "pct_layoff": 0.0078, "pct_medios": 0.3354, "pct_switch": 0.0043, "pct_through": 0.0015, "pct_verticales": 0.5002, "pelotazos_espalda": 0.148, "press_final": 2.5008, "press_media": 1.812, "prog_x": 26.6399, "start_x": 42.569, "starts_from_dispossess": 0.051, "takeons_ok": 0.0493, "tempo": 0.3332, "transition_speed": 3.7335, "verticalidad_media": 0.3755}}, "team_eje_norm_gen": {"Anderlecht II": {"eje_verticalidad": -0.0891, "eje_elaboracion": -0.0068, "eje_individual": -0.0012, "eje_rotura_lineas": 0.0093, "eje_amplitud_centro": -0.0126, "eje_profundidad_espalda": -0.0522, "eje_robo_alto": -0.0156, "eje_aereo_segunda": -0.0589}, "Beerschot": {"eje_verticalidad": -0.0817, "eje_elaboracion": 0.0326, "eje_individual": 0.0132, "eje_rotura_lineas": 0.0288, "eje_amplitud_centro": 0.0002, "eje_profundidad_espalda": 0.0344, "eje_robo_alto": 0.0557, "eje_aereo_segunda": -0.0171}, "Beveren": {"eje_verticalidad": -0.0555, "eje_elaboracion": 0.0191, "eje_individual": -0.0083, "eje_rotura_lineas": 0.0497, "eje_amplitud_centro": 0.0332, "eje_profundidad_espalda": 0.0811, "eje_robo_alto": 0.0657, "eje_aereo_segunda": 0.0127}, "Club Brugge II": {"eje_verticalidad": -0.1206, "eje_elaboracion": 0.084, "eje_individual": 0.0231, "eje_rotura_lineas": 0.0204, "eje_amplitud_centro": -0.0221, "eje_profundidad_espalda": -0.0291, "eje_robo_alto": -0.0589, "eje_aereo_segunda": -0.0481}, "Eupen": {"eje_verticalidad": -0.0335, "eje_elaboracion": 2.216, "eje_individual": 0.6012, "eje_rotura_lineas": -0.0018, "eje_amplitud_centro": 0.776, "eje_profundidad_espalda": 0.9321, "eje_robo_alto": -0.0932, "eje_aereo_segunda": 0.0254}, "Francs Borains": {"eje_verticalidad": 0.0105, "eje_elaboracion": -0.0109, "eje_individual": -0.036, "eje_rotura_lineas": -0.0207, "eje_amplitud_centro": -0.0013, "eje_profundidad_espalda": -0.0402, "eje_robo_alto": 0.0124, "eje_aereo_segunda": 0.0304}, "Genk II": {"eje_verticalidad": -0.1028, "eje_elaboracion": 0.0059, "eje_individual": 0.0494, "eje_rotura_lineas": 0.0121, "eje_amplitud_centro": -0.0081, "eje_profundidad_espalda": -0.0177, "eje_robo_alto": -0.0411, "eje_aereo_segunda": -0.0545}, "Gent II": {"eje_verticalidad": -0.1686, "eje_elaboracion": 0.0954, "eje_individual": -0.0078, "eje_rotura_lineas": 0.0563, "eje_amplitud_centro": -0.0295, "eje_profundidad_espalda": -0.0133, "eje_robo_alto": 0.0107, "eje_aereo_segunda": -0.0495}, "Kortrijk": {"eje_verticalidad": -0.0064, "eje_elaboracion": -0.0211, "eje_individual": 0.0038, "eje_rotura_lineas": 0.0057, "eje_amplitud_centro": -0.0025, "eje_profundidad_espalda": -0.0298, "eje_robo_alto": 0.0518, "eje_aereo_segunda": -0.002}, "Lierse SK": {"eje_verticalidad": 0.0311, "eje_elaboracion": -0.0175, "eje_individual": -0.0057, "eje_rotura_lineas": -0.0239, "eje_amplitud_centro": -0.0235, "eje_profundidad_espalda": -0.0417, "eje_robo_alto": -0.0249, "eje_aereo_segunda": 0.0227}, "Liège": {"eje_verticalidad": 0.0112, "eje_elaboracion": 2.0841, "eje_individual": 1.6722, "eje_rotura_lineas": -0.0124, "eje_amplitud_centro": 1.0921, "eje_profundidad_espalda": 0.8321, "eje_robo_alto": -0.0705, "eje_aereo_segunda": -0.0018}, "Lokeren": {"eje_verticalidad": -0.0535, "eje_elaboracion": -0.0081, "eje_individual": -0.0086, "eje_rotura_lineas": -0.0069, "eje_amplitud_centro": 0.0036, "eje_profundidad_espalda": -0.0203, "eje_robo_alto": 0.0404, "eje_aereo_segunda": -0.0168}, "Lommel": {"eje_verticalidad": -0.0372, "eje_elaboracion": 0.053, "eje_individual": 0.0029, "eje_rotura_lineas": 0.0368, "eje_amplitud_centro": 0.0085, "eje_profundidad_espalda": 0.052, "eje_robo_alto": 0.0184, "eje_aereo_segunda": 0.0076}, "Olympic Charleroi": {"eje_verticalidad": 0.0175, "eje_elaboracion": 0.0049, "eje_individual": -0.0238, "eje_rotura_lineas": -0.0316, "eje_amplitud_centro": 0.0106, "eje_profundidad_espalda": -0.0213, "eje_robo_alto": -0.0382, "eje_aereo_segunda": 0.0514}, "Patro Eisden": {"eje_verticalidad": 0.1667, "eje_elaboracion": -0.1636, "eje_individual": -0.0263, "eje_rotura_lineas": -0.0846, "eje_amplitud_centro": 0.0149, "eje_profundidad_espalda": 0.0091, "eje_robo_alto": 0.0278, "eje_aereo_segunda": 0.0788}, "RWDM Brussels": {"eje_verticalidad": -0.0653, "eje_elaboracion": 1.8768, "eje_individual": 2.0355, "eje_rotura_lineas": 0.0143, "eje_amplitud_centro": 0.9189, "eje_profundidad_espalda": 0.7181, "eje_robo_alto": -0.0862, "eje_aereo_segunda": -0.0109}, "Seraing": {"eje_verticalidad": 0.0774, "eje_elaboracion": -0.1142, "eje_individual": -0.0042, "eje_rotura_lineas": -0.0548, "eje_amplitud_centro": -0.0113, "eje_profundidad_espalda": 0.0648, "eje_robo_alto": -0.0204, "eje_aereo_segunda": 0.0081}}, "team_eje_norm_con": {"Anderlecht II": {"eje_verticalidad": -0.012, "eje_elaboracion": -0.0183, "eje_individual": 0.0076, "eje_rotura_lineas": -0.0111, "eje_amplitud_centro": 0.002, "eje_profundidad_espalda": -0.014, "eje_robo_alto": 0.0142, "eje_aereo_segunda": -0.012}, "Beerschot": {"eje_verticalidad": 0.0139, "eje_elaboracion": -0.0249, "eje_individual": -0.0317, "eje_rotura_lineas": -0.0235, "eje_amplitud_centro": -0.0137, "eje_profundidad_espalda": -0.0207, "eje_robo_alto": -0.045, "eje_aereo_segunda": 0.0081}, "Beveren": {"eje_verticalidad": 0.0191, "eje_elaboracion": 2.1284, "eje_individual": 1.6812, "eje_rotura_lineas": -0.0299, "eje_amplitud_centro": 1.0614, "eje_profundidad_espalda": 0.785, "eje_robo_alto": -0.1204, "eje_aereo_segunda": 0.0316}, "Club Brugge II": {"eje_verticalidad": -0.0461, "eje_elaboracion": -0.0182, "eje_individual": -0.0177, "eje_rotura_lineas": -0.0067, "eje_amplitud_centro": -0.0087, "eje_profundidad_espalda": 0.0107, "eje_robo_alto": 0.0328, "eje_aereo_segunda": 0.0001}, "Eupen": {"eje_verticalidad": -0.0577, "eje_elaboracion": 0.0046, "eje_individual": -0.0148, "eje_rotura_lineas": 0.0069, "eje_amplitud_centro": 0.0046, "eje_profundidad_espalda": 0.0267, "eje_robo_alto": 0.0534, "eje_aereo_segunda": -0.0182}, "Francs Borains": {"eje_verticalidad": -0.0058, "eje_elaboracion": -0.0011, "eje_individual": 0.0042, "eje_rotura_lineas": -0.0137, "eje_amplitud_centro": -0.0117, "eje_profundidad_espalda": -0.0029, "eje_robo_alto": -0.0007, "eje_aereo_segunda": 0.0064}, "Genk II": {"eje_verticalidad": -0.0647, "eje_elaboracion": 0.0407, "eje_individual": -0.0086, "eje_rotura_lineas": 0.0473, "eje_amplitud_centro": -0.0031, "eje_profundidad_espalda": 0.0743, "eje_robo_alto": 0.0387, "eje_aereo_segunda": -0.0348}, "Gent II": {"eje_verticalidad": -0.0189, "eje_elaboracion": -0.0131, "eje_individual": -0.0016, "eje_rotura_lineas": 0.0035, "eje_amplitud_centro": 0.0089, "eje_profundidad_espalda": -0.015, "eje_robo_alto": 0.0033, "eje_aereo_segunda": 0.0253}, "Kortrijk": {"eje_verticalidad": -0.0141, "eje_elaboracion": 1.8951, "eje_individual": 2.0863, "eje_rotura_lineas": -0.0483, "eje_amplitud_centro": 0.9248, "eje_profundidad_espalda": 0.6927, "eje_robo_alto": -0.0624, "eje_aereo_segunda": 0.0225}, "Lierse SK": {"eje_verticalidad": -0.0249, "eje_elaboracion": -0.0226, "eje_individual": -0.0147, "eje_rotura_lineas": -0.0182, "eje_amplitud_centro": 0.0031, "eje_profundidad_espalda": -0.025, "eje_robo_alto": 0.028, "eje_aereo_segunda": -0.0125}, "Liège": {"eje_verticalidad": -0.0499, "eje_elaboracion": 2.1574, "eje_individual": 0.6529, "eje_rotura_lineas": 0.0207, "eje_amplitud_centro": 0.7732, "eje_profundidad_espalda": 0.8994, "eje_robo_alto": -0.0266, "eje_aereo_segunda": 0.004}, "Lokeren": {"eje_verticalidad": -0.0021, "eje_elaboracion": -0.0192, "eje_individual": 0.0122, "eje_rotura_lineas": -0.0165, "eje_amplitud_centro": 0.0142, "eje_profundidad_espalda": -0.0082, "eje_robo_alto": -0.0098, "eje_aereo_segunda": 0.0128}, "Lommel": {"eje_verticalidad": -0.032, "eje_elaboracion": 0.0017, "eje_individual": 0.0122, "eje_rotura_lineas": 0.0209, "eje_amplitud_centro": 0.034, "eje_profundidad_espalda": 0.003, "eje_robo_alto": -0.0247, "eje_aereo_segunda": -0.0197}, "Olympic Charleroi": {"eje_verticalidad": -0.046, "eje_elaboracion": 0.0036, "eje_individual": 0.0143, "eje_rotura_lineas": 0.0238, "eje_amplitud_centro": -0.0062, "eje_profundidad_espalda": 0.0236, "eje_robo_alto": 0.0112, "eje_aereo_segunda": -0.0166}, "Patro Eisden": {"eje_verticalidad": -0.0303, "eje_elaboracion": 0.0282, "eje_individual": 0.0009, "eje_rotura_lineas": 0.0022, "eje_amplitud_centro": -0.0101, "eje_profundidad_espalda": 0.0313, "eje_robo_alto": -0.068, "eje_aereo_segunda": 0.0181}, "RWDM Brussels": {"eje_verticalidad": -0.0824, "eje_elaboracion": 0.0241, "eje_individual": 0.0172, "eje_rotura_lineas": 0.0099, "eje_amplitud_centro": 0.0136, "eje_profundidad_espalda": 0.0045, "eje_robo_alto": 0.0384, "eje_aereo_segunda": -0.032}, "Seraing": {"eje_verticalidad": -0.051, "eje_elaboracion": 0.0274, "eje_individual": -0.0209, "eje_rotura_lineas": 0.0314, "eje_amplitud_centro": 0.0003, "eje_profundidad_espalda": 0.0227, "eje_robo_alto": -0.01, "eje_aereo_segunda": -0.0033}}} \ No newline at end of file diff --git a/vendor/data/ejes/belgian-challenger-pro-league/25-26/team_profiles.parquet b/vendor/data/ejes/belgian-challenger-pro-league/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..f0b6f068b667f67ee46a34899038706a2fe81d5f --- /dev/null +++ b/vendor/data/ejes/belgian-challenger-pro-league/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c96ca30896feb447836dc4476899dc2bea156cc6c8265dd5327f8a205202ea56 +size 9409 diff --git a/vendor/data/ejes/brack-super-league/25-26/ejes_definition.json b/vendor/data/ejes/brack-super-league/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/brack-super-league/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/brack-super-league/25-26/match_team_ejes.parquet b/vendor/data/ejes/brack-super-league/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..d7758f0169b88906f708f8e0d6b65f2821b8bf2b --- /dev/null +++ b/vendor/data/ejes/brack-super-league/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9694803e00fc1e1be9a89f103e5d7eff4d3e958e29ec964ac58d307bfc5c310b +size 56973 diff --git a/vendor/data/ejes/brack-super-league/25-26/match_team_vars.parquet b/vendor/data/ejes/brack-super-league/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..df73541b0978c0055981bc0d16717b2ccc3beaff --- /dev/null +++ b/vendor/data/ejes/brack-super-league/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5049cc2b4c6306d07c867da81e703879a02a8108c04d1ffc088810740e64d69f +size 214947 diff --git a/vendor/data/ejes/brack-super-league/25-26/predictor.json b/vendor/data/ejes/brack-super-league/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..4f6d2fb0386ef9b017a4edda824e8e0b5bcd67eb --- /dev/null +++ b/vendor/data/ejes/brack-super-league/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 1.0206, "con": 1.0026, "intercept": 0.0362}, "elaboracion": {"gen": 1.0267, "con": 1.0234, "intercept": -0.0076}, "individual": {"gen": 0.7772, "con": 0.7108, "intercept": -0.0006}, "rotura_lineas": {"gen": 0.9583, "con": 0.8562, "intercept": -0.0022}, "amplitud_centro": {"gen": 0.9513, "con": 0.7053, "intercept": -0.0014}, "profundidad_espalda": {"gen": 0.7497, "con": -0.2288, "intercept": 0.0007}, "robo_alto": {"gen": 0.7979, "con": 0.8299, "intercept": 0.0017}, "aereo_segunda": {"gen": 1.0202, "con": 1.0162, "intercept": 0.0038}} \ No newline at end of file diff --git a/vendor/data/ejes/brack-super-league/25-26/scales.json b/vendor/data/ejes/brack-super-league/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..8286dae9d0fee3e53496f07a9fd82bc3cc7a4edc --- /dev/null +++ b/vendor/data/ejes/brack-super-league/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 2.0642, "atk_w": 1.3481, "ball_distance": 40.9674, "behind_line_ok": 0.0221, "broke_last_line": 0.017, "broke_second_last": 0.0418, "cross_pvadded_max": 0.0016, "dang_runs": 0.0904, "deep_completions": 0.1071, "def_h": 2.6611, "dribbles_box": 0.0101, "dribbles_last_third": 0.0257, "duration_s": 19.0334, "hold_max": 1.8121, "hold_mean": 0.8577, "hold_min": 0.8283, "line_breaks": 0.2163, "max_x": 3.572, "n_centros": 0.0425, "n_events": 1.7417, "n_involved": 0.1569, "n_passes": 0.5156, "opt_quality_mean": 0.126, "paredes": 0.0909, "pass_options_mean": 1.1759, "passes_behind_line": 0.033, "pct_adentro": 0.0332, "pct_afuera": 0.032, "pct_cortos": 0.0459, "pct_headpass": 0.0153, "pct_largos": 0.0441, "pct_launch": 0.0366, "pct_layoff": 0.0055, "pct_medios": 0.0426, "pct_switch": 0.0042, "pct_through": 0.0033, "pct_verticales": 0.0508, "pelotazos_espalda": 0.0273, "press_final": 0.3012, "press_media": 0.1654, "prog_x": 2.2192, "start_x": 4.2262, "starts_from_dispossess": 0.0169, "takeons_ok": 0.0212, "tempo": 0.0367, "transition_speed": 0.6634, "verticalidad_media": 0.0614}, "eje_sigma": {"eje_verticalidad": 0.107, "eje_elaboracion": 0.0929, "eje_individual": 0.0648, "eje_rotura_lineas": 0.062, "eje_amplitud_centro": 0.051, "eje_profundidad_espalda": 0.0755, "eje_robo_alto": 0.0872, "eje_aereo_segunda": 0.0692}, "eje_match_mean": {"eje_verticalidad": -0.0354, "eje_elaboracion": 0.0072, "eje_individual": 0.0013, "eje_rotura_lineas": 0.0027, "eje_amplitud_centro": 0.0021, "eje_profundidad_espalda": 0.0014, "eje_robo_alto": -0.0027, "eje_aereo_segunda": -0.0037}, "eje_match_std": {"eje_verticalidad": 0.1361, "eje_elaboracion": 0.1226, "eje_individual": 0.0687, "eje_rotura_lineas": 0.0704, "eje_amplitud_centro": 0.0591, "eje_profundidad_espalda": 0.0796, "eje_robo_alto": 0.0941, "eje_aereo_segunda": 0.0794}, "team_var_norm": {"Basel": {"atk_l": 42.258, "atk_w": 33.4803, "ball_distance": 127.7972, "behind_line_ok": 0.0523, "broke_last_line": 0.0282, "broke_second_last": 0.1778, "cross_pvadded_max": 0.0016, "dang_runs": 0.1629, "deep_completions": 0.4001, "def_h": 30.9579, "dribbles_box": 0.0101, "dribbles_last_third": 0.0545, "duration_s": 22.8874, "hold_max": 10.2808, "hold_mean": 5.5909, "hold_min": 3.2931, "line_breaks": 0.7564, "max_x": 68.012, "n_centros": 0.1375, "n_events": 5.4097, "n_involved": 1.9312, "n_passes": 3.2461, "opt_quality_mean": 0.0657, "paredes": 0.2622, "pass_options_mean": 8.9557, "passes_behind_line": 0.1069, "pct_adentro": 0.5183, "pct_afuera": 0.399, "pct_cortos": 0.4055, "pct_headpass": 0.0397, "pct_largos": 0.1626, "pct_launch": 0.0598, "pct_layoff": 0.0113, "pct_medios": 0.3504, "pct_switch": 0.005, "pct_through": 0.0022, "pct_verticales": 0.4509, "pelotazos_espalda": 0.0698, "press_final": 2.5701, "press_media": 1.9258, "prog_x": 23.9828, "start_x": 45.2871, "starts_from_dispossess": 0.0391, "takeons_ok": 0.0534, "tempo": 0.3838, "transition_speed": 3.2631, "verticalidad_media": 0.315}, "Grasshoppers": {"atk_l": 37.7086, "atk_w": 31.0446, "ball_distance": 69.3553, "behind_line_ok": 0.0396, "broke_last_line": 0.0174, "broke_second_last": 0.1545, "cross_pvadded_max": 0.0009, "dang_runs": 0.0896, "deep_completions": 0.2503, "def_h": 31.6653, "dribbles_box": 0.0115, "dribbles_last_third": 0.0613, "duration_s": 23.4133, "hold_max": 9.2896, "hold_mean": 5.7543, "hold_min": 3.5208, "line_breaks": 0.3832, "max_x": 67.6675, "n_centros": 0.103, "n_events": 4.8571, "n_involved": 1.7285, "n_passes": 2.3021, "opt_quality_mean": -0.0253, "paredes": 0.1286, "pass_options_mean": 8.5867, "passes_behind_line": 0.1167, "pct_adentro": 0.5231, "pct_afuera": 0.387, "pct_cortos": 0.3621, "pct_headpass": 0.0524, "pct_largos": 0.2287, "pct_launch": 0.1331, "pct_layoff": 0.0123, "pct_medios": 0.3204, "pct_switch": 0.0025, "pct_through": 0.0022, "pct_verticales": 0.5591, "pelotazos_espalda": 0.0881, "press_final": 2.8495, "press_media": 2.0158, "prog_x": 24.764, "start_x": 44.257, "starts_from_dispossess": 0.0451, "takeons_ok": 0.0443, "tempo": 0.3914, "transition_speed": 4.2343, "verticalidad_media": 0.4435}, "Lausanne-Sport": {"atk_l": 38.8278, "atk_w": 32.6399, "ball_distance": 91.5638, "behind_line_ok": 0.0506, "broke_last_line": 0.0278, "broke_second_last": 0.1602, "cross_pvadded_max": 0.0006, "dang_runs": 0.1137, "deep_completions": 0.3493, "def_h": 30.7873, "dribbles_box": 0.0162, "dribbles_last_third": 0.0739, "duration_s": 26.6981, "hold_max": 9.1563, "hold_mean": 5.3985, "hold_min": 3.2764, "line_breaks": 0.5083, "max_x": 68.5327, "n_centros": 0.1068, "n_events": 5.4702, "n_involved": 1.8314, "n_passes": 2.7939, "opt_quality_mean": 0.0208, "paredes": 0.2351, "pass_options_mean": 8.9163, "passes_behind_line": 0.1222, "pct_adentro": 0.5076, "pct_afuera": 0.4013, "pct_cortos": 0.4101, "pct_headpass": 0.0462, "pct_largos": 0.1997, "pct_launch": 0.0839, "pct_layoff": 0.0128, "pct_medios": 0.3, "pct_switch": 0.005, "pct_through": 0.0026, "pct_verticales": 0.5031, "pelotazos_espalda": 0.0842, "press_final": 2.6922, "press_media": 1.9663, "prog_x": 24.6712, "start_x": 45.2118, "starts_from_dispossess": 0.0499, "takeons_ok": 0.0592, "tempo": 0.3938, "transition_speed": 3.6844, "verticalidad_media": 0.3755}, "Lugano": {"atk_l": 44.0516, "atk_w": 34.0, "ball_distance": 178.7105, "behind_line_ok": 0.0548, "broke_last_line": 0.0295, "broke_second_last": 0.1744, "cross_pvadded_max": 0.0018, "dang_runs": 0.2261, "deep_completions": 0.3556, "def_h": 33.7349, "dribbles_box": 0.01, "dribbles_last_third": 0.0543, "duration_s": 30.8973, "hold_max": 10.6258, "hold_mean": 5.6272, "hold_min": 3.0464, "line_breaks": 0.9145, "max_x": 65.5655, "n_centros": 0.1274, "n_events": 6.3272, "n_involved": 2.063, "n_passes": 3.7795, "opt_quality_mean": -0.0294, "paredes": 0.3574, "pass_options_mean": 9.1374, "passes_behind_line": 0.1254, "pct_adentro": 0.4991, "pct_afuera": 0.4189, "pct_cortos": 0.3939, "pct_headpass": 0.0467, "pct_largos": 0.1882, "pct_launch": 0.0657, "pct_layoff": 0.0136, "pct_medios": 0.3367, "pct_switch": 0.0073, "pct_through": 0.0018, "pct_verticales": 0.4515, "pelotazos_espalda": 0.0917, "press_final": 2.4642, "press_media": 1.8049, "prog_x": 25.5635, "start_x": 40.9438, "starts_from_dispossess": 0.0422, "takeons_ok": 0.0456, "tempo": 0.3945, "transition_speed": 3.3062, "verticalidad_media": 0.2846}, "Luzern": {"atk_l": 41.0489, "atk_w": 33.9607, "ball_distance": 115.2857, "behind_line_ok": 0.0556, "broke_last_line": 0.0385, "broke_second_last": 0.1568, "cross_pvadded_max": 0.0018, "dang_runs": 0.1661, "deep_completions": 0.3965, "def_h": 30.8324, "dribbles_box": 0.0142, "dribbles_last_third": 0.0624, "duration_s": 30.7545, "hold_max": 10.566, "hold_mean": 5.585, "hold_min": 3.1367, "line_breaks": 0.5346, "max_x": 69.0115, "n_centros": 0.1325, "n_events": 5.8825, "n_involved": 1.8058, "n_passes": 2.9752, "opt_quality_mean": 0.0584, "paredes": 0.2582, "pass_options_mean": 9.0343, "passes_behind_line": 0.124, "pct_adentro": 0.509, "pct_afuera": 0.3971, "pct_cortos": 0.3683, "pct_headpass": 0.0422, "pct_largos": 0.2016, "pct_launch": 0.0892, "pct_layoff": 0.0103, "pct_medios": 0.3371, "pct_switch": 0.0054, "pct_through": 0.0024, "pct_verticales": 0.4717, "pelotazos_espalda": 0.0871, "press_final": 2.4714, "press_media": 1.8438, "prog_x": 25.6722, "start_x": 44.6815, "starts_from_dispossess": 0.049, "takeons_ok": 0.0516, "tempo": 0.3791, "transition_speed": 3.4946, "verticalidad_media": 0.3363}, "Servette": {"atk_l": 40.2602, "atk_w": 32.3993, "ball_distance": 118.3388, "behind_line_ok": 0.0475, "broke_last_line": 0.036, "broke_second_last": 0.1633, "cross_pvadded_max": 0.002, "dang_runs": 0.1297, "deep_completions": 0.4005, "def_h": 31.2757, "dribbles_box": 0.0136, "dribbles_last_third": 0.0643, "duration_s": 30.9129, "hold_max": 9.8099, "hold_mean": 5.3569, "hold_min": 3.1321, "line_breaks": 0.6423, "max_x": 68.2627, "n_centros": 0.1576, "n_events": 6.02, "n_involved": 1.8827, "n_passes": 3.1736, "opt_quality_mean": 0.0516, "paredes": 0.2862, "pass_options_mean": 8.8523, "passes_behind_line": 0.1091, "pct_adentro": 0.5108, "pct_afuera": 0.4066, "pct_cortos": 0.4008, "pct_headpass": 0.0523, "pct_largos": 0.1842, "pct_launch": 0.081, "pct_layoff": 0.01, "pct_medios": 0.3337, "pct_switch": 0.0041, "pct_through": 0.0022, "pct_verticales": 0.4841, "pelotazos_espalda": 0.0738, "press_final": 2.5267, "press_media": 1.9451, "prog_x": 24.3002, "start_x": 44.9372, "starts_from_dispossess": 0.0495, "takeons_ok": 0.0554, "tempo": 0.3778, "transition_speed": 3.2156, "verticalidad_media": 0.3457}, "Sion": {"atk_l": 41.3183, "atk_w": 33.8306, "ball_distance": 127.156, "behind_line_ok": 0.0558, "broke_last_line": 0.0333, "broke_second_last": 0.1746, "cross_pvadded_max": 0.0016, "dang_runs": 0.1729, "deep_completions": 0.3948, "def_h": 31.7667, "dribbles_box": 0.0153, "dribbles_last_third": 0.0609, "duration_s": 26.2345, "hold_max": 9.7877, "hold_mean": 5.5369, "hold_min": 3.205, "line_breaks": 0.5921, "max_x": 68.3492, "n_centros": 0.1533, "n_events": 5.615, "n_involved": 1.8937, "n_passes": 3.1287, "opt_quality_mean": -0.0129, "paredes": 0.2621, "pass_options_mean": 8.9506, "passes_behind_line": 0.1395, "pct_adentro": 0.5169, "pct_afuera": 0.3981, "pct_cortos": 0.3951, "pct_headpass": 0.0389, "pct_largos": 0.2144, "pct_launch": 0.0985, "pct_layoff": 0.0085, "pct_medios": 0.3064, "pct_switch": 0.0045, "pct_through": 0.0025, "pct_verticales": 0.492, "pelotazos_espalda": 0.1052, "press_final": 2.4425, "press_media": 1.8403, "prog_x": 26.0884, "start_x": 43.2497, "starts_from_dispossess": 0.0433, "takeons_ok": 0.0509, "tempo": 0.3991, "transition_speed": 3.7288, "verticalidad_media": 0.3386}, "St.Gallen": {"atk_l": 37.1532, "atk_w": 33.4167, "ball_distance": 70.8807, "behind_line_ok": 0.0562, "broke_last_line": 0.0221, "broke_second_last": 0.1344, "cross_pvadded_max": 0.0011, "dang_runs": 0.1038, "deep_completions": 0.2762, "def_h": 29.3755, "dribbles_box": 0.0136, "dribbles_last_third": 0.0657, "duration_s": 22.7726, "hold_max": 9.8448, "hold_mean": 6.2881, "hold_min": 4.1124, "line_breaks": 0.3362, "max_x": 70.4772, "n_centros": 0.1109, "n_events": 4.6458, "n_involved": 1.6649, "n_passes": 2.1697, "opt_quality_mean": 0.0529, "paredes": 0.1289, "pass_options_mean": 8.7616, "passes_behind_line": 0.1436, "pct_adentro": 0.515, "pct_afuera": 0.3752, "pct_cortos": 0.3253, "pct_headpass": 0.0549, "pct_largos": 0.2553, "pct_launch": 0.134, "pct_layoff": 0.006, "pct_medios": 0.311, "pct_switch": 0.0034, "pct_through": 0.0032, "pct_verticales": 0.5497, "pelotazos_espalda": 0.12, "press_final": 2.6868, "press_media": 1.914, "prog_x": 26.3439, "start_x": 45.825, "starts_from_dispossess": 0.0416, "takeons_ok": 0.0426, "tempo": 0.3667, "transition_speed": 4.6027, "verticalidad_media": 0.4539}, "Thun": {"atk_l": 36.2251, "atk_w": 34.7242, "ball_distance": 76.0086, "behind_line_ok": 0.0564, "broke_last_line": 0.0266, "broke_second_last": 0.1434, "cross_pvadded_max": 0.0011, "dang_runs": 0.1235, "deep_completions": 0.3642, "def_h": 28.0748, "dribbles_box": 0.0149, "dribbles_last_third": 0.0636, "duration_s": 22.342, "hold_max": 10.068, "hold_mean": 6.2997, "hold_min": 4.089, "line_breaks": 0.337, "max_x": 72.2959, "n_centros": 0.1172, "n_events": 4.7611, "n_involved": 1.7121, "n_passes": 2.2981, "opt_quality_mean": 0.1012, "paredes": 0.1549, "pass_options_mean": 8.6315, "passes_behind_line": 0.1242, "pct_adentro": 0.5255, "pct_afuera": 0.3709, "pct_cortos": 0.3267, "pct_headpass": 0.0645, "pct_largos": 0.2387, "pct_launch": 0.1277, "pct_layoff": 0.0085, "pct_medios": 0.3317, "pct_switch": 0.0031, "pct_through": 0.0025, "pct_verticales": 0.5261, "pelotazos_espalda": 0.0971, "press_final": 2.5688, "press_media": 1.8732, "prog_x": 26.3031, "start_x": 47.5403, "starts_from_dispossess": 0.0446, "takeons_ok": 0.0418, "tempo": 0.3676, "transition_speed": 4.5059, "verticalidad_media": 0.4247}, "Winterthur": {"atk_l": 39.0714, "atk_w": 33.2012, "ball_distance": 92.8824, "behind_line_ok": 0.0439, "broke_last_line": 0.0214, "broke_second_last": 0.1554, "cross_pvadded_max": 0.0012, "dang_runs": 0.1055, "deep_completions": 0.2569, "def_h": 33.5989, "dribbles_box": 0.0094, "dribbles_last_third": 0.0397, "duration_s": 24.467, "hold_max": 10.1128, "hold_mean": 5.8267, "hold_min": 3.4498, "line_breaks": 0.4923, "max_x": 65.4645, "n_centros": 0.1052, "n_events": 5.0876, "n_involved": 1.7994, "n_passes": 2.6311, "opt_quality_mean": -0.0661, "paredes": 0.1868, "pass_options_mean": 8.801, "passes_behind_line": 0.1257, "pct_adentro": 0.5, "pct_afuera": 0.4098, "pct_cortos": 0.3607, "pct_headpass": 0.0531, "pct_largos": 0.2434, "pct_launch": 0.1059, "pct_layoff": 0.0122, "pct_medios": 0.3069, "pct_switch": 0.0062, "pct_through": 0.0015, "pct_verticales": 0.5286, "pelotazos_espalda": 0.0985, "press_final": 2.7137, "press_media": 1.9168, "prog_x": 25.6351, "start_x": 41.0936, "starts_from_dispossess": 0.0468, "takeons_ok": 0.0421, "tempo": 0.3904, "transition_speed": 4.1571, "verticalidad_media": 0.3944}, "Young Boys": {"atk_l": 40.8787, "atk_w": 32.8478, "ball_distance": 129.7559, "behind_line_ok": 0.0511, "broke_last_line": 0.0326, "broke_second_last": 0.1786, "cross_pvadded_max": 0.0018, "dang_runs": 0.2083, "deep_completions": 0.3963, "def_h": 31.1958, "dribbles_box": 0.015, "dribbles_last_third": 0.0722, "duration_s": 28.142, "hold_max": 9.9657, "hold_mean": 5.5171, "hold_min": 3.1339, "line_breaks": 0.6398, "max_x": 69.0487, "n_centros": 0.1288, "n_events": 5.8566, "n_involved": 1.8601, "n_passes": 3.2903, "opt_quality_mean": 0.0761, "paredes": 0.2936, "pass_options_mean": 9.0272, "passes_behind_line": 0.1158, "pct_adentro": 0.5067, "pct_afuera": 0.3984, "pct_cortos": 0.3671, "pct_headpass": 0.0431, "pct_largos": 0.193, "pct_launch": 0.0772, "pct_layoff": 0.0081, "pct_medios": 0.3454, "pct_switch": 0.0038, "pct_through": 0.0034, "pct_verticales": 0.4497, "pelotazos_espalda": 0.0779, "press_final": 2.6623, "press_media": 1.9102, "prog_x": 25.2438, "start_x": 45.0135, "starts_from_dispossess": 0.0537, "takeons_ok": 0.0621, "tempo": 0.3693, "transition_speed": 3.4401, "verticalidad_media": 0.3116}, "Zürich": {"atk_l": 38.9618, "atk_w": 31.4676, "ball_distance": 103.1458, "behind_line_ok": 0.0422, "broke_last_line": 0.0236, "broke_second_last": 0.1492, "cross_pvadded_max": 0.0017, "dang_runs": 0.1051, "deep_completions": 0.2994, "def_h": 30.7853, "dribbles_box": 0.0135, "dribbles_last_third": 0.0731, "duration_s": 23.5091, "hold_max": 10.5385, "hold_mean": 6.1225, "hold_min": 3.6508, "line_breaks": 0.5155, "max_x": 68.3382, "n_centros": 0.0979, "n_events": 5.1082, "n_involved": 1.7913, "n_passes": 2.6999, "opt_quality_mean": 0.0099, "paredes": 0.1799, "pass_options_mean": 8.7238, "passes_behind_line": 0.1192, "pct_adentro": 0.5118, "pct_afuera": 0.3958, "pct_cortos": 0.3574, "pct_headpass": 0.0523, "pct_largos": 0.2339, "pct_launch": 0.1036, "pct_layoff": 0.0076, "pct_medios": 0.3171, "pct_switch": 0.0061, "pct_through": 0.0011, "pct_verticales": 0.5161, "pelotazos_espalda": 0.0906, "press_final": 2.8376, "press_media": 1.9461, "prog_x": 25.3892, "start_x": 44.2396, "starts_from_dispossess": 0.0448, "takeons_ok": 0.0531, "tempo": 0.3615, "transition_speed": 3.8115, "verticalidad_media": 0.3783}}, "team_eje_norm_gen": {"Basel": {"eje_verticalidad": -0.1468, "eje_elaboracion": 0.0694, "eje_individual": -0.003, "eje_rotura_lineas": 0.0379, "eje_amplitud_centro": 0.0209, "eje_profundidad_espalda": -0.0085, "eje_robo_alto": -0.0016, "eje_aereo_segunda": -0.0616}, "Grasshoppers": {"eje_verticalidad": 0.0758, "eje_elaboracion": -0.0871, "eje_individual": -0.0246, "eje_rotura_lineas": -0.0389, "eje_amplitud_centro": -0.0427, "eje_profundidad_espalda": -0.0472, "eje_robo_alto": -0.0062, "eje_aereo_segunda": 0.062}, "Lausanne-Sport": {"eje_verticalidad": -0.0402, "eje_elaboracion": 0.0291, "eje_individual": 0.0203, "eje_rotura_lineas": -0.0012, "eje_amplitud_centro": -0.0081, "eje_profundidad_espalda": -0.0028, "eje_robo_alto": 0.0229, "eje_aereo_segunda": -0.0099}, "Lugano": {"eje_verticalidad": -0.143, "eje_elaboracion": 0.1486, "eje_individual": 0.0068, "eje_rotura_lineas": 0.0551, "eje_amplitud_centro": 0.0451, "eje_profundidad_espalda": 0.0127, "eje_robo_alto": -0.0745, "eje_aereo_segunda": -0.0268}, "Luzern": {"eje_verticalidad": -0.0885, "eje_elaboracion": 0.0283, "eje_individual": 0.0122, "eje_rotura_lineas": 0.0143, "eje_amplitud_centro": 0.0172, "eje_profundidad_espalda": 0.0216, "eje_robo_alto": 0.011, "eje_aereo_segunda": -0.0253}, "Servette": {"eje_verticalidad": -0.0958, "eje_elaboracion": 0.0768, "eje_individual": 0.0063, "eje_rotura_lineas": 0.0267, "eje_amplitud_centro": 0.0418, "eje_profundidad_espalda": -0.0085, "eje_robo_alto": 0.0168, "eje_aereo_segunda": -0.0168}, "Sion": {"eje_verticalidad": -0.054, "eje_elaboracion": 0.056, "eje_individual": 0.0143, "eje_rotura_lineas": 0.0259, "eje_amplitud_centro": 0.0325, "eje_profundidad_espalda": 0.0484, "eje_robo_alto": -0.0292, "eje_aereo_segunda": -0.0305}, "St.Gallen": {"eje_verticalidad": 0.1011, "eje_elaboracion": -0.1221, "eje_individual": -0.0135, "eje_rotura_lineas": -0.0433, "eje_amplitud_centro": -0.0389, "eje_profundidad_espalda": 0.0268, "eje_robo_alto": 0.0146, "eje_aereo_segunda": 0.032}, "Thun": {"eje_verticalidad": 0.0571, "eje_elaboracion": -0.1008, "eje_individual": -0.0079, "eje_rotura_lineas": -0.0358, "eje_amplitud_centro": -0.0387, "eje_profundidad_espalda": 0.021, "eje_robo_alto": 0.0535, "eje_aereo_segunda": 0.058}, "Winterthur": {"eje_verticalidad": 0.0369, "eje_elaboracion": -0.0377, "eje_individual": -0.0473, "eje_rotura_lineas": -0.0235, "eje_amplitud_centro": 0.007, "eje_profundidad_espalda": -0.0248, "eje_robo_alto": -0.0608, "eje_aereo_segunda": 0.0284}, "Young Boys": {"eje_verticalidad": -0.1255, "eje_elaboracion": 0.0645, "eje_individual": 0.0469, "eje_rotura_lineas": 0.039, "eje_amplitud_centro": 0.0031, "eje_profundidad_espalda": 0.0026, "eje_robo_alto": 0.0283, "eje_aereo_segunda": -0.0516}, "Zürich": {"eje_verticalidad": -0.0016, "eje_elaboracion": -0.0381, "eje_individual": 0.0049, "eje_rotura_lineas": -0.0236, "eje_amplitud_centro": -0.0143, "eje_profundidad_espalda": -0.0246, "eje_robo_alto": -0.0073, "eje_aereo_segunda": -0.0024}}, "team_eje_norm_con": {"Basel": {"eje_verticalidad": -0.0534, "eje_elaboracion": 0.0354, "eje_individual": 0.0012, "eje_rotura_lineas": -0.0087, "eje_amplitud_centro": 0.0055, "eje_profundidad_espalda": -0.0041, "eje_robo_alto": -0.0058, "eje_aereo_segunda": -0.0391}, "Grasshoppers": {"eje_verticalidad": -0.0167, "eje_elaboracion": -0.0258, "eje_individual": -0.0002, "eje_rotura_lineas": -0.0054, "eje_amplitud_centro": -0.0159, "eje_profundidad_espalda": -0.002, "eje_robo_alto": -0.001, "eje_aereo_segunda": 0.0225}, "Lausanne-Sport": {"eje_verticalidad": -0.0218, "eje_elaboracion": -0.0012, "eje_individual": -0.0144, "eje_rotura_lineas": 0.0261, "eje_amplitud_centro": 0.0099, "eje_profundidad_espalda": 0.0207, "eje_robo_alto": -0.0127, "eje_aereo_segunda": -0.0121}, "Lugano": {"eje_verticalidad": -0.0764, "eje_elaboracion": 0.0193, "eje_individual": 0.018, "eje_rotura_lineas": -0.0067, "eje_amplitud_centro": 0.0228, "eje_profundidad_espalda": 0.0004, "eje_robo_alto": 0.0227, "eje_aereo_segunda": -0.0397}, "Luzern": {"eje_verticalidad": -0.0488, "eje_elaboracion": 0.0205, "eje_individual": 0.024, "eje_rotura_lineas": -0.0061, "eje_amplitud_centro": 0.011, "eje_profundidad_espalda": -0.0029, "eje_robo_alto": 0.0007, "eje_aereo_segunda": -0.0256}, "Servette": {"eje_verticalidad": -0.0673, "eje_elaboracion": 0.042, "eje_individual": -0.0103, "eje_rotura_lineas": 0.0201, "eje_amplitud_centro": -0.0049, "eje_profundidad_espalda": -0.0199, "eje_robo_alto": -0.0021, "eje_aereo_segunda": 0.012}, "Sion": {"eje_verticalidad": -0.0772, "eje_elaboracion": 0.0441, "eje_individual": 0.0112, "eje_rotura_lineas": 0.0244, "eje_amplitud_centro": -0.0017, "eje_profundidad_espalda": 0.0035, "eje_robo_alto": 0.0105, "eje_aereo_segunda": -0.0398}, "St.Gallen": {"eje_verticalidad": 0.0367, "eje_elaboracion": -0.0508, "eje_individual": -0.0131, "eje_rotura_lineas": -0.0047, "eje_amplitud_centro": -0.0151, "eje_profundidad_espalda": -0.0092, "eje_robo_alto": -0.0532, "eje_aereo_segunda": 0.0586}, "Thun": {"eje_verticalidad": 0.0256, "eje_elaboracion": -0.0293, "eje_individual": -0.0221, "eje_rotura_lineas": -0.043, "eje_amplitud_centro": 0.0178, "eje_profundidad_espalda": -0.0077, "eje_robo_alto": -0.0692, "eje_aereo_segunda": 0.0365}, "Winterthur": {"eje_verticalidad": -0.0994, "eje_elaboracion": 0.0676, "eje_individual": 0.0489, "eje_rotura_lineas": 0.0314, "eje_amplitud_centro": 0.0096, "eje_profundidad_espalda": 0.0145, "eje_robo_alto": 0.0878, "eje_aereo_segunda": -0.0075}, "Young Boys": {"eje_verticalidad": -0.027, "eje_elaboracion": -0.0064, "eje_individual": -0.0207, "eje_rotura_lineas": 0.0124, "eje_amplitud_centro": -0.0212, "eje_profundidad_espalda": 0.0075, "eje_robo_alto": -0.0288, "eje_aereo_segunda": -0.0162}, "Zürich": {"eje_verticalidad": 0.0011, "eje_elaboracion": -0.0286, "eje_individual": -0.007, "eje_rotura_lineas": -0.0072, "eje_amplitud_centro": 0.0074, "eje_profundidad_espalda": 0.0158, "eje_robo_alto": 0.0185, "eje_aereo_segunda": 0.0059}}} \ No newline at end of file diff --git a/vendor/data/ejes/brack-super-league/25-26/team_profiles.parquet b/vendor/data/ejes/brack-super-league/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..ce25b6cfa9f64ad11e05afec50a1fd662264bb57 --- /dev/null +++ b/vendor/data/ejes/brack-super-league/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d4941b3a9c451b630014b626aa2d045b6554c6bf69d1d5e89c8d0ff13b40947 +size 8227 diff --git a/vendor/data/ejes/chile-primera/26/ejes_definition.json b/vendor/data/ejes/chile-primera/26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/chile-primera/26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/chile-primera/26/match_team_ejes.parquet b/vendor/data/ejes/chile-primera/26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..59fc488bd1e9cbabe044a176440731dace2fa93a --- /dev/null +++ b/vendor/data/ejes/chile-primera/26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eb44086d10fa0123bcce5982d0d6327a6cb4deac911702e933c26369dcac356 +size 34974 diff --git a/vendor/data/ejes/chile-primera/26/match_team_vars.parquet b/vendor/data/ejes/chile-primera/26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..aa3cf8bfedee29417a5bcefb171707bd3529f407 --- /dev/null +++ b/vendor/data/ejes/chile-primera/26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8264ec9f3e12318a31976dff1fa366e925fe7ec6a390bb13e7f532ede9852e5a +size 126318 diff --git a/vendor/data/ejes/chile-primera/26/predictor.json b/vendor/data/ejes/chile-primera/26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..772851a919f5edaa46aa5c0d53b23a090d1a1109 --- /dev/null +++ b/vendor/data/ejes/chile-primera/26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.6224, "con": 0.6619, "intercept": 0.0068}, "elaboracion": {"gen": 0.8124, "con": 0.8404, "intercept": -0.0007}, "individual": {"gen": 0.6271, "con": 0.2122, "intercept": -0.0001}, "rotura_lineas": {"gen": 0.7017, "con": 0.6412, "intercept": -0.0004}, "amplitud_centro": {"gen": 0.6392, "con": 0.5207, "intercept": -0.0001}, "profundidad_espalda": {"gen": 0.3555, "con": 0.4199, "intercept": 0.0004}, "robo_alto": {"gen": 0.5105, "con": 0.5634, "intercept": 0.0003}, "aereo_segunda": {"gen": 0.6479, "con": 0.0646, "intercept": -0.0001}} \ No newline at end of file diff --git a/vendor/data/ejes/chile-primera/26/scales.json b/vendor/data/ejes/chile-primera/26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..0dbd31f62c96739137bc57416aa3da412320e0eb --- /dev/null +++ b/vendor/data/ejes/chile-primera/26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 1.6825, "atk_w": 1.3168, "ball_distance": 49.2584, "behind_line_ok": 0.0254, "broke_last_line": 0.0188, "broke_second_last": 0.0434, "cross_pvadded_max": 0.0013, "dang_runs": 0.0677, "deep_completions": 0.0975, "def_h": 2.3568, "dribbles_box": 0.008, "dribbles_last_third": 0.0219, "duration_s": 18.4505, "hold_max": 1.3776, "hold_mean": 1.0542, "hold_min": 0.9982, "line_breaks": 0.2493, "max_x": 3.2093, "n_centros": 0.0448, "n_events": 1.733, "n_involved": 0.1565, "n_passes": 0.5389, "opt_quality_mean": 0.1047, "paredes": 0.0937, "pass_options_mean": 1.8683, "passes_behind_line": 0.0433, "pct_adentro": 0.0342, "pct_afuera": 0.0345, "pct_cortos": 0.0446, "pct_headpass": 0.0144, "pct_largos": 0.0431, "pct_launch": 0.0325, "pct_layoff": 0.0041, "pct_medios": 0.0407, "pct_switch": 0.005, "pct_through": 0.0031, "pct_verticales": 0.0534, "pelotazos_espalda": 0.0362, "press_final": 0.5516, "press_media": 0.3906, "prog_x": 2.5548, "start_x": 3.7642, "starts_from_dispossess": 0.0177, "takeons_ok": 0.0203, "tempo": 0.0392, "transition_speed": 0.6728, "verticalidad_media": 0.0593}, "eje_sigma": {"eje_verticalidad": 0.1067, "eje_elaboracion": 0.0932, "eje_individual": 0.063, "eje_rotura_lineas": 0.0716, "eje_amplitud_centro": 0.0502, "eje_profundidad_espalda": 0.0985, "eje_robo_alto": 0.0887, "eje_aereo_segunda": 0.0576}, "eje_match_mean": {"eje_verticalidad": -0.0239, "eje_elaboracion": 0.0011, "eje_individual": -0.0007, "eje_rotura_lineas": 0.0011, "eje_amplitud_centro": 0.0007, "eje_profundidad_espalda": 0.0019, "eje_robo_alto": -0.0035, "eje_aereo_segunda": -0.0004}, "eje_match_std": {"eje_verticalidad": 0.1156, "eje_elaboracion": 0.1058, "eje_individual": 0.0688, "eje_rotura_lineas": 0.0786, "eje_amplitud_centro": 0.0544, "eje_profundidad_espalda": 0.1035, "eje_robo_alto": 0.0948, "eje_aereo_segunda": 0.0634}, "team_var_norm": {"Audax Italiano": {"atk_l": 43.9236, "atk_w": 35.9065, "ball_distance": 110.4739, "behind_line_ok": 0.0581, "broke_last_line": 0.033, "broke_second_last": 0.1262, "cross_pvadded_max": 0.0008, "dang_runs": 0.0818, "deep_completions": 0.2833, "def_h": 31.4247, "dribbles_box": 0.008, "dribbles_last_third": 0.0457, "duration_s": 24.3766, "hold_max": 10.832, "hold_mean": 6.0493, "hold_min": 3.4385, "line_breaks": 0.5401, "max_x": 66.4541, "n_centros": 0.116, "n_events": 5.2087, "n_involved": 1.7852, "n_passes": 2.9484, "opt_quality_mean": -0.0836, "paredes": 0.2163, "pass_options_mean": 7.3425, "passes_behind_line": 0.1326, "pct_adentro": 0.5153, "pct_afuera": 0.4073, "pct_cortos": 0.3493, "pct_headpass": 0.0446, "pct_largos": 0.229, "pct_launch": 0.0841, "pct_layoff": 0.0096, "pct_medios": 0.3451, "pct_switch": 0.0062, "pct_through": 0.0018, "pct_verticales": 0.4863, "pelotazos_espalda": 0.1001, "press_final": 2.2995, "press_media": 1.6283, "prog_x": 26.0596, "start_x": 41.4831, "starts_from_dispossess": 0.0348, "takeons_ok": 0.0512, "tempo": 0.3784, "transition_speed": 3.6628, "verticalidad_media": 0.3591}, "Cobresal": {"atk_l": 41.1553, "atk_w": 35.2499, "ball_distance": 109.0976, "behind_line_ok": 0.0643, "broke_last_line": 0.0308, "broke_second_last": 0.1463, "cross_pvadded_max": 0.001, "dang_runs": 0.1364, "deep_completions": 0.3, "def_h": 31.1406, "dribbles_box": 0.0071, "dribbles_last_third": 0.048, "duration_s": 23.5695, "hold_max": 9.774, "hold_mean": 5.9359, "hold_min": 3.715, "line_breaks": 0.6268, "max_x": 67.9779, "n_centros": 0.1383, "n_events": 5.144, "n_involved": 1.8427, "n_passes": 2.8522, "opt_quality_mean": -0.0586, "paredes": 0.2054, "pass_options_mean": 7.2342, "passes_behind_line": 0.1248, "pct_adentro": 0.5101, "pct_afuera": 0.4135, "pct_cortos": 0.3224, "pct_headpass": 0.0369, "pct_largos": 0.2603, "pct_launch": 0.0896, "pct_layoff": 0.0088, "pct_medios": 0.3419, "pct_switch": 0.0082, "pct_through": 0.0028, "pct_verticales": 0.5125, "pelotazos_espalda": 0.0921, "press_final": 2.4565, "press_media": 1.7632, "prog_x": 28.1732, "start_x": 40.9987, "starts_from_dispossess": 0.0412, "takeons_ok": 0.048, "tempo": 0.3483, "transition_speed": 3.925, "verticalidad_media": 0.3826}, "Colo Colo": {"atk_l": 42.1536, "atk_w": 34.8239, "ball_distance": 141.2925, "behind_line_ok": 0.0582, "broke_last_line": 0.0399, "broke_second_last": 0.1912, "cross_pvadded_max": 0.0007, "dang_runs": 0.1264, "deep_completions": 0.3931, "def_h": 29.2162, "dribbles_box": 0.014, "dribbles_last_third": 0.0748, "duration_s": 19.4176, "hold_max": 9.9064, "hold_mean": 5.8486, "hold_min": 3.5145, "line_breaks": 0.7819, "max_x": 70.7258, "n_centros": 0.14, "n_events": 5.4431, "n_involved": 2.0166, "n_passes": 3.6494, "opt_quality_mean": 0.0108, "paredes": 0.3161, "pass_options_mean": 7.6596, "passes_behind_line": 0.1199, "pct_adentro": 0.5343, "pct_afuera": 0.396, "pct_cortos": 0.405, "pct_headpass": 0.0402, "pct_largos": 0.1859, "pct_launch": 0.0669, "pct_layoff": 0.0094, "pct_medios": 0.3408, "pct_switch": 0.0084, "pct_through": 0.004, "pct_verticales": 0.4628, "pelotazos_espalda": 0.0837, "press_final": 2.4562, "press_media": 1.7968, "prog_x": 25.6585, "start_x": 46.1756, "starts_from_dispossess": 0.0463, "takeons_ok": 0.0592, "tempo": 0.3927, "transition_speed": 3.4476, "verticalidad_media": 0.3098}, "Coquimbo Unido": {"atk_l": 40.0598, "atk_w": 34.7386, "ball_distance": 81.7283, "behind_line_ok": 0.0493, "broke_last_line": 0.0399, "broke_second_last": 0.1237, "cross_pvadded_max": 0.0011, "dang_runs": 0.1092, "deep_completions": 0.3469, "def_h": 28.5956, "dribbles_box": 0.0096, "dribbles_last_third": 0.0471, "duration_s": 27.4029, "hold_max": 9.7983, "hold_mean": 5.9343, "hold_min": 3.6173, "line_breaks": 0.3869, "max_x": 71.37, "n_centros": 0.1544, "n_events": 5.4727, "n_involved": 1.7389, "n_passes": 2.756, "opt_quality_mean": -0.0118, "paredes": 0.2135, "pass_options_mean": 7.3019, "passes_behind_line": 0.116, "pct_adentro": 0.5303, "pct_afuera": 0.3915, "pct_cortos": 0.3579, "pct_headpass": 0.0643, "pct_largos": 0.2408, "pct_launch": 0.089, "pct_layoff": 0.0087, "pct_medios": 0.3237, "pct_switch": 0.0059, "pct_through": 0.0018, "pct_verticales": 0.5291, "pelotazos_espalda": 0.0817, "press_final": 2.4001, "press_media": 1.7265, "prog_x": 27.0778, "start_x": 45.4939, "starts_from_dispossess": 0.0421, "takeons_ok": 0.0351, "tempo": 0.3851, "transition_speed": 4.1515, "verticalidad_media": 0.398}, "Deportes Concepción": {"atk_l": 41.3362, "atk_w": 34.946, "ball_distance": 106.8195, "behind_line_ok": 0.0472, "broke_last_line": 0.035, "broke_second_last": 0.1311, "cross_pvadded_max": 0.001, "dang_runs": 0.1407, "deep_completions": 0.2768, "def_h": 30.8809, "dribbles_box": 0.008, "dribbles_last_third": 0.0437, "duration_s": 21.6807, "hold_max": 10.4322, "hold_mean": 6.1779, "hold_min": 3.7647, "line_breaks": 0.4638, "max_x": 69.1449, "n_centros": 0.1614, "n_events": 5.0412, "n_involved": 1.7219, "n_passes": 2.913, "opt_quality_mean": -0.0571, "paredes": 0.2107, "pass_options_mean": 8.0276, "passes_behind_line": 0.1268, "pct_adentro": 0.5144, "pct_afuera": 0.395, "pct_cortos": 0.3532, "pct_headpass": 0.0454, "pct_largos": 0.2231, "pct_launch": 0.0953, "pct_layoff": 0.0057, "pct_medios": 0.3337, "pct_switch": 0.0067, "pct_through": 0.0015, "pct_verticales": 0.5023, "pelotazos_espalda": 0.0993, "press_final": 2.5799, "press_media": 1.825, "prog_x": 27.1827, "start_x": 43.2267, "starts_from_dispossess": 0.0371, "takeons_ok": 0.0435, "tempo": 0.3639, "transition_speed": 3.9681, "verticalidad_media": 0.3786}, "Deportes Limache": {"atk_l": 42.041, "atk_w": 37.3956, "ball_distance": 120.9087, "behind_line_ok": 0.0556, "broke_last_line": 0.0268, "broke_second_last": 0.1238, "cross_pvadded_max": 0.0016, "dang_runs": 0.1053, "deep_completions": 0.3055, "def_h": 30.4083, "dribbles_box": 0.0134, "dribbles_last_third": 0.0634, "duration_s": 35.1504, "hold_max": 10.5949, "hold_mean": 5.9118, "hold_min": 3.5558, "line_breaks": 0.4913, "max_x": 69.4904, "n_centros": 0.1265, "n_events": 6.0448, "n_involved": 1.7411, "n_passes": 2.8435, "opt_quality_mean": -0.044, "paredes": 0.2509, "pass_options_mean": 7.9205, "passes_behind_line": 0.1305, "pct_adentro": 0.5038, "pct_afuera": 0.4081, "pct_cortos": 0.3234, "pct_headpass": 0.043, "pct_largos": 0.2377, "pct_launch": 0.0971, "pct_layoff": 0.0053, "pct_medios": 0.3524, "pct_switch": 0.0066, "pct_through": 0.002, "pct_verticales": 0.5213, "pelotazos_espalda": 0.098, "press_final": 2.5584, "press_media": 1.8402, "prog_x": 28.1893, "start_x": 42.8098, "starts_from_dispossess": 0.0339, "takeons_ok": 0.0541, "tempo": 0.3579, "transition_speed": 4.1984, "verticalidad_media": 0.4064}, "Everton": {"atk_l": 41.5943, "atk_w": 35.2604, "ball_distance": 104.8116, "behind_line_ok": 0.0523, "broke_last_line": 0.0387, "broke_second_last": 0.1402, "cross_pvadded_max": 0.0009, "dang_runs": 0.0875, "deep_completions": 0.3168, "def_h": 30.6894, "dribbles_box": 0.0077, "dribbles_last_third": 0.0487, "duration_s": 22.4321, "hold_max": 9.8818, "hold_mean": 5.8723, "hold_min": 3.5059, "line_breaks": 0.5465, "max_x": 68.9878, "n_centros": 0.1373, "n_events": 4.9321, "n_involved": 1.7968, "n_passes": 2.713, "opt_quality_mean": -0.0356, "paredes": 0.2038, "pass_options_mean": 7.3116, "passes_behind_line": 0.1073, "pct_adentro": 0.5184, "pct_afuera": 0.401, "pct_cortos": 0.3651, "pct_headpass": 0.0455, "pct_largos": 0.2193, "pct_launch": 0.0855, "pct_layoff": 0.0064, "pct_medios": 0.3355, "pct_switch": 0.0071, "pct_through": 0.0013, "pct_verticales": 0.523, "pelotazos_espalda": 0.0785, "press_final": 2.1912, "press_media": 1.629, "prog_x": 26.7918, "start_x": 43.309, "starts_from_dispossess": 0.0431, "takeons_ok": 0.0508, "tempo": 0.3858, "transition_speed": 4.1993, "verticalidad_media": 0.4035}, "Huachipato": {"atk_l": 40.6697, "atk_w": 36.0549, "ball_distance": 91.3896, "behind_line_ok": 0.0548, "broke_last_line": 0.0251, "broke_second_last": 0.1231, "cross_pvadded_max": 0.0015, "dang_runs": 0.0646, "deep_completions": 0.2817, "def_h": 30.6673, "dribbles_box": 0.0045, "dribbles_last_third": 0.0374, "duration_s": 28.6093, "hold_max": 10.4016, "hold_mean": 6.3596, "hold_min": 4.1491, "line_breaks": 0.4364, "max_x": 68.8979, "n_centros": 0.1404, "n_events": 5.6951, "n_involved": 1.8404, "n_passes": 2.8075, "opt_quality_mean": -0.0631, "paredes": 0.1959, "pass_options_mean": 6.7544, "passes_behind_line": 0.1332, "pct_adentro": 0.5358, "pct_afuera": 0.3784, "pct_cortos": 0.3351, "pct_headpass": 0.0531, "pct_largos": 0.2467, "pct_launch": 0.0822, "pct_layoff": 0.0099, "pct_medios": 0.3332, "pct_switch": 0.0062, "pct_through": 0.0024, "pct_verticales": 0.5197, "pelotazos_espalda": 0.1098, "press_final": 2.2469, "press_media": 1.7085, "prog_x": 27.694, "start_x": 42.7358, "starts_from_dispossess": 0.0417, "takeons_ok": 0.0375, "tempo": 0.3589, "transition_speed": 3.7411, "verticalidad_media": 0.4001}, "La Serena": {"atk_l": 40.0815, "atk_w": 34.1472, "ball_distance": 90.5409, "behind_line_ok": 0.0432, "broke_last_line": 0.026, "broke_second_last": 0.1418, "cross_pvadded_max": 0.0009, "dang_runs": 0.0956, "deep_completions": 0.2456, "def_h": 31.6578, "dribbles_box": 0.0057, "dribbles_last_third": 0.0428, "duration_s": 13.5841, "hold_max": 10.626, "hold_mean": 6.5144, "hold_min": 4.0239, "line_breaks": 0.4671, "max_x": 67.3348, "n_centros": 0.0975, "n_events": 4.1643, "n_involved": 1.7916, "n_passes": 2.5904, "opt_quality_mean": -0.1166, "paredes": 0.1796, "pass_options_mean": 7.7619, "passes_behind_line": 0.1113, "pct_adentro": 0.5071, "pct_afuera": 0.3973, "pct_cortos": 0.3538, "pct_headpass": 0.0488, "pct_largos": 0.2222, "pct_launch": 0.12, "pct_layoff": 0.0086, "pct_medios": 0.3291, "pct_switch": 0.0029, "pct_through": 0.0022, "pct_verticales": 0.5254, "pelotazos_espalda": 0.0873, "press_final": 2.6426, "press_media": 1.9287, "prog_x": 25.6145, "start_x": 43.0097, "starts_from_dispossess": 0.0468, "takeons_ok": 0.045, "tempo": 0.3711, "transition_speed": 3.9351, "verticalidad_media": 0.409}, "O'Higgins": {"atk_l": 40.6683, "atk_w": 34.68, "ball_distance": 98.4671, "behind_line_ok": 0.0337, "broke_last_line": 0.028, "broke_second_last": 0.1308, "cross_pvadded_max": 0.0019, "dang_runs": 0.1291, "deep_completions": 0.3028, "def_h": 30.3821, "dribbles_box": 0.0086, "dribbles_last_third": 0.0496, "duration_s": 37.0908, "hold_max": 10.93, "hold_mean": 6.1839, "hold_min": 3.666, "line_breaks": 0.4717, "max_x": 69.1333, "n_centros": 0.1558, "n_events": 6.3802, "n_involved": 1.8263, "n_passes": 3.0622, "opt_quality_mean": -0.0327, "paredes": 0.2729, "pass_options_mean": 7.2158, "passes_behind_line": 0.0874, "pct_adentro": 0.5049, "pct_afuera": 0.4035, "pct_cortos": 0.3719, "pct_headpass": 0.0495, "pct_largos": 0.1972, "pct_launch": 0.0965, "pct_layoff": 0.0105, "pct_medios": 0.3397, "pct_switch": 0.0025, "pct_through": 0.0023, "pct_verticales": 0.5005, "pelotazos_espalda": 0.0575, "press_final": 2.2902, "press_media": 1.6804, "prog_x": 27.0006, "start_x": 43.378, "starts_from_dispossess": 0.0411, "takeons_ok": 0.0452, "tempo": 0.3741, "transition_speed": 3.6955, "verticalidad_media": 0.3761}, "Palestino": {"atk_l": 40.963, "atk_w": 35.1724, "ball_distance": 103.9561, "behind_line_ok": 0.0542, "broke_last_line": 0.0266, "broke_second_last": 0.1563, "cross_pvadded_max": 0.0012, "dang_runs": 0.0891, "deep_completions": 0.2852, "def_h": 30.3208, "dribbles_box": 0.0081, "dribbles_last_third": 0.051, "duration_s": 32.327, "hold_max": 10.3905, "hold_mean": 5.8207, "hold_min": 3.3462, "line_breaks": 0.4245, "max_x": 68.6686, "n_centros": 0.1318, "n_events": 6.089, "n_involved": 1.8107, "n_passes": 2.9328, "opt_quality_mean": -0.0175, "paredes": 0.252, "pass_options_mean": 7.5083, "passes_behind_line": 0.1143, "pct_adentro": 0.5152, "pct_afuera": 0.3951, "pct_cortos": 0.3941, "pct_headpass": 0.0599, "pct_largos": 0.2318, "pct_launch": 0.106, "pct_layoff": 0.007, "pct_medios": 0.2858, "pct_switch": 0.005, "pct_through": 0.0009, "pct_verticales": 0.5115, "pelotazos_espalda": 0.0879, "press_final": 2.3961, "press_media": 1.689, "prog_x": 27.3316, "start_x": 42.6142, "starts_from_dispossess": 0.036, "takeons_ok": 0.0469, "tempo": 0.3893, "transition_speed": 4.0571, "verticalidad_media": 0.3846}, "Universidad Católica": {"atk_l": 41.4091, "atk_w": 35.728, "ball_distance": 140.8207, "behind_line_ok": 0.0531, "broke_last_line": 0.0439, "broke_second_last": 0.1721, "cross_pvadded_max": 0.0017, "dang_runs": 0.1186, "deep_completions": 0.329, "def_h": 30.2428, "dribbles_box": 0.009, "dribbles_last_third": 0.0464, "duration_s": 26.7206, "hold_max": 10.8556, "hold_mean": 6.0209, "hold_min": 3.4544, "line_breaks": 0.5684, "max_x": 70.2344, "n_centros": 0.1732, "n_events": 5.8315, "n_involved": 1.9272, "n_passes": 3.3105, "opt_quality_mean": -0.0005, "paredes": 0.3551, "pass_options_mean": 8.1004, "passes_behind_line": 0.1228, "pct_adentro": 0.5293, "pct_afuera": 0.3835, "pct_cortos": 0.3848, "pct_headpass": 0.0429, "pct_largos": 0.2015, "pct_launch": 0.0759, "pct_layoff": 0.0096, "pct_medios": 0.328, "pct_switch": 0.004, "pct_through": 0.0045, "pct_verticales": 0.4846, "pelotazos_espalda": 0.0855, "press_final": 2.3942, "press_media": 1.7472, "prog_x": 27.2156, "start_x": 44.419, "starts_from_dispossess": 0.0379, "takeons_ok": 0.0468, "tempo": 0.4107, "transition_speed": 3.7859, "verticalidad_media": 0.3486}, "Universidad Concepción": {"atk_l": 42.1807, "atk_w": 34.2435, "ball_distance": 98.0222, "behind_line_ok": 0.0393, "broke_last_line": 0.0315, "broke_second_last": 0.1425, "cross_pvadded_max": 0.0008, "dang_runs": 0.0934, "deep_completions": 0.3108, "def_h": 30.8232, "dribbles_box": 0.0106, "dribbles_last_third": 0.0611, "duration_s": 18.1323, "hold_max": 10.0577, "hold_mean": 5.9688, "hold_min": 3.5953, "line_breaks": 0.4996, "max_x": 67.7226, "n_centros": 0.1261, "n_events": 4.7324, "n_involved": 1.8149, "n_passes": 2.8846, "opt_quality_mean": -0.0381, "paredes": 0.2282, "pass_options_mean": 7.3632, "passes_behind_line": 0.0938, "pct_adentro": 0.5114, "pct_afuera": 0.3877, "pct_cortos": 0.3835, "pct_headpass": 0.0463, "pct_largos": 0.1978, "pct_launch": 0.0864, "pct_layoff": 0.0073, "pct_medios": 0.319, "pct_switch": 0.0059, "pct_through": 0.0025, "pct_verticales": 0.4834, "pelotazos_espalda": 0.0647, "press_final": 2.6616, "press_media": 1.9459, "prog_x": 24.6219, "start_x": 44.6091, "starts_from_dispossess": 0.0361, "takeons_ok": 0.0642, "tempo": 0.3712, "transition_speed": 3.3922, "verticalidad_media": 0.3547}, "Universidad de Chile": {"atk_l": 41.8757, "atk_w": 34.0639, "ball_distance": 122.2994, "behind_line_ok": 0.0445, "broke_last_line": 0.0257, "broke_second_last": 0.1552, "cross_pvadded_max": 0.0013, "dang_runs": 0.15, "deep_completions": 0.3337, "def_h": 29.844, "dribbles_box": 0.0133, "dribbles_last_third": 0.0532, "duration_s": 43.9797, "hold_max": 10.6605, "hold_mean": 6.0211, "hold_min": 3.5989, "line_breaks": 0.5714, "max_x": 69.1156, "n_centros": 0.1296, "n_events": 7.2386, "n_involved": 1.9569, "n_passes": 3.27, "opt_quality_mean": 0.0058, "paredes": 0.2735, "pass_options_mean": 7.5431, "passes_behind_line": 0.1025, "pct_adentro": 0.5156, "pct_afuera": 0.4054, "pct_cortos": 0.3961, "pct_headpass": 0.0509, "pct_largos": 0.1919, "pct_launch": 0.1004, "pct_layoff": 0.0113, "pct_medios": 0.3336, "pct_switch": 0.0057, "pct_through": 0.0011, "pct_verticales": 0.5074, "pelotazos_espalda": 0.0715, "press_final": 2.4084, "press_media": 1.7335, "prog_x": 25.3528, "start_x": 44.7063, "starts_from_dispossess": 0.0443, "takeons_ok": 0.0511, "tempo": 0.3911, "transition_speed": 3.804, "verticalidad_media": 0.3729}, "Unión La Calera": {"atk_l": 43.809, "atk_w": 34.3533, "ball_distance": 121.6803, "behind_line_ok": 0.046, "broke_last_line": 0.033, "broke_second_last": 0.1327, "cross_pvadded_max": 0.0011, "dang_runs": 0.1176, "deep_completions": 0.2544, "def_h": 30.9269, "dribbles_box": 0.0118, "dribbles_last_third": 0.0565, "duration_s": 38.2518, "hold_max": 10.5974, "hold_mean": 6.0769, "hold_min": 3.5696, "line_breaks": 0.5359, "max_x": 67.3002, "n_centros": 0.154, "n_events": 6.4635, "n_involved": 1.8988, "n_passes": 3.049, "opt_quality_mean": -0.0728, "paredes": 0.196, "pass_options_mean": 7.5498, "passes_behind_line": 0.1143, "pct_adentro": 0.5351, "pct_afuera": 0.3935, "pct_cortos": 0.3589, "pct_headpass": 0.0534, "pct_largos": 0.2172, "pct_launch": 0.0896, "pct_layoff": 0.0069, "pct_medios": 0.3539, "pct_switch": 0.0038, "pct_through": 0.0023, "pct_verticales": 0.5031, "pelotazos_espalda": 0.0841, "press_final": 2.494, "press_media": 1.8736, "prog_x": 25.5946, "start_x": 42.8317, "starts_from_dispossess": 0.0447, "takeons_ok": 0.0424, "tempo": 0.3836, "transition_speed": 3.6248, "verticalidad_media": 0.3587}, "Ñublense": {"atk_l": 39.6577, "atk_w": 34.051, "ball_distance": 67.4064, "behind_line_ok": 0.0373, "broke_last_line": 0.0211, "broke_second_last": 0.149, "cross_pvadded_max": 0.0015, "dang_runs": 0.0682, "deep_completions": 0.2973, "def_h": 29.4716, "dribbles_box": 0.0066, "dribbles_last_third": 0.0404, "duration_s": 23.4373, "hold_max": 10.1392, "hold_mean": 6.3186, "hold_min": 4.0473, "line_breaks": 0.3022, "max_x": 69.6833, "n_centros": 0.1372, "n_events": 5.091, "n_involved": 1.7539, "n_passes": 2.56, "opt_quality_mean": -0.0315, "paredes": 0.1774, "pass_options_mean": 6.7172, "passes_behind_line": 0.0927, "pct_adentro": 0.5367, "pct_afuera": 0.3777, "pct_cortos": 0.399, "pct_headpass": 0.0719, "pct_largos": 0.2084, "pct_launch": 0.089, "pct_layoff": 0.0058, "pct_medios": 0.3078, "pct_switch": 0.0041, "pct_through": 0.0013, "pct_verticales": 0.5221, "pelotazos_espalda": 0.0675, "press_final": 2.2955, "press_media": 1.7525, "prog_x": 25.4106, "start_x": 45.6066, "starts_from_dispossess": 0.0492, "takeons_ok": 0.0365, "tempo": 0.3963, "transition_speed": 3.9099, "verticalidad_media": 0.4144}}, "team_eje_norm_gen": {"Audax Italiano": {"eje_verticalidad": -0.0445, "eje_elaboracion": -0.0189, "eje_individual": -0.0139, "eje_rotura_lineas": -0.0067, "eje_amplitud_centro": -0.0062, "eje_profundidad_espalda": 0.0321, "eje_robo_alto": -0.0589, "eje_aereo_segunda": -0.0101}, "Cobresal": {"eje_verticalidad": 0.0194, "eje_elaboracion": -0.0492, "eje_individual": 0.0025, "eje_rotura_lineas": 0.0214, "eje_amplitud_centro": 0.0333, "eje_profundidad_espalda": 0.0319, "eje_robo_alto": -0.0521, "eje_aereo_segunda": -0.0239}, "Colo Colo": {"eje_verticalidad": -0.1257, "eje_elaboracion": 0.1072, "eje_individual": 0.0578, "eje_rotura_lineas": 0.0915, "eje_amplitud_centro": 0.0196, "eje_profundidad_espalda": 0.0476, "eje_robo_alto": 0.0588, "eje_aereo_segunda": -0.0426}, "Coquimbo Unido": {"eje_verticalidad": 0.0324, "eje_elaboracion": -0.0268, "eje_individual": -0.0159, "eje_rotura_lineas": -0.0169, "eje_amplitud_centro": 0.0137, "eje_profundidad_espalda": 0.0162, "eje_robo_alto": 0.0351, "eje_aereo_segunda": 0.0301}, "Deportes Concepción": {"eje_verticalidad": -0.0227, "eje_elaboracion": -0.0232, "eje_individual": -0.003, "eje_rotura_lineas": -0.0121, "eje_amplitud_centro": 0.0282, "eje_profundidad_espalda": 0.0124, "eje_robo_alto": -0.0204, "eje_aereo_segunda": -0.0197}, "Deportes Limache": {"eje_verticalidad": 0.0266, "eje_elaboracion": -0.023, "eje_individual": 0.0308, "eje_rotura_lineas": -0.0216, "eje_amplitud_centro": 0.007, "eje_profundidad_espalda": 0.0338, "eje_robo_alto": -0.0362, "eje_aereo_segunda": -0.0256}, "Everton": {"eje_verticalidad": 0.0146, "eje_elaboracion": -0.0328, "eje_individual": -0.0097, "eje_rotura_lineas": 0.0079, "eje_amplitud_centro": 0.0135, "eje_profundidad_espalda": -0.0009, "eje_robo_alto": -0.0035, "eje_aereo_segunda": -0.0277}, "Huachipato": {"eje_verticalidad": 0.0141, "eje_elaboracion": -0.0441, "eje_individual": -0.0528, "eje_rotura_lineas": -0.0282, "eje_amplitud_centro": -0.0099, "eje_profundidad_espalda": 0.037, "eje_robo_alto": -0.0178, "eje_aereo_segunda": 0.0066}, "La Serena": {"eje_verticalidad": 0.0076, "eje_elaboracion": -0.0657, "eje_individual": -0.0247, "eje_rotura_lineas": -0.0121, "eje_amplitud_centro": -0.0538, "eje_profundidad_espalda": -0.0259, "eje_robo_alto": 0.0001, "eje_aereo_segunda": 0.0384}, "O'Higgins": {"eje_verticalidad": -0.0533, "eje_elaboracion": 0.0363, "eje_individual": 0.0025, "eje_rotura_lineas": -0.0154, "eje_amplitud_centro": 0.0045, "eje_profundidad_espalda": -0.0608, "eje_robo_alto": -0.0073, "eje_aereo_segunda": 0.0215}, "Palestino": {"eje_verticalidad": -0.0018, "eje_elaboracion": 0.0297, "eje_individual": -0.0099, "eje_rotura_lineas": -0.0161, "eje_amplitud_centro": -0.0101, "eje_profundidad_espalda": 0.0035, "eje_robo_alto": -0.0345, "eje_aereo_segunda": 0.0319}, "Universidad Católica": {"eje_verticalidad": -0.0701, "eje_elaboracion": 0.0882, "eje_individual": -0.0019, "eje_rotura_lineas": 0.0624, "eje_amplitud_centro": 0.0119, "eje_profundidad_espalda": 0.0225, "eje_robo_alto": 0.0043, "eje_aereo_segunda": -0.024}, "Universidad Concepción": {"eje_verticalidad": -0.0912, "eje_elaboracion": -0.0009, "eje_individual": 0.0279, "eje_rotura_lineas": 0.002, "eje_amplitud_centro": -0.0169, "eje_profundidad_espalda": -0.0402, "eje_robo_alto": 0.0033, "eje_aereo_segunda": -0.0188}, "Universidad de Chile": {"eje_verticalidad": -0.0462, "eje_elaboracion": 0.0738, "eje_individual": 0.0324, "eje_rotura_lineas": 0.0012, "eje_amplitud_centro": 0.0015, "eje_profundidad_espalda": -0.0134, "eje_robo_alto": 0.0258, "eje_aereo_segunda": 0.0348}, "Unión La Calera": {"eje_verticalidad": -0.0425, "eje_elaboracion": -0.0025, "eje_individual": 0.0109, "eje_rotura_lineas": 0.0006, "eje_amplitud_centro": 0.0019, "eje_profundidad_espalda": -0.0202, "eje_robo_alto": -0.0085, "eje_aereo_segunda": -0.003}, "Ñublense": {"eje_verticalidad": 0.0015, "eje_elaboracion": -0.0313, "eje_individual": -0.0441, "eje_rotura_lineas": -0.0401, "eje_amplitud_centro": -0.0271, "eje_profundidad_espalda": -0.0457, "eje_robo_alto": 0.0554, "eje_aereo_segunda": 0.0266}}, "team_eje_norm_con": {"Audax Italiano": {"eje_verticalidad": -0.0159, "eje_elaboracion": 0.0057, "eje_individual": -0.0063, "eje_rotura_lineas": 0.0008, "eje_amplitud_centro": 0.0132, "eje_profundidad_espalda": 0.0156, "eje_robo_alto": 0.0226, "eje_aereo_segunda": 0.0033}, "Cobresal": {"eje_verticalidad": -0.1062, "eje_elaboracion": 0.1113, "eje_individual": 0.0392, "eje_rotura_lineas": 0.0697, "eje_amplitud_centro": 0.0123, "eje_profundidad_espalda": 0.049, "eje_robo_alto": 0.0734, "eje_aereo_segunda": -0.0395}, "Colo Colo": {"eje_verticalidad": 0.0789, "eje_elaboracion": -0.0881, "eje_individual": -0.026, "eje_rotura_lineas": -0.0011, "eje_amplitud_centro": -0.0008, "eje_profundidad_espalda": -0.045, "eje_robo_alto": -0.0736, "eje_aereo_segunda": 0.0152}, "Coquimbo Unido": {"eje_verticalidad": -0.0043, "eje_elaboracion": -0.0271, "eje_individual": -0.0184, "eje_rotura_lineas": -0.0422, "eje_amplitud_centro": -0.0324, "eje_profundidad_espalda": -0.0717, "eje_robo_alto": -0.0558, "eje_aereo_segunda": 0.0025}, "Deportes Concepción": {"eje_verticalidad": -0.0316, "eje_elaboracion": 0.0376, "eje_individual": 0.0326, "eje_rotura_lineas": 0.0061, "eje_amplitud_centro": 0.0117, "eje_profundidad_espalda": -0.0017, "eje_robo_alto": -0.0065, "eje_aereo_segunda": 0.0015}, "Deportes Limache": {"eje_verticalidad": -0.1052, "eje_elaboracion": 0.0571, "eje_individual": -0.0061, "eje_rotura_lineas": 0.0575, "eje_amplitud_centro": 0.0157, "eje_profundidad_espalda": 0.056, "eje_robo_alto": 0.0257, "eje_aereo_segunda": -0.0122}, "Everton": {"eje_verticalidad": -0.0182, "eje_elaboracion": 0.0025, "eje_individual": -0.0056, "eje_rotura_lineas": -0.0051, "eje_amplitud_centro": 0.0053, "eje_profundidad_espalda": 0.023, "eje_robo_alto": -0.013, "eje_aereo_segunda": 0.0066}, "Huachipato": {"eje_verticalidad": -0.0538, "eje_elaboracion": -0.0034, "eje_individual": 0.0311, "eje_rotura_lineas": -0.0087, "eje_amplitud_centro": 0.0198, "eje_profundidad_espalda": 0.0134, "eje_robo_alto": 0.0164, "eje_aereo_segunda": -0.0073}, "La Serena": {"eje_verticalidad": -0.027, "eje_elaboracion": -0.0434, "eje_individual": -0.0019, "eje_rotura_lineas": -0.0255, "eje_amplitud_centro": -0.035, "eje_profundidad_espalda": 0.0306, "eje_robo_alto": 0.0361, "eje_aereo_segunda": 0.0168}, "O'Higgins": {"eje_verticalidad": -0.0112, "eje_elaboracion": 0.0215, "eje_individual": -0.0223, "eje_rotura_lineas": 0.025, "eje_amplitud_centro": 0.0169, "eje_profundidad_espalda": 0.0351, "eje_robo_alto": -0.0089, "eje_aereo_segunda": 0.0052}, "Palestino": {"eje_verticalidad": -0.0349, "eje_elaboracion": -0.0157, "eje_individual": -0.0071, "eje_rotura_lineas": -0.0244, "eje_amplitud_centro": -0.0047, "eje_profundidad_espalda": 0.0035, "eje_robo_alto": -0.0015, "eje_aereo_segunda": -0.0012}, "Universidad Católica": {"eje_verticalidad": 0.047, "eje_elaboracion": -0.042, "eje_individual": -0.0038, "eje_rotura_lineas": -0.0271, "eje_amplitud_centro": 0.0288, "eje_profundidad_espalda": -0.0121, "eje_robo_alto": -0.0411, "eje_aereo_segunda": -0.0084}, "Universidad Concepción": {"eje_verticalidad": -0.0418, "eje_elaboracion": 0.0391, "eje_individual": -0.0008, "eje_rotura_lineas": 0.0033, "eje_amplitud_centro": 0.0031, "eje_profundidad_espalda": -0.0331, "eje_robo_alto": 0.0012, "eje_aereo_segunda": 0.0184}, "Universidad de Chile": {"eje_verticalidad": 0.0296, "eje_elaboracion": -0.0992, "eje_individual": -0.0219, "eje_rotura_lineas": -0.0302, "eje_amplitud_centro": -0.0222, "eje_profundidad_espalda": -0.0015, "eje_robo_alto": -0.0066, "eje_aereo_segunda": 0.0254}, "Unión La Calera": {"eje_verticalidad": -0.0283, "eje_elaboracion": 0.0001, "eje_individual": 0.0094, "eje_rotura_lineas": -0.0029, "eje_amplitud_centro": -0.0136, "eje_profundidad_espalda": 0.0032, "eje_robo_alto": 0.0102, "eje_aereo_segunda": -0.0189}, "Ñublense": {"eje_verticalidad": -0.059, "eje_elaboracion": 0.061, "eje_individual": -0.0035, "eje_rotura_lineas": 0.0227, "eje_amplitud_centro": -0.0071, "eje_profundidad_espalda": -0.0346, "eje_robo_alto": -0.035, "eje_aereo_segunda": -0.0132}}} \ No newline at end of file diff --git a/vendor/data/ejes/chile-primera/26/team_profiles.parquet b/vendor/data/ejes/chile-primera/26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..b1fb48172d6d280f9f0cf6ebd574d88dacf26c15 --- /dev/null +++ b/vendor/data/ejes/chile-primera/26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03d6388ad97aacde9c49d052b433fa269ef0a16e2d90344b00de75db7e05f986 +size 8814 diff --git a/vendor/data/ejes/croatia-prva-hnl/25-26/ejes_definition.json b/vendor/data/ejes/croatia-prva-hnl/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/croatia-prva-hnl/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/croatia-prva-hnl/25-26/match_team_ejes.parquet b/vendor/data/ejes/croatia-prva-hnl/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..21fdc956e831b867aeef845e7cde939d077c221a --- /dev/null +++ b/vendor/data/ejes/croatia-prva-hnl/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e6aada718255c12ca8205e1904e94fc72f134a5f72a44bca6198347f5f03817 +size 47125 diff --git a/vendor/data/ejes/croatia-prva-hnl/25-26/match_team_vars.parquet b/vendor/data/ejes/croatia-prva-hnl/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..e72786dbf2d62100d3d30f171cd724acfb6e1de5 --- /dev/null +++ b/vendor/data/ejes/croatia-prva-hnl/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:290162c5b61e671bd461c9d4cbed37602a53a899538156b1d0553179946c8162 +size 175787 diff --git a/vendor/data/ejes/croatia-prva-hnl/25-26/predictor.json b/vendor/data/ejes/croatia-prva-hnl/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..ef283082a909ad96df877cd7e7950e3980c5a857 --- /dev/null +++ b/vendor/data/ejes/croatia-prva-hnl/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.9111, "con": 0.5055, "intercept": 0.01}, "elaboracion": {"gen": 0.9404, "con": 0.7356, "intercept": 0.0004}, "individual": {"gen": 0.8509, "con": 0.7421, "intercept": -0.0}, "rotura_lineas": {"gen": 0.8943, "con": 0.6989, "intercept": -0.0007}, "amplitud_centro": {"gen": 0.6994, "con": 0.3753, "intercept": -0.0}, "profundidad_espalda": {"gen": 0.7644, "con": 0.571, "intercept": -0.0002}, "robo_alto": {"gen": 0.8209, "con": 0.7108, "intercept": 0.0028}, "aereo_segunda": {"gen": 0.6731, "con": -0.7095, "intercept": 0.0005}} \ No newline at end of file diff --git a/vendor/data/ejes/croatia-prva-hnl/25-26/scales.json b/vendor/data/ejes/croatia-prva-hnl/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..0b32c5df9fb61ccce7f125eca3519f7bdbe9b7c8 --- /dev/null +++ b/vendor/data/ejes/croatia-prva-hnl/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 1.8176, "atk_w": 1.1925, "ball_distance": 47.3561, "behind_line_ok": 0.0233, "broke_last_line": 0.0189, "broke_second_last": 0.042, "cross_pvadded_max": 0.0015, "dang_runs": 0.073, "deep_completions": 0.0974, "def_h": 2.869, "dribbles_box": 0.0111, "dribbles_last_third": 0.0257, "duration_s": 18.3278, "hold_max": 1.8779, "hold_mean": 1.0186, "hold_min": 0.9708, "line_breaks": 0.263, "max_x": 3.5705, "n_centros": 0.0509, "n_events": 1.6707, "n_involved": 0.1644, "n_passes": 0.5226, "opt_quality_mean": 0.1198, "paredes": 0.0913, "pass_options_mean": 2.0767, "passes_behind_line": 0.0429, "pct_adentro": 0.037, "pct_afuera": 0.0343, "pct_cortos": 0.049, "pct_headpass": 0.0146, "pct_largos": 0.0446, "pct_launch": 0.0329, "pct_layoff": 0.0056, "pct_medios": 0.0439, "pct_switch": 0.0057, "pct_through": 0.0049, "pct_verticales": 0.053, "pelotazos_espalda": 0.0355, "press_final": 0.3718, "press_media": 0.2402, "prog_x": 2.6282, "start_x": 4.3336, "starts_from_dispossess": 0.0175, "takeons_ok": 0.0247, "tempo": 0.0389, "transition_speed": 0.667, "verticalidad_media": 0.0635}, "eje_sigma": {"eje_verticalidad": 0.1086, "eje_elaboracion": 0.0889, "eje_individual": 0.0726, "eje_rotura_lineas": 0.0636, "eje_amplitud_centro": 0.0583, "eje_profundidad_espalda": 0.0899, "eje_robo_alto": 0.0936, "eje_aereo_segunda": 0.0657}, "eje_match_mean": {"eje_verticalidad": -0.0241, "eje_elaboracion": -0.0006, "eje_individual": 0.0, "eje_rotura_lineas": 0.0013, "eje_amplitud_centro": 0.0004, "eje_profundidad_espalda": 0.0005, "eje_robo_alto": -0.0053, "eje_aereo_segunda": 0.0005}, "eje_match_std": {"eje_verticalidad": 0.1256, "eje_elaboracion": 0.111, "eje_individual": 0.0797, "eje_rotura_lineas": 0.0711, "eje_amplitud_centro": 0.0609, "eje_profundidad_espalda": 0.0953, "eje_robo_alto": 0.1024, "eje_aereo_segunda": 0.0688}, "team_var_norm": {"Dinamo Zagreb": {"atk_l": 42.4246, "atk_w": 32.7874, "ball_distance": 164.8156, "behind_line_ok": 0.0639, "broke_last_line": 0.0445, "broke_second_last": 0.1859, "cross_pvadded_max": 0.0012, "dang_runs": 0.1875, "deep_completions": 0.4438, "def_h": 29.5684, "dribbles_box": 0.0209, "dribbles_last_third": 0.0828, "duration_s": 35.4913, "hold_max": 9.3737, "hold_mean": 5.3358, "hold_min": 3.1541, "line_breaks": 0.8073, "max_x": 70.1149, "n_centros": 0.1352, "n_events": 6.6743, "n_involved": 1.9778, "n_passes": 3.7185, "opt_quality_mean": 0.0774, "paredes": 0.4098, "pass_options_mean": 9.0545, "passes_behind_line": 0.1275, "pct_adentro": 0.5181, "pct_afuera": 0.3982, "pct_cortos": 0.4225, "pct_headpass": 0.0425, "pct_largos": 0.1627, "pct_launch": 0.0591, "pct_layoff": 0.0137, "pct_medios": 0.3319, "pct_switch": 0.0041, "pct_through": 0.0033, "pct_verticales": 0.439, "pelotazos_espalda": 0.0852, "press_final": 2.624, "press_media": 1.8893, "prog_x": 23.0827, "start_x": 48.2758, "starts_from_dispossess": 0.0443, "takeons_ok": 0.0646, "tempo": 0.3666, "transition_speed": 2.7394, "verticalidad_media": 0.2734}, "HNK Gorica": {"atk_l": 40.5163, "atk_w": 33.5408, "ball_distance": 118.4875, "behind_line_ok": 0.0487, "broke_last_line": 0.0337, "broke_second_last": 0.1396, "cross_pvadded_max": 0.0013, "dang_runs": 0.1341, "deep_completions": 0.2802, "def_h": 33.0021, "dribbles_box": 0.0094, "dribbles_last_third": 0.0488, "duration_s": 18.0109, "hold_max": 10.509, "hold_mean": 6.0097, "hold_min": 3.5591, "line_breaks": 0.5998, "max_x": 66.447, "n_centros": 0.1264, "n_events": 4.8216, "n_involved": 1.9002, "n_passes": 3.0039, "opt_quality_mean": -0.0362, "paredes": 0.2681, "pass_options_mean": 8.9093, "passes_behind_line": 0.1275, "pct_adentro": 0.5056, "pct_afuera": 0.4097, "pct_cortos": 0.3866, "pct_headpass": 0.0449, "pct_largos": 0.1979, "pct_launch": 0.0956, "pct_layoff": 0.0149, "pct_medios": 0.3324, "pct_switch": 0.0092, "pct_through": 0.0036, "pct_verticales": 0.4927, "pelotazos_espalda": 0.0943, "press_final": 2.4119, "press_media": 1.7761, "prog_x": 24.7957, "start_x": 42.7009, "starts_from_dispossess": 0.0428, "takeons_ok": 0.0491, "tempo": 0.3903, "transition_speed": 3.5486, "verticalidad_media": 0.3506}, "Hajduk Split": {"atk_l": 41.7601, "atk_w": 33.6359, "ball_distance": 152.3179, "behind_line_ok": 0.0529, "broke_last_line": 0.0392, "broke_second_last": 0.177, "cross_pvadded_max": 0.0021, "dang_runs": 0.1649, "deep_completions": 0.3563, "def_h": 31.052, "dribbles_box": 0.0149, "dribbles_last_third": 0.0663, "duration_s": 42.8338, "hold_max": 10.1981, "hold_mean": 5.3542, "hold_min": 2.9621, "line_breaks": 0.8188, "max_x": 68.7552, "n_centros": 0.1362, "n_events": 7.1994, "n_involved": 1.9457, "n_passes": 3.5821, "opt_quality_mean": 0.0773, "paredes": 0.323, "pass_options_mean": 9.0586, "passes_behind_line": 0.1114, "pct_adentro": 0.5227, "pct_afuera": 0.3958, "pct_cortos": 0.443, "pct_headpass": 0.0501, "pct_largos": 0.1604, "pct_launch": 0.0674, "pct_layoff": 0.0128, "pct_medios": 0.3162, "pct_switch": 0.0047, "pct_through": 0.0048, "pct_verticales": 0.4587, "pelotazos_espalda": 0.0712, "press_final": 2.5798, "press_media": 1.8273, "prog_x": 24.3882, "start_x": 45.4233, "starts_from_dispossess": 0.0466, "takeons_ok": 0.0559, "tempo": 0.3807, "transition_speed": 3.2161, "verticalidad_media": 0.31}, "Istra 1961": {"atk_l": 40.7549, "atk_w": 33.1972, "ball_distance": 114.0813, "behind_line_ok": 0.0483, "broke_last_line": 0.0336, "broke_second_last": 0.1566, "cross_pvadded_max": 0.0009, "dang_runs": 0.1184, "deep_completions": 0.3036, "def_h": 32.7393, "dribbles_box": 0.0102, "dribbles_last_third": 0.051, "duration_s": 16.796, "hold_max": 9.9086, "hold_mean": 5.8025, "hold_min": 3.4452, "line_breaks": 0.5812, "max_x": 66.6883, "n_centros": 0.1145, "n_events": 4.6491, "n_involved": 1.8564, "n_passes": 3.0602, "opt_quality_mean": -0.038, "paredes": 0.2752, "pass_options_mean": 8.1355, "passes_behind_line": 0.1273, "pct_adentro": 0.5075, "pct_afuera": 0.4121, "pct_cortos": 0.4058, "pct_headpass": 0.043, "pct_largos": 0.1944, "pct_launch": 0.0687, "pct_layoff": 0.0125, "pct_medios": 0.3208, "pct_switch": 0.0054, "pct_through": 0.0034, "pct_verticales": 0.4887, "pelotazos_espalda": 0.0949, "press_final": 2.5603, "press_media": 1.7465, "prog_x": 24.6617, "start_x": 43.0138, "starts_from_dispossess": 0.0413, "takeons_ok": 0.0429, "tempo": 0.3879, "transition_speed": 3.5099, "verticalidad_media": 0.3408}, "Lokomotiva Zagreb": {"atk_l": 42.4263, "atk_w": 32.7567, "ball_distance": 103.8154, "behind_line_ok": 0.0443, "broke_last_line": 0.0334, "broke_second_last": 0.1355, "cross_pvadded_max": 0.0018, "dang_runs": 0.0977, "deep_completions": 0.2809, "def_h": 32.1845, "dribbles_box": 0.0093, "dribbles_last_third": 0.0536, "duration_s": 28.6419, "hold_max": 10.3395, "hold_mean": 6.0333, "hold_min": 3.6206, "line_breaks": 0.5046, "max_x": 66.88, "n_centros": 0.1265, "n_events": 5.6126, "n_involved": 1.7399, "n_passes": 2.9817, "opt_quality_mean": -0.03, "paredes": 0.2548, "pass_options_mean": 7.9807, "passes_behind_line": 0.1064, "pct_adentro": 0.507, "pct_afuera": 0.4021, "pct_cortos": 0.3775, "pct_headpass": 0.0503, "pct_largos": 0.1993, "pct_launch": 0.0749, "pct_layoff": 0.0084, "pct_medios": 0.3333, "pct_switch": 0.0082, "pct_through": 0.0039, "pct_verticales": 0.4789, "pelotazos_espalda": 0.079, "press_final": 2.4003, "press_media": 1.749, "prog_x": 24.1815, "start_x": 43.6676, "starts_from_dispossess": 0.0385, "takeons_ok": 0.0531, "tempo": 0.3608, "transition_speed": 3.4854, "verticalidad_media": 0.3475}, "Osijek": {"atk_l": 41.2629, "atk_w": 32.6108, "ball_distance": 115.2046, "behind_line_ok": 0.0465, "broke_last_line": 0.0338, "broke_second_last": 0.1293, "cross_pvadded_max": 0.0006, "dang_runs": 0.1048, "deep_completions": 0.2918, "def_h": 31.8486, "dribbles_box": 0.0139, "dribbles_last_third": 0.0648, "duration_s": 29.9431, "hold_max": 10.4294, "hold_mean": 5.956, "hold_min": 3.7459, "line_breaks": 0.557, "max_x": 67.3762, "n_centros": 0.1274, "n_events": 5.8294, "n_involved": 1.8863, "n_passes": 3.0274, "opt_quality_mean": 0.0196, "paredes": 0.2606, "pass_options_mean": 8.4183, "passes_behind_line": 0.113, "pct_adentro": 0.5125, "pct_afuera": 0.3962, "pct_cortos": 0.3961, "pct_headpass": 0.0464, "pct_largos": 0.205, "pct_launch": 0.0829, "pct_layoff": 0.012, "pct_medios": 0.3083, "pct_switch": 0.0053, "pct_through": 0.0043, "pct_verticales": 0.4718, "pelotazos_espalda": 0.0775, "press_final": 2.3735, "press_media": 1.6907, "prog_x": 23.8692, "start_x": 44.5967, "starts_from_dispossess": 0.0474, "takeons_ok": 0.0488, "tempo": 0.3737, "transition_speed": 3.3841, "verticalidad_media": 0.3446}, "Rijeka": {"atk_l": 41.6263, "atk_w": 33.6377, "ball_distance": 124.5959, "behind_line_ok": 0.0526, "broke_last_line": 0.04, "broke_second_last": 0.1429, "cross_pvadded_max": 0.0014, "dang_runs": 0.1355, "deep_completions": 0.3585, "def_h": 29.7031, "dribbles_box": 0.0143, "dribbles_last_third": 0.0646, "duration_s": 40.9686, "hold_max": 11.1921, "hold_mean": 6.1875, "hold_min": 3.8242, "line_breaks": 0.5408, "max_x": 70.2048, "n_centros": 0.1521, "n_events": 6.7681, "n_involved": 1.8223, "n_passes": 3.1599, "opt_quality_mean": 0.047, "paredes": 0.2849, "pass_options_mean": 8.5511, "passes_behind_line": 0.1357, "pct_adentro": 0.5129, "pct_afuera": 0.4012, "pct_cortos": 0.3561, "pct_headpass": 0.0411, "pct_largos": 0.2146, "pct_launch": 0.0924, "pct_layoff": 0.0094, "pct_medios": 0.3442, "pct_switch": 0.0077, "pct_through": 0.0036, "pct_verticales": 0.4663, "pelotazos_espalda": 0.1016, "press_final": 2.4892, "press_media": 1.7592, "prog_x": 24.6455, "start_x": 46.681, "starts_from_dispossess": 0.0368, "takeons_ok": 0.0436, "tempo": 0.3689, "transition_speed": 3.355, "verticalidad_media": 0.3137}, "Slaven Koprivnica": {"atk_l": 40.7861, "atk_w": 33.0124, "ball_distance": 101.2788, "behind_line_ok": 0.0399, "broke_last_line": 0.0258, "broke_second_last": 0.1459, "cross_pvadded_max": 0.0012, "dang_runs": 0.0903, "deep_completions": 0.2693, "def_h": 32.069, "dribbles_box": 0.0078, "dribbles_last_third": 0.0458, "duration_s": 29.3113, "hold_max": 10.1125, "hold_mean": 6.0172, "hold_min": 3.7194, "line_breaks": 0.5064, "max_x": 67.8112, "n_centros": 0.123, "n_events": 5.6835, "n_involved": 1.8047, "n_passes": 2.8942, "opt_quality_mean": -0.0384, "paredes": 0.2294, "pass_options_mean": 8.1679, "passes_behind_line": 0.1244, "pct_adentro": 0.5136, "pct_afuera": 0.3996, "pct_cortos": 0.3877, "pct_headpass": 0.0567, "pct_largos": 0.2072, "pct_launch": 0.0875, "pct_layoff": 0.0119, "pct_medios": 0.3194, "pct_switch": 0.0051, "pct_through": 0.0029, "pct_verticales": 0.5006, "pelotazos_espalda": 0.0947, "press_final": 2.5313, "press_media": 1.7819, "prog_x": 24.8987, "start_x": 43.9997, "starts_from_dispossess": 0.043, "takeons_ok": 0.0454, "tempo": 0.373, "transition_speed": 3.4729, "verticalidad_media": 0.3632}, "Varaždin": {"atk_l": 43.0126, "atk_w": 33.3729, "ball_distance": 105.5683, "behind_line_ok": 0.0441, "broke_last_line": 0.0288, "broke_second_last": 0.1386, "cross_pvadded_max": 0.0007, "dang_runs": 0.0884, "deep_completions": 0.2567, "def_h": 33.457, "dribbles_box": 0.0106, "dribbles_last_third": 0.0543, "duration_s": 18.2513, "hold_max": 10.2746, "hold_mean": 5.8568, "hold_min": 3.4473, "line_breaks": 0.5446, "max_x": 65.4646, "n_centros": 0.1083, "n_events": 4.6592, "n_involved": 1.8283, "n_passes": 2.8105, "opt_quality_mean": -0.0872, "paredes": 0.2126, "pass_options_mean": 8.4033, "passes_behind_line": 0.1173, "pct_adentro": 0.5007, "pct_afuera": 0.4172, "pct_cortos": 0.3698, "pct_headpass": 0.0424, "pct_largos": 0.2261, "pct_launch": 0.0966, "pct_layoff": 0.0116, "pct_medios": 0.3229, "pct_switch": 0.0116, "pct_through": 0.0042, "pct_verticales": 0.5131, "pelotazos_espalda": 0.0892, "press_final": 2.5694, "press_media": 1.7463, "prog_x": 25.2534, "start_x": 41.2243, "starts_from_dispossess": 0.0407, "takeons_ok": 0.0508, "tempo": 0.3802, "transition_speed": 3.7637, "verticalidad_media": 0.3819}, "Vukovar": {"atk_l": 40.0575, "atk_w": 32.78, "ball_distance": 88.7234, "behind_line_ok": 0.0412, "broke_last_line": 0.0266, "broke_second_last": 0.1237, "cross_pvadded_max": 0.0008, "dang_runs": 0.1016, "deep_completions": 0.246, "def_h": 32.6039, "dribbles_box": 0.01, "dribbles_last_third": 0.0446, "duration_s": 18.4906, "hold_max": 10.5258, "hold_mean": 6.5581, "hold_min": 4.227, "line_breaks": 0.4033, "max_x": 66.9836, "n_centros": 0.1162, "n_events": 4.3802, "n_involved": 1.7039, "n_passes": 2.4768, "opt_quality_mean": -0.0336, "paredes": 0.1808, "pass_options_mean": 8.1944, "passes_behind_line": 0.115, "pct_adentro": 0.5042, "pct_afuera": 0.4061, "pct_cortos": 0.3465, "pct_headpass": 0.0505, "pct_largos": 0.2266, "pct_launch": 0.0973, "pct_layoff": 0.0094, "pct_medios": 0.3381, "pct_switch": 0.0042, "pct_through": 0.0047, "pct_verticales": 0.5366, "pelotazos_espalda": 0.0888, "press_final": 2.5255, "press_media": 1.7247, "prog_x": 25.5928, "start_x": 42.1749, "starts_from_dispossess": 0.0384, "takeons_ok": 0.0514, "tempo": 0.3633, "transition_speed": 3.9231, "verticalidad_media": 0.42}}, "team_eje_norm_gen": {"Dinamo Zagreb": {"eje_verticalidad": -0.1472, "eje_elaboracion": 0.1256, "eje_individual": 0.0804, "eje_rotura_lineas": 0.0617, "eje_amplitud_centro": -0.0106, "eje_profundidad_espalda": 0.0676, "eje_robo_alto": 0.0783, "eje_aereo_segunda": -0.0291}, "HNK Gorica": {"eje_verticalidad": -0.0112, "eje_elaboracion": -0.0152, "eje_individual": -0.0127, "eje_rotura_lineas": -0.0039, "eje_amplitud_centro": 0.0209, "eje_profundidad_espalda": 0.0022, "eje_robo_alto": -0.0312, "eje_aereo_segunda": 0.0328}, "Hajduk Split": {"eje_verticalidad": -0.0965, "eje_elaboracion": 0.1031, "eje_individual": 0.034, "eje_rotura_lineas": 0.0578, "eje_amplitud_centro": -0.0084, "eje_profundidad_espalda": 0.0008, "eje_robo_alto": 0.0298, "eje_aereo_segunda": -0.0066}, "Istra 1961": {"eje_verticalidad": -0.0232, "eje_elaboracion": 0.0032, "eje_individual": -0.0203, "eje_rotura_lineas": 0.0034, "eje_amplitud_centro": -0.0103, "eje_profundidad_espalda": 0.0101, "eje_robo_alto": -0.0291, "eje_aereo_segunda": -0.0213}, "Lokomotiva Zagreb": {"eje_verticalidad": -0.027, "eje_elaboracion": -0.0198, "eje_individual": -0.0156, "eje_rotura_lineas": -0.0161, "eje_amplitud_centro": 0.0084, "eje_profundidad_espalda": -0.0317, "eje_robo_alto": -0.0236, "eje_aereo_segunda": -0.0203}, "Osijek": {"eje_verticalidad": -0.0333, "eje_elaboracion": -0.0011, "eje_individual": 0.0036, "eje_rotura_lineas": -0.0118, "eje_amplitud_centro": -0.0134, "eje_profundidad_espalda": -0.022, "eje_robo_alto": 0.0163, "eje_aereo_segunda": 0.0024}, "Rijeka": {"eje_verticalidad": -0.0433, "eje_elaboracion": -0.0007, "eje_individual": 0.0087, "eje_rotura_lineas": 0.0003, "eje_amplitud_centro": 0.03, "eje_profundidad_espalda": 0.0461, "eje_robo_alto": 0.0295, "eje_aereo_segunda": -0.0097}, "Slaven Koprivnica": {"eje_verticalidad": 0.0042, "eje_elaboracion": -0.0282, "eje_individual": -0.0371, "eje_rotura_lineas": -0.0243, "eje_amplitud_centro": -0.0156, "eje_profundidad_espalda": -0.0133, "eje_robo_alto": -0.0061, "eje_aereo_segunda": 0.0293}, "Varaždin": {"eje_verticalidad": 0.0481, "eje_elaboracion": -0.0606, "eje_individual": -0.0173, "eje_rotura_lineas": -0.0143, "eje_amplitud_centro": 0.0243, "eje_profundidad_espalda": -0.0231, "eje_robo_alto": -0.0646, "eje_aereo_segunda": 0.0111}, "Vukovar": {"eje_verticalidad": 0.0886, "eje_elaboracion": -0.112, "eje_individual": -0.0235, "eje_rotura_lineas": -0.0403, "eje_amplitud_centro": -0.0216, "eje_profundidad_espalda": -0.0321, "eje_robo_alto": -0.0524, "eje_aereo_segunda": 0.0162}}, "team_eje_norm_con": {"Dinamo Zagreb": {"eje_verticalidad": 0.0037, "eje_elaboracion": -0.0121, "eje_individual": -0.0362, "eje_rotura_lineas": 0.0049, "eje_amplitud_centro": -0.007, "eje_profundidad_espalda": -0.0269, "eje_robo_alto": -0.0699, "eje_aereo_segunda": -0.0126}, "HNK Gorica": {"eje_verticalidad": -0.0591, "eje_elaboracion": 0.0472, "eje_individual": 0.036, "eje_rotura_lineas": 0.0046, "eje_amplitud_centro": 0.0028, "eje_profundidad_espalda": 0.0256, "eje_robo_alto": 0.0325, "eje_aereo_segunda": -0.0021}, "Hajduk Split": {"eje_verticalidad": 0.0183, "eje_elaboracion": -0.0784, "eje_individual": 0.0078, "eje_rotura_lineas": -0.009, "eje_amplitud_centro": 0.0126, "eje_profundidad_espalda": -0.0049, "eje_robo_alto": -0.0328, "eje_aereo_segunda": -0.0016}, "Istra 1961": {"eje_verticalidad": -0.0394, "eje_elaboracion": 0.0096, "eje_individual": 0.0244, "eje_rotura_lineas": 0.0105, "eje_amplitud_centro": 0.0253, "eje_profundidad_espalda": 0.0081, "eje_robo_alto": 0.0092, "eje_aereo_segunda": 0.002}, "Lokomotiva Zagreb": {"eje_verticalidad": -0.0192, "eje_elaboracion": -0.0129, "eje_individual": -0.0318, "eje_rotura_lineas": 0.0182, "eje_amplitud_centro": -0.0193, "eje_profundidad_espalda": 0.0131, "eje_robo_alto": -0.0006, "eje_aereo_segunda": 0.006}, "Osijek": {"eje_verticalidad": -0.0388, "eje_elaboracion": -0.0029, "eje_individual": -0.0001, "eje_rotura_lineas": -0.0125, "eje_amplitud_centro": 0.0031, "eje_profundidad_espalda": -0.0137, "eje_robo_alto": 0.0106, "eje_aereo_segunda": -0.0026}, "Rijeka": {"eje_verticalidad": 0.018, "eje_elaboracion": -0.0317, "eje_individual": -0.0406, "eje_rotura_lineas": -0.012, "eje_amplitud_centro": 0.0101, "eje_profundidad_espalda": -0.0113, "eje_robo_alto": -0.0511, "eje_aereo_segunda": 0.0074}, "Slaven Koprivnica": {"eje_verticalidad": -0.0112, "eje_elaboracion": -0.0102, "eje_individual": 0.0184, "eje_rotura_lineas": -0.0112, "eje_amplitud_centro": -0.0071, "eje_profundidad_espalda": -0.0338, "eje_robo_alto": -0.0074, "eje_aereo_segunda": 0.0127}, "Varaždin": {"eje_verticalidad": -0.075, "eje_elaboracion": 0.042, "eje_individual": 0.0015, "eje_rotura_lineas": -0.0278, "eje_amplitud_centro": -0.011, "eje_profundidad_espalda": -0.0032, "eje_robo_alto": 0.0403, "eje_aereo_segunda": -0.0138}, "Vukovar": {"eje_verticalidad": -0.0383, "eje_elaboracion": 0.0437, "eje_individual": 0.0208, "eje_rotura_lineas": 0.0469, "eje_amplitud_centro": -0.0056, "eje_profundidad_espalda": 0.0516, "eje_robo_alto": 0.0161, "eje_aereo_segunda": 0.0091}}} \ No newline at end of file diff --git a/vendor/data/ejes/croatia-prva-hnl/25-26/team_profiles.parquet b/vendor/data/ejes/croatia-prva-hnl/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..00bcefde902e5fb02d36e421a81a33890fb33404 --- /dev/null +++ b/vendor/data/ejes/croatia-prva-hnl/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d80d76bdd4cb6bcc9ba5f06cec6e394c33f2ed2c513e12b46d57935c94737b8b +size 7914 diff --git a/vendor/data/ejes/danish-superligaen/25-26/ejes_definition.json b/vendor/data/ejes/danish-superligaen/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/danish-superligaen/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/danish-superligaen/25-26/match_team_ejes.parquet b/vendor/data/ejes/danish-superligaen/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..b463f14efb77fe655cf9d68b433672b7fbea69e2 --- /dev/null +++ b/vendor/data/ejes/danish-superligaen/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23503a6d93ead56416b9f370e15abf3ca62fbdee68ae8e0875793b1c31f7bf9e +size 49988 diff --git a/vendor/data/ejes/danish-superligaen/25-26/match_team_vars.parquet b/vendor/data/ejes/danish-superligaen/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..2e55e1f8662d7a15c95d898a7fd4f9a60fff8677 --- /dev/null +++ b/vendor/data/ejes/danish-superligaen/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f01128217028e789feecd77943816aa4ebfb613ebe243089bb68c3e594bd6774 +size 187387 diff --git a/vendor/data/ejes/danish-superligaen/25-26/predictor.json b/vendor/data/ejes/danish-superligaen/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..2057f25805fcfc8b1b31c1f35a0c1fe0fa4c6993 --- /dev/null +++ b/vendor/data/ejes/danish-superligaen/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.8859, "con": 0.8386, "intercept": 0.0197}, "elaboracion": {"gen": 0.9849, "con": 0.9404, "intercept": -0.0056}, "individual": {"gen": 0.7376, "con": -0.4994, "intercept": 0.0004}, "rotura_lineas": {"gen": 0.9048, "con": 0.7033, "intercept": -0.002}, "amplitud_centro": {"gen": 0.6802, "con": 0.7225, "intercept": 0.0002}, "profundidad_espalda": {"gen": 0.6216, "con": 0.623, "intercept": -0.0005}, "robo_alto": {"gen": 0.8193, "con": 0.7607, "intercept": 0.0033}, "aereo_segunda": {"gen": 0.9081, "con": 0.8347, "intercept": 0.0013}} \ No newline at end of file diff --git a/vendor/data/ejes/danish-superligaen/25-26/scales.json b/vendor/data/ejes/danish-superligaen/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..728278d86c866352082859b1758f5e28d3edd779 --- /dev/null +++ b/vendor/data/ejes/danish-superligaen/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 1.9472, "atk_w": 1.4495, "ball_distance": 69.1811, "behind_line_ok": 0.0294, "broke_last_line": 0.0188, "broke_second_last": 0.0479, "cross_pvadded_max": 0.0015, "dang_runs": 0.1142, "deep_completions": 0.1558, "def_h": 3.403, "dribbles_box": 0.0104, "dribbles_last_third": 0.0256, "duration_s": 20.2317, "hold_max": 1.6684, "hold_mean": 0.9373, "hold_min": 0.9147, "line_breaks": 0.3812, "max_x": 4.3575, "n_centros": 0.0475, "n_events": 1.8131, "n_involved": 0.206, "n_passes": 0.7977, "opt_quality_mean": 0.1606, "paredes": 0.155, "pass_options_mean": 1.4721, "passes_behind_line": 0.0414, "pct_adentro": 0.0352, "pct_afuera": 0.0327, "pct_cortos": 0.0493, "pct_headpass": 0.0152, "pct_largos": 0.0426, "pct_launch": 0.0321, "pct_layoff": 0.005, "pct_medios": 0.0417, "pct_switch": 0.0048, "pct_through": 0.0038, "pct_verticales": 0.0539, "pelotazos_espalda": 0.0333, "press_final": 0.3673, "press_media": 0.2301, "prog_x": 2.3103, "start_x": 4.7721, "starts_from_dispossess": 0.0185, "takeons_ok": 0.0222, "tempo": 0.0363, "transition_speed": 0.7368, "verticalidad_media": 0.0663}, "eje_sigma": {"eje_verticalidad": 0.1169, "eje_elaboracion": 0.1146, "eje_individual": 0.0688, "eje_rotura_lineas": 0.0705, "eje_amplitud_centro": 0.0556, "eje_profundidad_espalda": 0.0935, "eje_robo_alto": 0.0999, "eje_aereo_segunda": 0.0694}, "eje_match_mean": {"eje_verticalidad": -0.0272, "eje_elaboracion": 0.0061, "eje_individual": 0.0005, "eje_rotura_lineas": 0.0032, "eje_amplitud_centro": -0.0004, "eje_profundidad_espalda": 0.0021, "eje_robo_alto": -0.0057, "eje_aereo_segunda": -0.0018}, "eje_match_std": {"eje_verticalidad": 0.1287, "eje_elaboracion": 0.1353, "eje_individual": 0.0732, "eje_rotura_lineas": 0.0782, "eje_amplitud_centro": 0.0584, "eje_profundidad_espalda": 0.0972, "eje_robo_alto": 0.109, "eje_aereo_segunda": 0.0752}, "team_var_norm": {"AGF": {"atk_l": 42.5144, "atk_w": 31.2024, "ball_distance": 141.9184, "behind_line_ok": 0.0602, "broke_last_line": 0.0364, "broke_second_last": 0.1627, "cross_pvadded_max": 0.001, "dang_runs": 0.1863, "deep_completions": 0.4318, "def_h": 30.9677, "dribbles_box": 0.015, "dribbles_last_third": 0.0568, "duration_s": 24.4235, "hold_max": 10.327, "hold_mean": 6.0843, "hold_min": 3.7279, "line_breaks": 0.7769, "max_x": 68.9264, "n_centros": 0.1391, "n_events": 5.597, "n_involved": 1.9419, "n_passes": 3.4854, "opt_quality_mean": 0.1214, "paredes": 0.3594, "pass_options_mean": 8.9105, "passes_behind_line": 0.1283, "pct_adentro": 0.5084, "pct_afuera": 0.3994, "pct_cortos": 0.4036, "pct_headpass": 0.0384, "pct_largos": 0.1673, "pct_launch": 0.082, "pct_layoff": 0.0107, "pct_medios": 0.338, "pct_switch": 0.0065, "pct_through": 0.001, "pct_verticales": 0.446, "pelotazos_espalda": 0.0859, "press_final": 2.7542, "press_media": 2.009, "prog_x": 23.5618, "start_x": 46.4759, "starts_from_dispossess": 0.0506, "takeons_ok": 0.0514, "tempo": 0.3799, "transition_speed": 3.0989, "verticalidad_media": 0.3067}, "Brøndby": {"atk_l": 42.3053, "atk_w": 31.4661, "ball_distance": 133.6061, "behind_line_ok": 0.0599, "broke_last_line": 0.0402, "broke_second_last": 0.1683, "cross_pvadded_max": 0.0014, "dang_runs": 0.1426, "deep_completions": 0.482, "def_h": 31.6842, "dribbles_box": 0.0139, "dribbles_last_third": 0.0614, "duration_s": 25.5811, "hold_max": 9.5022, "hold_mean": 5.3298, "hold_min": 3.0468, "line_breaks": 0.7223, "max_x": 69.2806, "n_centros": 0.131, "n_events": 5.8428, "n_involved": 1.9775, "n_passes": 3.6061, "opt_quality_mean": 0.0969, "paredes": 0.3649, "pass_options_mean": 8.7265, "passes_behind_line": 0.1368, "pct_adentro": 0.5017, "pct_afuera": 0.4157, "pct_cortos": 0.4055, "pct_headpass": 0.0414, "pct_largos": 0.1822, "pct_launch": 0.0643, "pct_layoff": 0.0089, "pct_medios": 0.3311, "pct_switch": 0.0059, "pct_through": 0.0024, "pct_verticales": 0.4622, "pelotazos_espalda": 0.096, "press_final": 2.7537, "press_media": 2.0092, "prog_x": 25.2737, "start_x": 45.0924, "starts_from_dispossess": 0.0447, "takeons_ok": 0.0495, "tempo": 0.3961, "transition_speed": 3.4211, "verticalidad_media": 0.307}, "Fredericia": {"atk_l": 40.2901, "atk_w": 32.0779, "ball_distance": 137.7989, "behind_line_ok": 0.0595, "broke_last_line": 0.0273, "broke_second_last": 0.1662, "cross_pvadded_max": 0.0007, "dang_runs": 0.162, "deep_completions": 0.3591, "def_h": 33.1831, "dribbles_box": 0.011, "dribbles_last_third": 0.0552, "duration_s": 28.6841, "hold_max": 9.5893, "hold_mean": 5.6979, "hold_min": 3.4331, "line_breaks": 0.7455, "max_x": 67.2713, "n_centros": 0.1053, "n_events": 5.7341, "n_involved": 1.8874, "n_passes": 3.2438, "opt_quality_mean": 0.0408, "paredes": 0.3113, "pass_options_mean": 8.8799, "passes_behind_line": 0.1375, "pct_adentro": 0.4971, "pct_afuera": 0.4087, "pct_cortos": 0.3885, "pct_headpass": 0.0377, "pct_largos": 0.2033, "pct_launch": 0.0776, "pct_layoff": 0.0083, "pct_medios": 0.3148, "pct_switch": 0.0049, "pct_through": 0.0009, "pct_verticales": 0.4633, "pelotazos_espalda": 0.1013, "press_final": 2.9641, "press_media": 2.0616, "prog_x": 25.3134, "start_x": 43.219, "starts_from_dispossess": 0.0505, "takeons_ok": 0.0562, "tempo": 0.3796, "transition_speed": 3.5581, "verticalidad_media": 0.326}, "København": {"atk_l": 40.9363, "atk_w": 31.1466, "ball_distance": 177.7517, "behind_line_ok": 0.0653, "broke_last_line": 0.0439, "broke_second_last": 0.1896, "cross_pvadded_max": 0.0019, "dang_runs": 0.1998, "deep_completions": 0.4565, "def_h": 29.664, "dribbles_box": 0.0111, "dribbles_last_third": 0.0569, "duration_s": 32.3262, "hold_max": 9.3877, "hold_mean": 5.287, "hold_min": 3.0318, "line_breaks": 0.8802, "max_x": 71.0977, "n_centros": 0.1195, "n_events": 6.4797, "n_involved": 2.0812, "n_passes": 3.7919, "opt_quality_mean": 0.1589, "paredes": 0.3854, "pass_options_mean": 9.059, "passes_behind_line": 0.1292, "pct_adentro": 0.5123, "pct_afuera": 0.3968, "pct_cortos": 0.394, "pct_headpass": 0.0439, "pct_largos": 0.1764, "pct_launch": 0.0688, "pct_layoff": 0.0112, "pct_medios": 0.3399, "pct_switch": 0.0055, "pct_through": 0.0053, "pct_verticales": 0.4386, "pelotazos_espalda": 0.0797, "press_final": 2.8789, "press_media": 2.086, "prog_x": 23.787, "start_x": 48.7617, "starts_from_dispossess": 0.0481, "takeons_ok": 0.0431, "tempo": 0.397, "transition_speed": 3.1814, "verticalidad_media": 0.2795}, "Midtjylland": {"atk_l": 41.6235, "atk_w": 31.9455, "ball_distance": 142.0143, "behind_line_ok": 0.0499, "broke_last_line": 0.0236, "broke_second_last": 0.1424, "cross_pvadded_max": 0.0012, "dang_runs": 0.1377, "deep_completions": 0.314, "def_h": 30.8129, "dribbles_box": 0.0159, "dribbles_last_third": 0.0726, "duration_s": 26.07, "hold_max": 10.2594, "hold_mean": 6.3888, "hold_min": 4.1698, "line_breaks": 0.645, "max_x": 68.9797, "n_centros": 0.1136, "n_events": 5.4866, "n_involved": 1.8442, "n_passes": 3.0544, "opt_quality_mean": 0.1152, "paredes": 0.2683, "pass_options_mean": 8.8783, "passes_behind_line": 0.128, "pct_adentro": 0.499, "pct_afuera": 0.4051, "pct_cortos": 0.3479, "pct_headpass": 0.0523, "pct_largos": 0.2273, "pct_launch": 0.0779, "pct_layoff": 0.008, "pct_medios": 0.3299, "pct_switch": 0.0103, "pct_through": 0.0029, "pct_verticales": 0.4627, "pelotazos_espalda": 0.0942, "press_final": 2.7787, "press_media": 1.9729, "prog_x": 24.1737, "start_x": 45.836, "starts_from_dispossess": 0.0501, "takeons_ok": 0.0616, "tempo": 0.3452, "transition_speed": 3.292, "verticalidad_media": 0.3402}, "Nordsjælland": {"atk_l": 43.2022, "atk_w": 31.9348, "ball_distance": 228.3753, "behind_line_ok": 0.0686, "broke_last_line": 0.0324, "broke_second_last": 0.186, "cross_pvadded_max": 0.001, "dang_runs": 0.2233, "deep_completions": 0.4374, "def_h": 32.8249, "dribbles_box": 0.0176, "dribbles_last_third": 0.0783, "duration_s": 32.6769, "hold_max": 9.36, "hold_mean": 5.0721, "hold_min": 2.8598, "line_breaks": 1.2298, "max_x": 67.9459, "n_centros": 0.0895, "n_events": 6.9405, "n_involved": 2.1387, "n_passes": 4.5148, "opt_quality_mean": 0.057, "paredes": 0.523, "pass_options_mean": 9.1186, "passes_behind_line": 0.1469, "pct_adentro": 0.4933, "pct_afuera": 0.4214, "pct_cortos": 0.4482, "pct_headpass": 0.0291, "pct_largos": 0.1566, "pct_launch": 0.0578, "pct_layoff": 0.0095, "pct_medios": 0.3107, "pct_switch": 0.0039, "pct_through": 0.0031, "pct_verticales": 0.4392, "pelotazos_espalda": 0.1025, "press_final": 2.8786, "press_media": 1.9851, "prog_x": 25.2285, "start_x": 44.0996, "starts_from_dispossess": 0.0551, "takeons_ok": 0.0523, "tempo": 0.3931, "transition_speed": 2.9833, "verticalidad_media": 0.2834}, "OB": {"atk_l": 41.26, "atk_w": 32.1996, "ball_distance": 153.5897, "behind_line_ok": 0.0505, "broke_last_line": 0.0334, "broke_second_last": 0.1633, "cross_pvadded_max": 0.0015, "dang_runs": 0.1458, "deep_completions": 0.4064, "def_h": 31.8702, "dribbles_box": 0.0101, "dribbles_last_third": 0.0486, "duration_s": 29.7158, "hold_max": 9.5288, "hold_mean": 5.118, "hold_min": 2.7827, "line_breaks": 0.7986, "max_x": 68.1241, "n_centros": 0.124, "n_events": 6.391, "n_involved": 2.0817, "n_passes": 3.7596, "opt_quality_mean": 0.0791, "paredes": 0.4062, "pass_options_mean": 8.939, "passes_behind_line": 0.1148, "pct_adentro": 0.5256, "pct_afuera": 0.3968, "pct_cortos": 0.4442, "pct_headpass": 0.0476, "pct_largos": 0.1658, "pct_launch": 0.0825, "pct_layoff": 0.0097, "pct_medios": 0.314, "pct_switch": 0.0052, "pct_through": 0.0033, "pct_verticales": 0.4625, "pelotazos_espalda": 0.0779, "press_final": 2.7507, "press_media": 2.0132, "prog_x": 23.8947, "start_x": 45.307, "starts_from_dispossess": 0.045, "takeons_ok": 0.0445, "tempo": 0.4341, "transition_speed": 3.5817, "verticalidad_media": 0.3018}, "Randers": {"atk_l": 42.882, "atk_w": 31.7275, "ball_distance": 157.4527, "behind_line_ok": 0.0582, "broke_last_line": 0.0309, "broke_second_last": 0.1813, "cross_pvadded_max": 0.0014, "dang_runs": 0.1732, "deep_completions": 0.3905, "def_h": 31.5147, "dribbles_box": 0.0138, "dribbles_last_third": 0.0604, "duration_s": 26.4978, "hold_max": 9.0873, "hold_mean": 5.1262, "hold_min": 2.9773, "line_breaks": 0.8733, "max_x": 68.213, "n_centros": 0.1272, "n_events": 5.7789, "n_involved": 2.0362, "n_passes": 3.4514, "opt_quality_mean": 0.0614, "paredes": 0.3521, "pass_options_mean": 9.0911, "passes_behind_line": 0.1327, "pct_adentro": 0.5107, "pct_afuera": 0.4097, "pct_cortos": 0.391, "pct_headpass": 0.0469, "pct_largos": 0.1885, "pct_launch": 0.0824, "pct_layoff": 0.0112, "pct_medios": 0.3418, "pct_switch": 0.0054, "pct_through": 0.0026, "pct_verticales": 0.4658, "pelotazos_espalda": 0.0909, "press_final": 2.8328, "press_media": 2.0573, "prog_x": 24.4419, "start_x": 44.8783, "starts_from_dispossess": 0.0509, "takeons_ok": 0.0543, "tempo": 0.4053, "transition_speed": 3.5368, "verticalidad_media": 0.3197}, "Silkeborg": {"atk_l": 46.4199, "atk_w": 32.6698, "ball_distance": 212.9742, "behind_line_ok": 0.0715, "broke_last_line": 0.041, "broke_second_last": 0.1914, "cross_pvadded_max": 0.0006, "dang_runs": 0.4374, "deep_completions": 0.3934, "def_h": 35.7113, "dribbles_box": 0.0094, "dribbles_last_third": 0.0462, "duration_s": 30.6748, "hold_max": 10.1295, "hold_mean": 4.906, "hold_min": 2.5957, "line_breaks": 1.1776, "max_x": 64.0235, "n_centros": 0.0853, "n_events": 6.6893, "n_involved": 2.2248, "n_passes": 4.3768, "opt_quality_mean": -0.0185, "paredes": 0.4596, "pass_options_mean": 8.8738, "passes_behind_line": 0.1438, "pct_adentro": 0.5028, "pct_afuera": 0.428, "pct_cortos": 0.4384, "pct_headpass": 0.0299, "pct_largos": 0.1663, "pct_launch": 0.0609, "pct_layoff": 0.014, "pct_medios": 0.3272, "pct_switch": 0.0041, "pct_through": 0.0017, "pct_verticales": 0.4651, "pelotazos_espalda": 0.0885, "press_final": 2.702, "press_media": 1.9832, "prog_x": 25.4984, "start_x": 39.5511, "starts_from_dispossess": 0.0446, "takeons_ok": 0.0513, "tempo": 0.4299, "transition_speed": 3.4489, "verticalidad_media": 0.3046}, "Sønderjyske": {"atk_l": 41.8197, "atk_w": 32.2228, "ball_distance": 117.0978, "behind_line_ok": 0.0602, "broke_last_line": 0.038, "broke_second_last": 0.1503, "cross_pvadded_max": 0.0011, "dang_runs": 0.1718, "deep_completions": 0.3295, "def_h": 33.0041, "dribbles_box": 0.0095, "dribbles_last_third": 0.0491, "duration_s": 28.2405, "hold_max": 9.9231, "hold_mean": 5.7127, "hold_min": 3.3549, "line_breaks": 0.6003, "max_x": 66.9667, "n_centros": 0.1111, "n_events": 5.6622, "n_involved": 1.9164, "n_passes": 3.0441, "opt_quality_mean": 0.0197, "paredes": 0.2691, "pass_options_mean": 8.8065, "passes_behind_line": 0.1371, "pct_adentro": 0.5049, "pct_afuera": 0.4089, "pct_cortos": 0.3969, "pct_headpass": 0.0497, "pct_largos": 0.2018, "pct_launch": 0.0924, "pct_layoff": 0.009, "pct_medios": 0.3157, "pct_switch": 0.0068, "pct_through": 0.0023, "pct_verticales": 0.5062, "pelotazos_espalda": 0.0972, "press_final": 2.8193, "press_media": 2.0437, "prog_x": 25.9766, "start_x": 42.3066, "starts_from_dispossess": 0.0425, "takeons_ok": 0.0398, "tempo": 0.4245, "transition_speed": 4.3578, "verticalidad_media": 0.3719}, "Vejle": {"atk_l": 40.2767, "atk_w": 31.7558, "ball_distance": 117.3694, "behind_line_ok": 0.049, "broke_last_line": 0.0235, "broke_second_last": 0.1437, "cross_pvadded_max": 0.0011, "dang_runs": 0.1362, "deep_completions": 0.3036, "def_h": 31.4088, "dribbles_box": 0.0094, "dribbles_last_third": 0.0452, "duration_s": 25.9629, "hold_max": 9.8458, "hold_mean": 6.0, "hold_min": 3.8013, "line_breaks": 0.5064, "max_x": 67.9641, "n_centros": 0.1159, "n_events": 5.3979, "n_involved": 1.8193, "n_passes": 2.922, "opt_quality_mean": 0.0625, "paredes": 0.2388, "pass_options_mean": 8.8526, "passes_behind_line": 0.1172, "pct_adentro": 0.5033, "pct_afuera": 0.4125, "pct_cortos": 0.3546, "pct_headpass": 0.0498, "pct_largos": 0.2323, "pct_launch": 0.113, "pct_layoff": 0.0082, "pct_medios": 0.3297, "pct_switch": 0.0058, "pct_through": 0.0019, "pct_verticales": 0.4986, "pelotazos_espalda": 0.0828, "press_final": 2.7766, "press_media": 2.011, "prog_x": 24.718, "start_x": 44.4198, "starts_from_dispossess": 0.0428, "takeons_ok": 0.0447, "tempo": 0.3721, "transition_speed": 3.7348, "verticalidad_media": 0.3686}, "Viborg": {"atk_l": 40.1554, "atk_w": 32.4084, "ball_distance": 136.2064, "behind_line_ok": 0.0561, "broke_last_line": 0.0332, "broke_second_last": 0.1665, "cross_pvadded_max": 0.001, "dang_runs": 0.1517, "deep_completions": 0.3657, "def_h": 31.5382, "dribbles_box": 0.0169, "dribbles_last_third": 0.0696, "duration_s": 35.8475, "hold_max": 10.6146, "hold_mean": 5.8648, "hold_min": 3.579, "line_breaks": 0.7125, "max_x": 68.4933, "n_centros": 0.1153, "n_events": 6.4956, "n_involved": 1.9088, "n_passes": 3.3239, "opt_quality_mean": 0.0667, "paredes": 0.3286, "pass_options_mean": 8.8225, "passes_behind_line": 0.1252, "pct_adentro": 0.5133, "pct_afuera": 0.3913, "pct_cortos": 0.3657, "pct_headpass": 0.0414, "pct_largos": 0.1903, "pct_launch": 0.0887, "pct_layoff": 0.009, "pct_medios": 0.3498, "pct_switch": 0.0042, "pct_through": 0.0031, "pct_verticales": 0.4719, "pelotazos_espalda": 0.0831, "press_final": 2.892, "press_media": 2.0656, "prog_x": 24.5172, "start_x": 45.1594, "starts_from_dispossess": 0.0489, "takeons_ok": 0.0592, "tempo": 0.3591, "transition_speed": 3.3604, "verticalidad_media": 0.3343}}, "team_eje_norm_gen": {"AGF": {"eje_verticalidad": -0.0789, "eje_elaboracion": 0.0035, "eje_individual": 0.0037, "eje_rotura_lineas": -0.0083, "eje_amplitud_centro": 0.0212, "eje_profundidad_espalda": 0.009, "eje_robo_alto": 0.0353, "eje_aereo_segunda": -0.0007}, "Brøndby": {"eje_verticalidad": -0.0418, "eje_elaboracion": 0.0147, "eje_individual": -0.0059, "eje_rotura_lineas": 0.0045, "eje_amplitud_centro": 0.0251, "eje_profundidad_espalda": 0.0374, "eje_robo_alto": -0.004, "eje_aereo_segunda": -0.0299}, "Fredericia": {"eje_verticalidad": -0.0139, "eje_elaboracion": -0.0321, "eje_individual": -0.0066, "eje_rotura_lineas": -0.0222, "eje_amplitud_centro": -0.0146, "eje_profundidad_espalda": 0.008, "eje_robo_alto": -0.0251, "eje_aereo_segunda": -0.0227}, "København": {"eje_verticalidad": -0.0884, "eje_elaboracion": 0.0294, "eje_individual": -0.0099, "eje_rotura_lineas": 0.0548, "eje_amplitud_centro": -0.0072, "eje_profundidad_espalda": 0.0162, "eje_robo_alto": 0.0718, "eje_aereo_segunda": -0.0039}, "Midtjylland": {"eje_verticalidad": 0.0027, "eje_elaboracion": -0.0854, "eje_individual": 0.0212, "eje_rotura_lineas": -0.0372, "eje_amplitud_centro": 0.0245, "eje_profundidad_espalda": -0.0266, "eje_robo_alto": 0.0224, "eje_aereo_segunda": 0.0065}, "Nordsjælland": {"eje_verticalidad": -0.1077, "eje_elaboracion": 0.1501, "eje_individual": 0.04, "eje_rotura_lineas": 0.0506, "eje_amplitud_centro": -0.0243, "eje_profundidad_espalda": 0.0463, "eje_robo_alto": 0.0021, "eje_aereo_segunda": -0.0618}, "OB": {"eje_verticalidad": -0.0485, "eje_elaboracion": 0.0651, "eje_individual": -0.0312, "eje_rotura_lineas": 0.0045, "eje_amplitud_centro": -0.005, "eje_profundidad_espalda": -0.0238, "eje_robo_alto": 0.0008, "eje_aereo_segunda": 0.0136}, "Randers": {"eje_verticalidad": -0.0218, "eje_elaboracion": -0.0076, "eje_individual": 0.005, "eje_rotura_lineas": 0.0134, "eje_amplitud_centro": 0.012, "eje_profundidad_espalda": 0.0031, "eje_robo_alto": 0.0066, "eje_aereo_segunda": 0.0213}, "Silkeborg": {"eje_verticalidad": -0.0482, "eje_elaboracion": 0.1152, "eje_individual": 0.0387, "eje_rotura_lineas": 0.0528, "eje_amplitud_centro": -0.0212, "eje_profundidad_espalda": 0.0227, "eje_robo_alto": -0.1067, "eje_aereo_segunda": -0.0275}, "Sønderjyske": {"eje_verticalidad": 0.0739, "eje_elaboracion": -0.0513, "eje_individual": -0.0311, "eje_rotura_lineas": -0.0197, "eje_amplitud_centro": 0.0033, "eje_profundidad_espalda": -0.0034, "eje_robo_alto": -0.0607, "eje_aereo_segunda": 0.0281}, "Vejle": {"eje_verticalidad": 0.0693, "eje_elaboracion": -0.0977, "eje_individual": -0.0381, "eje_rotura_lineas": -0.054, "eje_amplitud_centro": 0.0057, "eje_profundidad_espalda": -0.0478, "eje_robo_alto": -0.0209, "eje_aereo_segunda": 0.052}, "Viborg": {"eje_verticalidad": -0.0208, "eje_elaboracion": -0.0322, "eje_individual": 0.021, "eje_rotura_lineas": -0.002, "eje_amplitud_centro": -0.0253, "eje_profundidad_espalda": -0.0179, "eje_robo_alto": 0.0072, "eje_aereo_segunda": 0.0047}}, "team_eje_norm_con": {"AGF": {"eje_verticalidad": 0.0409, "eje_elaboracion": -0.0364, "eje_individual": -0.0057, "eje_rotura_lineas": -0.0133, "eje_amplitud_centro": -0.0093, "eje_profundidad_espalda": 0.0109, "eje_robo_alto": -0.0446, "eje_aereo_segunda": 0.0178}, "Brøndby": {"eje_verticalidad": -0.0093, "eje_elaboracion": -0.0063, "eje_individual": 0.0078, "eje_rotura_lineas": -0.0112, "eje_amplitud_centro": 0.0016, "eje_profundidad_espalda": -0.0052, "eje_robo_alto": -0.0455, "eje_aereo_segunda": -0.0203}, "Fredericia": {"eje_verticalidad": -0.0581, "eje_elaboracion": 0.0332, "eje_individual": 0.0015, "eje_rotura_lineas": 0.0134, "eje_amplitud_centro": 0.0346, "eje_profundidad_espalda": 0.0613, "eje_robo_alto": 0.0546, "eje_aereo_segunda": -0.0118}, "København": {"eje_verticalidad": 0.0132, "eje_elaboracion": -0.0287, "eje_individual": -0.0076, "eje_rotura_lineas": -0.0107, "eje_amplitud_centro": -0.0122, "eje_profundidad_espalda": -0.0552, "eje_robo_alto": -0.061, "eje_aereo_segunda": 0.0165}, "Midtjylland": {"eje_verticalidad": 0.0534, "eje_elaboracion": -0.0887, "eje_individual": -0.0205, "eje_rotura_lineas": -0.025, "eje_amplitud_centro": -0.0252, "eje_profundidad_espalda": -0.0115, "eje_robo_alto": -0.0247, "eje_aereo_segunda": 0.0239}, "Nordsjælland": {"eje_verticalidad": -0.0376, "eje_elaboracion": 0.0059, "eje_individual": 0.0098, "eje_rotura_lineas": 0.0303, "eje_amplitud_centro": -0.0087, "eje_profundidad_espalda": 0.0198, "eje_robo_alto": -0.0495, "eje_aereo_segunda": -0.0063}, "OB": {"eje_verticalidad": -0.0389, "eje_elaboracion": -0.012, "eje_individual": -0.0007, "eje_rotura_lineas": -0.0029, "eje_amplitud_centro": -0.0056, "eje_profundidad_espalda": -0.0119, "eje_robo_alto": 0.0085, "eje_aereo_segunda": -0.0207}, "Randers": {"eje_verticalidad": -0.0505, "eje_elaboracion": 0.0505, "eje_individual": 0.0129, "eje_rotura_lineas": -0.0011, "eje_amplitud_centro": -0.0316, "eje_profundidad_espalda": -0.0152, "eje_robo_alto": -0.0008, "eje_aereo_segunda": 0.0057}, "Silkeborg": {"eje_verticalidad": -0.1267, "eje_elaboracion": 0.1282, "eje_individual": 0.007, "eje_rotura_lineas": 0.0451, "eje_amplitud_centro": 0.0265, "eje_profundidad_espalda": 0.0002, "eje_robo_alto": 0.0614, "eje_aereo_segunda": -0.0539}, "Sønderjyske": {"eje_verticalidad": -0.0451, "eje_elaboracion": 0.0186, "eje_individual": 0.0109, "eje_rotura_lineas": 0.0251, "eje_amplitud_centro": 0.0173, "eje_profundidad_espalda": 0.0176, "eje_robo_alto": 0.0132, "eje_aereo_segunda": 0.0007}, "Vejle": {"eje_verticalidad": -0.0163, "eje_elaboracion": 0.0065, "eje_individual": 0.0045, "eje_rotura_lineas": -0.0013, "eje_amplitud_centro": -0.0054, "eje_profundidad_espalda": 0.0146, "eje_robo_alto": 0.0026, "eje_aereo_segunda": 0.029}, "Viborg": {"eje_verticalidad": -0.0534, "eje_elaboracion": 0.0035, "eje_individual": -0.0135, "eje_rotura_lineas": -0.0086, "eje_amplitud_centro": 0.0131, "eje_profundidad_espalda": 0.0015, "eje_robo_alto": 0.02, "eje_aereo_segunda": -0.0019}}} \ No newline at end of file diff --git a/vendor/data/ejes/danish-superligaen/25-26/team_profiles.parquet b/vendor/data/ejes/danish-superligaen/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..2d85fbc087fe4eefdfad5a5522019aa69d1f074e --- /dev/null +++ b/vendor/data/ejes/danish-superligaen/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca949acb291d7629a2622eab84ff466f8779ffde57a885584360abd38d92189 +size 8115 diff --git a/vendor/data/ejes/dutch-eerste-divisie/25-26/ejes_definition.json b/vendor/data/ejes/dutch-eerste-divisie/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/dutch-eerste-divisie/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/dutch-eerste-divisie/25-26/match_team_ejes.parquet b/vendor/data/ejes/dutch-eerste-divisie/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..d5372fd1ec938b706727a59fa4d55ea36137fdde --- /dev/null +++ b/vendor/data/ejes/dutch-eerste-divisie/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fed334df19ea3c9f5f128d7e187aae1cbf06b277c33b7917add2b4af8de0d443 +size 88643 diff --git a/vendor/data/ejes/dutch-eerste-divisie/25-26/match_team_vars.parquet b/vendor/data/ejes/dutch-eerste-divisie/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..bdbdb77c85138225cd864152c8828789a6842604 --- /dev/null +++ b/vendor/data/ejes/dutch-eerste-divisie/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9be3f1e837bb1dfbd6d54208be0ddfa86d8410f2cd9ca5ae65d1504497a4b557 +size 327219 diff --git a/vendor/data/ejes/dutch-eerste-divisie/25-26/predictor.json b/vendor/data/ejes/dutch-eerste-divisie/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..1ab5aed037cef6857ebf37a8c61c20c9392d5665 --- /dev/null +++ b/vendor/data/ejes/dutch-eerste-divisie/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.9312, "con": 0.8535, "intercept": 0.0195}, "elaboracion": {"gen": 0.884, "con": 0.9027, "intercept": -0.0007}, "individual": {"gen": 0.8845, "con": 0.6111, "intercept": 0.0002}, "rotura_lineas": {"gen": 0.848, "con": 0.7868, "intercept": -0.0004}, "amplitud_centro": {"gen": 0.8393, "con": 0.6398, "intercept": 0.0002}, "profundidad_espalda": {"gen": 0.8099, "con": 0.466, "intercept": -0.0001}, "robo_alto": {"gen": 0.8243, "con": 0.8339, "intercept": 0.0028}, "aereo_segunda": {"gen": 0.8829, "con": 0.8585, "intercept": -0.0006}} \ No newline at end of file diff --git a/vendor/data/ejes/dutch-eerste-divisie/25-26/scales.json b/vendor/data/ejes/dutch-eerste-divisie/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..bb868ee27c3893bb319d27799496df3cdf66d97f --- /dev/null +++ b/vendor/data/ejes/dutch-eerste-divisie/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 1.7015, "atk_w": 1.3585, "ball_distance": 44.056, "behind_line_ok": 0.0238, "broke_last_line": 0.0182, "broke_second_last": 0.0409, "cross_pvadded_max": 0.0014, "dang_runs": 0.0721, "deep_completions": 0.1084, "def_h": 2.7687, "dribbles_box": 0.0092, "dribbles_last_third": 0.0227, "duration_s": 18.5904, "hold_max": 1.2747, "hold_mean": 0.749, "hold_min": 0.7475, "line_breaks": 0.2254, "max_x": 3.5822, "n_centros": 0.044, "n_events": 1.6705, "n_involved": 0.1501, "n_passes": 0.5081, "opt_quality_mean": 0.1272, "paredes": 0.0985, "pass_options_mean": 1.5841, "passes_behind_line": 0.0382, "pct_adentro": 0.0339, "pct_afuera": 0.0337, "pct_cortos": 0.0452, "pct_headpass": 0.0131, "pct_largos": 0.0435, "pct_launch": 0.0333, "pct_layoff": 0.0056, "pct_medios": 0.0392, "pct_switch": 0.0042, "pct_through": 0.0033, "pct_verticales": 0.0486, "pelotazos_espalda": 0.0326, "press_final": 0.3632, "press_media": 0.237, "prog_x": 2.387, "start_x": 4.206, "starts_from_dispossess": 0.0174, "takeons_ok": 0.0206, "tempo": 0.0375, "transition_speed": 0.7057, "verticalidad_media": 0.0586}, "eje_sigma": {"eje_verticalidad": 0.1024, "eje_elaboracion": 0.0924, "eje_individual": 0.0633, "eje_rotura_lineas": 0.0609, "eje_amplitud_centro": 0.0542, "eje_profundidad_espalda": 0.0821, "eje_robo_alto": 0.0917, "eje_aereo_segunda": 0.0665}, "eje_match_mean": {"eje_verticalidad": -0.0249, "eje_elaboracion": 0.0009, "eje_individual": -0.0004, "eje_rotura_lineas": 0.0006, "eje_amplitud_centro": -0.0003, "eje_profundidad_espalda": 0.0005, "eje_robo_alto": -0.0042, "eje_aereo_segunda": 0.0009}, "eje_match_std": {"eje_verticalidad": 0.1168, "eje_elaboracion": 0.1008, "eje_individual": 0.0694, "eje_rotura_lineas": 0.0655, "eje_amplitud_centro": 0.058, "eje_profundidad_espalda": 0.0875, "eje_robo_alto": 0.0985, "eje_aereo_segunda": 0.0722}, "team_var_norm": {"ADO Den Haag": {"atk_l": 41.6987, "atk_w": 32.9027, "ball_distance": 138.2634, "behind_line_ok": 0.0602, "broke_last_line": 0.036, "broke_second_last": 0.1825, "cross_pvadded_max": 0.0022, "dang_runs": 0.1782, "deep_completions": 0.4, "def_h": 28.7089, "dribbles_box": 0.0077, "dribbles_last_third": 0.0421, "duration_s": 24.5558, "hold_max": 9.1092, "hold_mean": 5.2701, "hold_min": 3.2164, "line_breaks": 0.7772, "max_x": 71.5969, "n_centros": 0.1574, "n_events": 5.6052, "n_involved": 1.9574, "n_passes": 3.3638, "opt_quality_mean": 0.1612, "paredes": 0.3257, "pass_options_mean": 9.098, "passes_behind_line": 0.1319, "pct_adentro": 0.5427, "pct_afuera": 0.3723, "pct_cortos": 0.383, "pct_headpass": 0.0473, "pct_largos": 0.2046, "pct_launch": 0.0682, "pct_layoff": 0.0138, "pct_medios": 0.328, "pct_switch": 0.0054, "pct_through": 0.0019, "pct_verticales": 0.4424, "pelotazos_espalda": 0.0976, "press_final": 2.465, "press_media": 1.9008, "prog_x": 23.455, "start_x": 49.7421, "starts_from_dispossess": 0.0391, "takeons_ok": 0.0269, "tempo": 0.3789, "transition_speed": 3.1418, "verticalidad_media": 0.2786}, "AZ II": {"atk_l": 42.4924, "atk_w": 33.339, "ball_distance": 134.6848, "behind_line_ok": 0.0715, "broke_last_line": 0.0431, "broke_second_last": 0.1663, "cross_pvadded_max": 0.0006, "dang_runs": 0.1531, "deep_completions": 0.3794, "def_h": 32.4632, "dribbles_box": 0.017, "dribbles_last_third": 0.0718, "duration_s": 14.3103, "hold_max": 8.7653, "hold_mean": 4.9725, "hold_min": 2.6621, "line_breaks": 0.6467, "max_x": 67.2473, "n_centros": 0.0861, "n_events": 4.6762, "n_involved": 1.8292, "n_passes": 3.3451, "opt_quality_mean": -0.0104, "paredes": 0.2637, "pass_options_mean": 9.2175, "passes_behind_line": 0.147, "pct_adentro": 0.505, "pct_afuera": 0.4094, "pct_cortos": 0.3391, "pct_headpass": 0.0303, "pct_largos": 0.1963, "pct_launch": 0.082, "pct_layoff": 0.0095, "pct_medios": 0.3796, "pct_switch": 0.0047, "pct_through": 0.0023, "pct_verticales": 0.4319, "pelotazos_espalda": 0.104, "press_final": 2.4968, "press_media": 1.8395, "prog_x": 24.1715, "start_x": 44.1838, "starts_from_dispossess": 0.0508, "takeons_ok": 0.0682, "tempo": 0.3586, "transition_speed": 3.2696, "verticalidad_media": 0.2513}, "Ajax II": {"atk_l": 42.9077, "atk_w": 33.7389, "ball_distance": 146.6021, "behind_line_ok": 0.0523, "broke_last_line": 0.0321, "broke_second_last": 0.1483, "cross_pvadded_max": 0.0004, "dang_runs": 0.1512, "deep_completions": 0.3228, "def_h": 35.1453, "dribbles_box": 0.0123, "dribbles_last_third": 0.0627, "duration_s": 26.5231, "hold_max": 9.7451, "hold_mean": 5.178, "hold_min": 2.6942, "line_breaks": 0.7155, "max_x": 63.289, "n_centros": 0.0798, "n_events": 5.6009, "n_involved": 1.8785, "n_passes": 3.3035, "opt_quality_mean": -0.0729, "paredes": 0.3155, "pass_options_mean": 9.1961, "passes_behind_line": 0.1214, "pct_adentro": 0.4869, "pct_afuera": 0.4202, "pct_cortos": 0.3546, "pct_headpass": 0.0254, "pct_largos": 0.189, "pct_launch": 0.0818, "pct_layoff": 0.0094, "pct_medios": 0.3643, "pct_switch": 0.0065, "pct_through": 0.0023, "pct_verticales": 0.4443, "pelotazos_espalda": 0.0821, "press_final": 2.6304, "press_media": 1.8451, "prog_x": 24.2157, "start_x": 40.1034, "starts_from_dispossess": 0.0382, "takeons_ok": 0.0645, "tempo": 0.3738, "transition_speed": 3.4634, "verticalidad_media": 0.2849}, "Almere City": {"atk_l": 41.1385, "atk_w": 33.1274, "ball_distance": 106.1546, "behind_line_ok": 0.0462, "broke_last_line": 0.0344, "broke_second_last": 0.144, "cross_pvadded_max": 0.0007, "dang_runs": 0.1458, "deep_completions": 0.2885, "def_h": 31.2326, "dribbles_box": 0.0104, "dribbles_last_third": 0.0613, "duration_s": 28.2529, "hold_max": 8.8825, "hold_mean": 5.2722, "hold_min": 3.1949, "line_breaks": 0.5047, "max_x": 68.2806, "n_centros": 0.122, "n_events": 5.491, "n_involved": 1.7732, "n_passes": 2.8965, "opt_quality_mean": 0.0541, "paredes": 0.2234, "pass_options_mean": 9.1909, "passes_behind_line": 0.1185, "pct_adentro": 0.5074, "pct_afuera": 0.4029, "pct_cortos": 0.3613, "pct_headpass": 0.0411, "pct_largos": 0.2211, "pct_launch": 0.0938, "pct_layoff": 0.0107, "pct_medios": 0.3295, "pct_switch": 0.0039, "pct_through": 0.0027, "pct_verticales": 0.4952, "pelotazos_espalda": 0.0874, "press_final": 2.5391, "press_media": 1.8624, "prog_x": 24.2507, "start_x": 45.414, "starts_from_dispossess": 0.0446, "takeons_ok": 0.0419, "tempo": 0.3681, "transition_speed": 3.6197, "verticalidad_media": 0.3511}, "Cambuur": {"atk_l": 43.0253, "atk_w": 32.1352, "ball_distance": 118.3208, "behind_line_ok": 0.0471, "broke_last_line": 0.0415, "broke_second_last": 0.1627, "cross_pvadded_max": 0.001, "dang_runs": 0.1488, "deep_completions": 0.391, "def_h": 31.6302, "dribbles_box": 0.0157, "dribbles_last_third": 0.0708, "duration_s": 29.8706, "hold_max": 9.855, "hold_mean": 5.2597, "hold_min": 2.907, "line_breaks": 0.6216, "max_x": 67.937, "n_centros": 0.1116, "n_events": 5.9382, "n_involved": 1.8295, "n_passes": 3.3796, "opt_quality_mean": 0.0278, "paredes": 0.3033, "pass_options_mean": 8.6301, "passes_behind_line": 0.1184, "pct_adentro": 0.4956, "pct_afuera": 0.4163, "pct_cortos": 0.4161, "pct_headpass": 0.0393, "pct_largos": 0.178, "pct_launch": 0.0835, "pct_layoff": 0.0129, "pct_medios": 0.3191, "pct_switch": 0.0036, "pct_through": 0.0023, "pct_verticales": 0.4341, "pelotazos_espalda": 0.0831, "press_final": 2.4904, "press_media": 1.8416, "prog_x": 23.6222, "start_x": 45.392, "starts_from_dispossess": 0.0416, "takeons_ok": 0.0632, "tempo": 0.3561, "transition_speed": 3.0137, "verticalidad_media": 0.259}, "De Graafschap": {"atk_l": 41.7111, "atk_w": 33.0902, "ball_distance": 139.0525, "behind_line_ok": 0.0604, "broke_last_line": 0.0381, "broke_second_last": 0.1378, "cross_pvadded_max": 0.0017, "dang_runs": 0.149, "deep_completions": 0.343, "def_h": 31.2962, "dribbles_box": 0.0161, "dribbles_last_third": 0.0643, "duration_s": 37.6678, "hold_max": 9.395, "hold_mean": 5.2887, "hold_min": 2.9907, "line_breaks": 0.6173, "max_x": 68.6574, "n_centros": 0.1403, "n_events": 6.6172, "n_involved": 1.8464, "n_passes": 3.242, "opt_quality_mean": 0.0881, "paredes": 0.2709, "pass_options_mean": 9.2191, "passes_behind_line": 0.1215, "pct_adentro": 0.5073, "pct_afuera": 0.4014, "pct_cortos": 0.3364, "pct_headpass": 0.0413, "pct_largos": 0.2043, "pct_launch": 0.0845, "pct_layoff": 0.0089, "pct_medios": 0.3686, "pct_switch": 0.0054, "pct_through": 0.0013, "pct_verticales": 0.4401, "pelotazos_espalda": 0.0812, "press_final": 2.4844, "press_media": 1.8648, "prog_x": 24.449, "start_x": 45.5054, "starts_from_dispossess": 0.0426, "takeons_ok": 0.0595, "tempo": 0.3596, "transition_speed": 3.3663, "verticalidad_media": 0.3022}, "Den Bosch": {"atk_l": 41.0815, "atk_w": 33.6172, "ball_distance": 90.2047, "behind_line_ok": 0.0548, "broke_last_line": 0.034, "broke_second_last": 0.134, "cross_pvadded_max": 0.0022, "dang_runs": 0.1263, "deep_completions": 0.3438, "def_h": 31.78, "dribbles_box": 0.0077, "dribbles_last_third": 0.0452, "duration_s": 30.8207, "hold_max": 9.698, "hold_mean": 5.6444, "hold_min": 3.2712, "line_breaks": 0.4512, "max_x": 68.9448, "n_centros": 0.1144, "n_events": 5.5712, "n_involved": 1.7122, "n_passes": 2.8013, "opt_quality_mean": 0.0182, "paredes": 0.1993, "pass_options_mean": 8.3744, "passes_behind_line": 0.1333, "pct_adentro": 0.5194, "pct_afuera": 0.3952, "pct_cortos": 0.3498, "pct_headpass": 0.0455, "pct_largos": 0.2175, "pct_launch": 0.1005, "pct_layoff": 0.0078, "pct_medios": 0.349, "pct_switch": 0.0035, "pct_through": 0.0026, "pct_verticales": 0.4903, "pelotazos_espalda": 0.103, "press_final": 2.3384, "press_media": 1.7088, "prog_x": 26.2081, "start_x": 44.0543, "starts_from_dispossess": 0.0477, "takeons_ok": 0.0432, "tempo": 0.3398, "transition_speed": 3.6724, "verticalidad_media": 0.3304}, "Dordrecht": {"atk_l": 42.4493, "atk_w": 34.0288, "ball_distance": 95.1792, "behind_line_ok": 0.0385, "broke_last_line": 0.0246, "broke_second_last": 0.1354, "cross_pvadded_max": 0.0011, "dang_runs": 0.1375, "deep_completions": 0.2721, "def_h": 31.099, "dribbles_box": 0.0117, "dribbles_last_third": 0.0558, "duration_s": 26.3758, "hold_max": 9.2926, "hold_mean": 5.6531, "hold_min": 3.3899, "line_breaks": 0.4448, "max_x": 68.0411, "n_centros": 0.1343, "n_events": 5.1691, "n_involved": 1.7138, "n_passes": 2.6299, "opt_quality_mean": 0.0457, "paredes": 0.1939, "pass_options_mean": 8.8365, "passes_behind_line": 0.1133, "pct_adentro": 0.5113, "pct_afuera": 0.3899, "pct_cortos": 0.3308, "pct_headpass": 0.0385, "pct_largos": 0.238, "pct_launch": 0.0957, "pct_layoff": 0.0097, "pct_medios": 0.333, "pct_switch": 0.0045, "pct_through": 0.0021, "pct_verticales": 0.4891, "pelotazos_espalda": 0.0909, "press_final": 2.4017, "press_media": 1.794, "prog_x": 24.6569, "start_x": 44.6949, "starts_from_dispossess": 0.0431, "takeons_ok": 0.0427, "tempo": 0.3667, "transition_speed": 4.1553, "verticalidad_media": 0.3429}, "Eindhoven": {"atk_l": 40.6847, "atk_w": 33.5053, "ball_distance": 98.0385, "behind_line_ok": 0.0547, "broke_last_line": 0.025, "broke_second_last": 0.1416, "cross_pvadded_max": 0.0014, "dang_runs": 0.1469, "deep_completions": 0.2938, "def_h": 31.4624, "dribbles_box": 0.0081, "dribbles_last_third": 0.0467, "duration_s": 26.7604, "hold_max": 9.4609, "hold_mean": 5.5616, "hold_min": 3.231, "line_breaks": 0.4953, "max_x": 67.939, "n_centros": 0.1362, "n_events": 5.409, "n_involved": 1.7914, "n_passes": 2.8013, "opt_quality_mean": 0.0039, "paredes": 0.1928, "pass_options_mean": 8.7799, "passes_behind_line": 0.1312, "pct_adentro": 0.5095, "pct_afuera": 0.406, "pct_cortos": 0.3602, "pct_headpass": 0.0498, "pct_largos": 0.2366, "pct_launch": 0.1142, "pct_layoff": 0.0119, "pct_medios": 0.3201, "pct_switch": 0.0059, "pct_through": 0.001, "pct_verticales": 0.487, "pelotazos_espalda": 0.0976, "press_final": 2.3722, "press_media": 1.7811, "prog_x": 24.7415, "start_x": 44.4753, "starts_from_dispossess": 0.0357, "takeons_ok": 0.0458, "tempo": 0.3944, "transition_speed": 3.9536, "verticalidad_media": 0.327}, "Emmen": {"atk_l": 42.1435, "atk_w": 33.2523, "ball_distance": 111.9354, "behind_line_ok": 0.055, "broke_last_line": 0.0326, "broke_second_last": 0.1362, "cross_pvadded_max": 0.0015, "dang_runs": 0.1437, "deep_completions": 0.3247, "def_h": 30.8451, "dribbles_box": 0.0096, "dribbles_last_third": 0.0579, "duration_s": 31.758, "hold_max": 9.6063, "hold_mean": 5.494, "hold_min": 3.1379, "line_breaks": 0.5296, "max_x": 69.2595, "n_centros": 0.1415, "n_events": 5.8553, "n_involved": 1.769, "n_passes": 2.9798, "opt_quality_mean": 0.0355, "paredes": 0.2498, "pass_options_mean": 9.0238, "passes_behind_line": 0.127, "pct_adentro": 0.5016, "pct_afuera": 0.416, "pct_cortos": 0.3729, "pct_headpass": 0.0405, "pct_largos": 0.2132, "pct_launch": 0.0953, "pct_layoff": 0.01, "pct_medios": 0.3321, "pct_switch": 0.0042, "pct_through": 0.0017, "pct_verticales": 0.4555, "pelotazos_espalda": 0.0937, "press_final": 2.5066, "press_media": 1.8609, "prog_x": 24.5989, "start_x": 45.8556, "starts_from_dispossess": 0.0401, "takeons_ok": 0.0479, "tempo": 0.3769, "transition_speed": 3.6459, "verticalidad_media": 0.3033}, "Helmond Sport": {"atk_l": 40.673, "atk_w": 33.4295, "ball_distance": 120.6139, "behind_line_ok": 0.0583, "broke_last_line": 0.0343, "broke_second_last": 0.1399, "cross_pvadded_max": 0.0008, "dang_runs": 0.1489, "deep_completions": 0.3149, "def_h": 32.1497, "dribbles_box": 0.0086, "dribbles_last_third": 0.0504, "duration_s": 26.0071, "hold_max": 9.401, "hold_mean": 5.5776, "hold_min": 3.3697, "line_breaks": 0.6363, "max_x": 67.1981, "n_centros": 0.1338, "n_events": 5.4221, "n_involved": 1.814, "n_passes": 3.0408, "opt_quality_mean": 0.0031, "paredes": 0.2518, "pass_options_mean": 9.1109, "passes_behind_line": 0.1374, "pct_adentro": 0.5048, "pct_afuera": 0.404, "pct_cortos": 0.3454, "pct_headpass": 0.0392, "pct_largos": 0.2299, "pct_launch": 0.1019, "pct_layoff": 0.0106, "pct_medios": 0.3348, "pct_switch": 0.0054, "pct_through": 0.0019, "pct_verticales": 0.4756, "pelotazos_espalda": 0.1006, "press_final": 2.4513, "press_media": 1.8711, "prog_x": 24.5582, "start_x": 43.8651, "starts_from_dispossess": 0.0396, "takeons_ok": 0.0467, "tempo": 0.366, "transition_speed": 3.5394, "verticalidad_media": 0.3141}, "MVV": {"atk_l": 40.8895, "atk_w": 32.658, "ball_distance": 110.5897, "behind_line_ok": 0.0641, "broke_last_line": 0.0297, "broke_second_last": 0.1477, "cross_pvadded_max": 0.0011, "dang_runs": 0.1028, "deep_completions": 0.3085, "def_h": 33.2954, "dribbles_box": 0.0077, "dribbles_last_third": 0.0454, "duration_s": 29.0427, "hold_max": 9.0624, "hold_mean": 5.2613, "hold_min": 3.0893, "line_breaks": 0.5533, "max_x": 66.8976, "n_centros": 0.1185, "n_events": 5.6082, "n_involved": 1.84, "n_passes": 2.8793, "opt_quality_mean": -0.0801, "paredes": 0.2431, "pass_options_mean": 8.8287, "passes_behind_line": 0.1517, "pct_adentro": 0.4916, "pct_afuera": 0.4214, "pct_cortos": 0.3596, "pct_headpass": 0.0436, "pct_largos": 0.2289, "pct_launch": 0.1007, "pct_layoff": 0.0145, "pct_medios": 0.3257, "pct_switch": 0.004, "pct_through": 0.002, "pct_verticales": 0.51, "pelotazos_espalda": 0.1151, "press_final": 2.4984, "press_media": 1.7826, "prog_x": 27.129, "start_x": 40.9485, "starts_from_dispossess": 0.0401, "takeons_ok": 0.04, "tempo": 0.3861, "transition_speed": 3.9788, "verticalidad_media": 0.3652}, "PSV II": {"atk_l": 43.3188, "atk_w": 32.8318, "ball_distance": 107.8396, "behind_line_ok": 0.0453, "broke_last_line": 0.0315, "broke_second_last": 0.1367, "cross_pvadded_max": 0.0012, "dang_runs": 0.143, "deep_completions": 0.321, "def_h": 32.8763, "dribbles_box": 0.0124, "dribbles_last_third": 0.0664, "duration_s": 18.2874, "hold_max": 9.3179, "hold_mean": 5.2924, "hold_min": 2.8262, "line_breaks": 0.5457, "max_x": 65.0407, "n_centros": 0.0996, "n_events": 4.8463, "n_involved": 1.838, "n_passes": 3.0969, "opt_quality_mean": -0.0182, "paredes": 0.2578, "pass_options_mean": 8.6552, "passes_behind_line": 0.1031, "pct_adentro": 0.4936, "pct_afuera": 0.4095, "pct_cortos": 0.3766, "pct_headpass": 0.0335, "pct_largos": 0.1761, "pct_launch": 0.0758, "pct_layoff": 0.0108, "pct_medios": 0.3522, "pct_switch": 0.005, "pct_through": 0.0022, "pct_verticales": 0.4404, "pelotazos_espalda": 0.074, "press_final": 2.5237, "press_media": 1.8706, "prog_x": 22.6689, "start_x": 43.7291, "starts_from_dispossess": 0.0444, "takeons_ok": 0.0563, "tempo": 0.3738, "transition_speed": 3.0843, "verticalidad_media": 0.2726}, "RKC Waalwijk": {"atk_l": 41.432, "atk_w": 32.4659, "ball_distance": 119.6704, "behind_line_ok": 0.0625, "broke_last_line": 0.0301, "broke_second_last": 0.1455, "cross_pvadded_max": 0.0018, "dang_runs": 0.1526, "deep_completions": 0.3826, "def_h": 32.4537, "dribbles_box": 0.0107, "dribbles_last_third": 0.0579, "duration_s": 31.5817, "hold_max": 10.0729, "hold_mean": 5.3138, "hold_min": 2.8963, "line_breaks": 0.6087, "max_x": 67.0131, "n_centros": 0.13, "n_events": 6.0649, "n_involved": 1.8202, "n_passes": 3.234, "opt_quality_mean": 0.0124, "paredes": 0.2768, "pass_options_mean": 9.0751, "passes_behind_line": 0.1241, "pct_adentro": 0.5072, "pct_afuera": 0.4102, "pct_cortos": 0.3786, "pct_headpass": 0.0422, "pct_largos": 0.2068, "pct_launch": 0.087, "pct_layoff": 0.0122, "pct_medios": 0.3327, "pct_switch": 0.006, "pct_through": 0.0021, "pct_verticales": 0.4752, "pelotazos_espalda": 0.0823, "press_final": 2.5514, "press_media": 1.9184, "prog_x": 24.5732, "start_x": 43.4561, "starts_from_dispossess": 0.0493, "takeons_ok": 0.0493, "tempo": 0.3703, "transition_speed": 3.469, "verticalidad_media": 0.3115}, "Roda JC": {"atk_l": 41.4893, "atk_w": 33.643, "ball_distance": 125.6533, "behind_line_ok": 0.0566, "broke_last_line": 0.034, "broke_second_last": 0.1685, "cross_pvadded_max": 0.0009, "dang_runs": 0.1612, "deep_completions": 0.3468, "def_h": 32.0959, "dribbles_box": 0.01, "dribbles_last_third": 0.0583, "duration_s": 31.285, "hold_max": 9.5837, "hold_mean": 5.2968, "hold_min": 2.923, "line_breaks": 0.643, "max_x": 67.7135, "n_centros": 0.1257, "n_events": 6.0401, "n_involved": 1.8952, "n_passes": 3.2951, "opt_quality_mean": 0.0245, "paredes": 0.2796, "pass_options_mean": 8.8828, "passes_behind_line": 0.1243, "pct_adentro": 0.4972, "pct_afuera": 0.4072, "pct_cortos": 0.3641, "pct_headpass": 0.04, "pct_largos": 0.1841, "pct_launch": 0.0745, "pct_layoff": 0.0111, "pct_medios": 0.3579, "pct_switch": 0.0031, "pct_through": 0.002, "pct_verticales": 0.4552, "pelotazos_espalda": 0.0808, "press_final": 2.5347, "press_media": 1.8361, "prog_x": 24.1755, "start_x": 45.0, "starts_from_dispossess": 0.0407, "takeons_ok": 0.0449, "tempo": 0.3715, "transition_speed": 3.4204, "verticalidad_media": 0.2979}, "TOP Oss": {"atk_l": 40.1225, "atk_w": 33.4071, "ball_distance": 86.8301, "behind_line_ok": 0.0557, "broke_last_line": 0.03, "broke_second_last": 0.1335, "cross_pvadded_max": 0.0013, "dang_runs": 0.1091, "deep_completions": 0.3197, "def_h": 31.2871, "dribbles_box": 0.0076, "dribbles_last_third": 0.0432, "duration_s": 31.8141, "hold_max": 10.2592, "hold_mean": 6.0513, "hold_min": 3.5432, "line_breaks": 0.4036, "max_x": 68.3875, "n_centros": 0.133, "n_events": 5.568, "n_involved": 1.6908, "n_passes": 2.6225, "opt_quality_mean": -0.0113, "paredes": 0.1953, "pass_options_mean": 8.7651, "passes_behind_line": 0.1357, "pct_adentro": 0.4966, "pct_afuera": 0.4143, "pct_cortos": 0.336, "pct_headpass": 0.0498, "pct_largos": 0.2615, "pct_launch": 0.1199, "pct_layoff": 0.0085, "pct_medios": 0.3147, "pct_switch": 0.0047, "pct_through": 0.0021, "pct_verticales": 0.4974, "pelotazos_espalda": 0.1061, "press_final": 2.4705, "press_media": 1.752, "prog_x": 26.0303, "start_x": 43.543, "starts_from_dispossess": 0.0452, "takeons_ok": 0.0404, "tempo": 0.3586, "transition_speed": 4.045, "verticalidad_media": 0.3512}, "Utrecht II": {"atk_l": 41.4106, "atk_w": 32.7165, "ball_distance": 107.5407, "behind_line_ok": 0.0577, "broke_last_line": 0.0284, "broke_second_last": 0.1335, "cross_pvadded_max": 0.0011, "dang_runs": 0.1496, "deep_completions": 0.2986, "def_h": 32.1522, "dribbles_box": 0.0094, "dribbles_last_third": 0.0533, "duration_s": 25.043, "hold_max": 8.8634, "hold_mean": 5.3644, "hold_min": 3.2295, "line_breaks": 0.4964, "max_x": 67.3545, "n_centros": 0.1023, "n_events": 5.2697, "n_involved": 1.7613, "n_passes": 2.8987, "opt_quality_mean": 0.0009, "paredes": 0.2216, "pass_options_mean": 8.9019, "passes_behind_line": 0.1346, "pct_adentro": 0.4992, "pct_afuera": 0.4054, "pct_cortos": 0.3521, "pct_headpass": 0.0461, "pct_largos": 0.2112, "pct_launch": 0.1058, "pct_layoff": 0.0083, "pct_medios": 0.3428, "pct_switch": 0.0031, "pct_through": 0.0017, "pct_verticales": 0.4874, "pelotazos_espalda": 0.0975, "press_final": 2.4898, "press_media": 1.7826, "prog_x": 24.7444, "start_x": 43.7333, "starts_from_dispossess": 0.044, "takeons_ok": 0.0505, "tempo": 0.3642, "transition_speed": 3.7082, "verticalidad_media": 0.3471}, "VVV": {"atk_l": 41.1334, "atk_w": 32.4161, "ball_distance": 97.917, "behind_line_ok": 0.0422, "broke_last_line": 0.0297, "broke_second_last": 0.1431, "cross_pvadded_max": 0.0017, "dang_runs": 0.1104, "deep_completions": 0.3079, "def_h": 31.9098, "dribbles_box": 0.0084, "dribbles_last_third": 0.0531, "duration_s": 28.897, "hold_max": 8.9212, "hold_mean": 5.2154, "hold_min": 3.0467, "line_breaks": 0.5214, "max_x": 67.3664, "n_centros": 0.1273, "n_events": 5.6298, "n_involved": 1.7843, "n_passes": 2.8569, "opt_quality_mean": 0.0102, "paredes": 0.226, "pass_options_mean": 9.1448, "passes_behind_line": 0.1102, "pct_adentro": 0.5066, "pct_afuera": 0.4064, "pct_cortos": 0.3974, "pct_headpass": 0.0481, "pct_largos": 0.196, "pct_launch": 0.0914, "pct_layoff": 0.01, "pct_medios": 0.3208, "pct_switch": 0.0045, "pct_through": 0.0023, "pct_verticales": 0.4775, "pelotazos_espalda": 0.0777, "press_final": 2.4271, "press_media": 1.853, "prog_x": 23.8597, "start_x": 44.7519, "starts_from_dispossess": 0.0379, "takeons_ok": 0.0414, "tempo": 0.3869, "transition_speed": 3.6178, "verticalidad_media": 0.3302}, "Vitesse": {"atk_l": 39.9865, "atk_w": 33.2301, "ball_distance": 95.0115, "behind_line_ok": 0.0403, "broke_last_line": 0.0272, "broke_second_last": 0.1419, "cross_pvadded_max": 0.0012, "dang_runs": 0.0918, "deep_completions": 0.3003, "def_h": 31.9912, "dribbles_box": 0.0075, "dribbles_last_third": 0.0489, "duration_s": 20.7377, "hold_max": 9.4181, "hold_mean": 5.5605, "hold_min": 3.2293, "line_breaks": 0.4229, "max_x": 67.3455, "n_centros": 0.1315, "n_events": 4.8144, "n_involved": 1.7564, "n_passes": 2.7357, "opt_quality_mean": 0.014, "paredes": 0.2234, "pass_options_mean": 8.3782, "passes_behind_line": 0.1085, "pct_adentro": 0.5204, "pct_afuera": 0.3818, "pct_cortos": 0.3758, "pct_headpass": 0.0408, "pct_largos": 0.2183, "pct_launch": 0.1047, "pct_layoff": 0.0098, "pct_medios": 0.31, "pct_switch": 0.0056, "pct_through": 0.0024, "pct_verticales": 0.4855, "pelotazos_espalda": 0.0836, "press_final": 2.4124, "press_media": 1.7642, "prog_x": 23.8481, "start_x": 44.7709, "starts_from_dispossess": 0.0491, "takeons_ok": 0.0418, "tempo": 0.3736, "transition_speed": 3.7419, "verticalidad_media": 0.3375}, "Willem II": {"atk_l": 40.1745, "atk_w": 33.1822, "ball_distance": 133.6027, "behind_line_ok": 0.0629, "broke_last_line": 0.0342, "broke_second_last": 0.1657, "cross_pvadded_max": 0.0021, "dang_runs": 0.1472, "deep_completions": 0.3578, "def_h": 31.8359, "dribbles_box": 0.0091, "dribbles_last_third": 0.0444, "duration_s": 25.5484, "hold_max": 9.6911, "hold_mean": 5.6204, "hold_min": 3.2699, "line_breaks": 0.6391, "max_x": 68.8859, "n_centros": 0.1625, "n_events": 5.4297, "n_involved": 1.8083, "n_passes": 3.2092, "opt_quality_mean": 0.0178, "paredes": 0.2937, "pass_options_mean": 9.0933, "passes_behind_line": 0.1406, "pct_adentro": 0.5033, "pct_afuera": 0.4172, "pct_cortos": 0.3319, "pct_headpass": 0.0508, "pct_largos": 0.238, "pct_launch": 0.0967, "pct_layoff": 0.0116, "pct_medios": 0.3522, "pct_switch": 0.0047, "pct_through": 0.0027, "pct_verticales": 0.4772, "pelotazos_espalda": 0.097, "press_final": 2.4541, "press_media": 1.8115, "prog_x": 26.3571, "start_x": 43.4715, "starts_from_dispossess": 0.0354, "takeons_ok": 0.039, "tempo": 0.3624, "transition_speed": 3.5732, "verticalidad_media": 0.3075}}, "team_eje_norm_gen": {"ADO Den Haag": {"eje_verticalidad": -0.0804, "eje_elaboracion": 0.068, "eje_individual": -0.0308, "eje_rotura_lineas": 0.0517, "eje_amplitud_centro": 0.0059, "eje_profundidad_espalda": 0.0379, "eje_robo_alto": 0.0876, "eje_aereo_segunda": -0.0016}, "AZ II": {"eje_verticalidad": -0.1059, "eje_elaboracion": 0.0055, "eje_individual": 0.0594, "eje_rotura_lineas": 0.0388, "eje_amplitud_centro": -0.0343, "eje_profundidad_espalda": 0.0596, "eje_robo_alto": 0.0136, "eje_aereo_segunda": -0.0451}, "Ajax II": {"eje_verticalidad": -0.0821, "eje_elaboracion": 0.0417, "eje_individual": 0.0343, "eje_rotura_lineas": 0.0199, "eje_amplitud_centro": -0.0187, "eje_profundidad_espalda": -0.0165, "eje_robo_alto": -0.0931, "eje_aereo_segunda": -0.0562}, "Almere City": {"eje_verticalidad": 0.0219, "eje_elaboracion": -0.0188, "eje_individual": 0.0017, "eje_rotura_lineas": -0.0012, "eje_amplitud_centro": -0.0104, "eje_profundidad_espalda": -0.0315, "eje_robo_alto": 0.0211, "eje_aereo_segunda": 0.0011}, "Cambuur": {"eje_verticalidad": -0.1247, "eje_elaboracion": 0.0872, "eje_individual": 0.0485, "eje_rotura_lineas": 0.0315, "eje_amplitud_centro": -0.0096, "eje_profundidad_espalda": -0.0011, "eje_robo_alto": 0.0133, "eje_aereo_segunda": -0.0039}, "De Graafschap": {"eje_verticalidad": -0.0645, "eje_elaboracion": 0.0163, "eje_individual": 0.0388, "eje_rotura_lineas": 0.0032, "eje_amplitud_centro": 0.0163, "eje_profundidad_espalda": -0.002, "eje_robo_alto": 0.0179, "eje_aereo_segunda": -0.021}, "Den Bosch": {"eje_verticalidad": 0.0072, "eje_elaboracion": -0.0411, "eje_individual": -0.0263, "eje_rotura_lineas": -0.0156, "eje_amplitud_centro": -0.028, "eje_profundidad_espalda": 0.0196, "eje_robo_alto": 0.0036, "eje_aereo_segunda": 0.0033}, "Dordrecht": {"eje_verticalidad": 0.0412, "eje_elaboracion": -0.0726, "eje_individual": -0.0026, "eje_rotura_lineas": -0.032, "eje_amplitud_centro": -0.0062, "eje_profundidad_espalda": -0.0457, "eje_robo_alto": 0.004, "eje_aereo_segunda": -0.0074}, "Eindhoven": {"eje_verticalidad": 0.029, "eje_elaboracion": -0.0397, "eje_individual": -0.0141, "eje_rotura_lineas": -0.0286, "eje_amplitud_centro": 0.02, "eje_profundidad_espalda": -0.0029, "eje_robo_alto": -0.0184, "eje_aereo_segunda": 0.0548}, "Emmen": {"eje_verticalidad": -0.0338, "eje_elaboracion": 0.0082, "eje_individual": 0.0023, "eje_rotura_lineas": -0.0133, "eje_amplitud_centro": 0.0235, "eje_profundidad_espalda": 0.0011, "eje_robo_alto": 0.0182, "eje_aereo_segunda": -0.0016}, "Helmond Sport": {"eje_verticalidad": -0.0101, "eje_elaboracion": -0.0093, "eje_individual": -0.0075, "eje_rotura_lineas": 0.0054, "eje_amplitud_centro": 0.0126, "eje_profundidad_espalda": 0.0149, "eje_robo_alto": -0.02, "eje_aereo_segunda": 0.0076}, "MVV": {"eje_verticalidad": 0.0571, "eje_elaboracion": -0.0132, "eje_individual": -0.0371, "eje_rotura_lineas": -0.0046, "eje_amplitud_centro": 0.0043, "eje_profundidad_espalda": 0.0416, "eje_robo_alto": -0.0728, "eje_aereo_segunda": 0.038}, "PSV II": {"eje_verticalidad": -0.1135, "eje_elaboracion": 0.0124, "eje_individual": 0.0268, "eje_rotura_lineas": -0.009, "eje_amplitud_centro": -0.0187, "eje_profundidad_espalda": -0.0446, "eje_robo_alto": -0.0107, "eje_aereo_segunda": -0.039}, "RKC Waalwijk": {"eje_verticalidad": -0.0294, "eje_elaboracion": 0.0417, "eje_individual": 0.0092, "eje_rotura_lineas": 0.0014, "eje_amplitud_centro": 0.0185, "eje_profundidad_espalda": 0.0159, "eje_robo_alto": -0.0036, "eje_aereo_segunda": 0.0035}, "Roda JC": {"eje_verticalidad": -0.07, "eje_elaboracion": 0.0375, "eje_individual": 0.0058, "eje_rotura_lineas": 0.0249, "eje_amplitud_centro": -0.0076, "eje_profundidad_espalda": -0.0031, "eje_robo_alto": 0.0038, "eje_aereo_segunda": -0.0243}, "TOP Oss": {"eje_verticalidad": 0.0674, "eje_elaboracion": -0.065, "eje_individual": -0.0371, "eje_rotura_lineas": -0.03, "eje_amplitud_centro": 0.0169, "eje_profundidad_espalda": 0.0172, "eje_robo_alto": -0.012, "eje_aereo_segunda": 0.043}, "Utrecht II": {"eje_verticalidad": 0.0061, "eje_elaboracion": -0.028, "eje_individual": 0.0018, "eje_rotura_lineas": -0.0249, "eje_amplitud_centro": -0.0326, "eje_profundidad_espalda": 0.0042, "eje_robo_alto": -0.0116, "eje_aereo_segunda": 0.0147}, "VVV": {"eje_verticalidad": -0.0199, "eje_elaboracion": 0.0041, "eje_individual": -0.0234, "eje_rotura_lineas": -0.0091, "eje_amplitud_centro": 0.0022, "eje_profundidad_espalda": -0.0438, "eje_robo_alto": -0.0079, "eje_aereo_segunda": 0.0093}, "Vitesse": {"eje_verticalidad": 0.007, "eje_elaboracion": -0.0271, "eje_individual": -0.0353, "eje_rotura_lineas": -0.0243, "eje_amplitud_centro": -0.0096, "eje_profundidad_espalda": -0.0444, "eje_robo_alto": 0.0203, "eje_aereo_segunda": 0.0103}, "Willem II": {"eje_verticalidad": -0.0001, "eje_elaboracion": 0.01, "eje_individual": -0.0217, "eje_rotura_lineas": 0.0278, "eje_amplitud_centro": 0.0491, "eje_profundidad_espalda": 0.0328, "eje_robo_alto": -0.0376, "eje_aereo_segunda": 0.032}}, "team_eje_norm_con": {"ADO Den Haag": {"eje_verticalidad": 0.0853, "eje_elaboracion": -0.1013, "eje_individual": -0.0391, "eje_rotura_lineas": -0.0434, "eje_amplitud_centro": -0.0238, "eje_profundidad_espalda": -0.0335, "eje_robo_alto": -0.1082, "eje_aereo_segunda": 0.0709}, "AZ II": {"eje_verticalidad": -0.0416, "eje_elaboracion": -0.0086, "eje_individual": 0.0286, "eje_rotura_lineas": -0.0244, "eje_amplitud_centro": -0.0048, "eje_profundidad_espalda": -0.0054, "eje_robo_alto": -0.0197, "eje_aereo_segunda": -0.011}, "Ajax II": {"eje_verticalidad": -0.0678, "eje_elaboracion": 0.0079, "eje_individual": 0.0017, "eje_rotura_lineas": 0.0442, "eje_amplitud_centro": -0.0099, "eje_profundidad_espalda": 0.0202, "eje_robo_alto": 0.0706, "eje_aereo_segunda": -0.0457}, "Almere City": {"eje_verticalidad": -0.0009, "eje_elaboracion": 0.0258, "eje_individual": -0.0128, "eje_rotura_lineas": -0.0025, "eje_amplitud_centro": -0.0107, "eje_profundidad_espalda": 0.0221, "eje_robo_alto": -0.0354, "eje_aereo_segunda": 0.0192}, "Cambuur": {"eje_verticalidad": 0.0176, "eje_elaboracion": -0.0519, "eje_individual": -0.029, "eje_rotura_lineas": 0.0017, "eje_amplitud_centro": -0.007, "eje_profundidad_espalda": -0.0327, "eje_robo_alto": -0.045, "eje_aereo_segunda": 0.0154}, "De Graafschap": {"eje_verticalidad": 0.0332, "eje_elaboracion": -0.0711, "eje_individual": 0.0022, "eje_rotura_lineas": -0.0158, "eje_amplitud_centro": 0.0078, "eje_profundidad_espalda": -0.0071, "eje_robo_alto": 0.005, "eje_aereo_segunda": 0.0061}, "Den Bosch": {"eje_verticalidad": -0.0201, "eje_elaboracion": 0.0024, "eje_individual": -0.0049, "eje_rotura_lineas": -0.0094, "eje_amplitud_centro": 0.0037, "eje_profundidad_espalda": -0.0187, "eje_robo_alto": -0.0052, "eje_aereo_segunda": 0.0201}, "Dordrecht": {"eje_verticalidad": 0.0068, "eje_elaboracion": -0.0302, "eje_individual": -0.0035, "eje_rotura_lineas": -0.0189, "eje_amplitud_centro": 0.021, "eje_profundidad_espalda": -0.0033, "eje_robo_alto": -0.0071, "eje_aereo_segunda": -0.0018}, "Eindhoven": {"eje_verticalidad": -0.0736, "eje_elaboracion": 0.0388, "eje_individual": 0.0072, "eje_rotura_lineas": 0.0184, "eje_amplitud_centro": 0.0051, "eje_profundidad_espalda": 0.0134, "eje_robo_alto": 0.0125, "eje_aereo_segunda": -0.0108}, "Emmen": {"eje_verticalidad": 0.0205, "eje_elaboracion": -0.044, "eje_individual": 0.0094, "eje_rotura_lineas": 0.0071, "eje_amplitud_centro": -0.0211, "eje_profundidad_espalda": -0.0023, "eje_robo_alto": -0.0461, "eje_aereo_segunda": 0.0076}, "Helmond Sport": {"eje_verticalidad": -0.03, "eje_elaboracion": 0.016, "eje_individual": -0.0039, "eje_rotura_lineas": 0.0009, "eje_amplitud_centro": -0.0033, "eje_profundidad_espalda": 0.0114, "eje_robo_alto": 0.002, "eje_aereo_segunda": 0.0054}, "MVV": {"eje_verticalidad": -0.0837, "eje_elaboracion": 0.0615, "eje_individual": 0.0366, "eje_rotura_lineas": 0.0519, "eje_amplitud_centro": 0.0094, "eje_profundidad_espalda": 0.0226, "eje_robo_alto": 0.0331, "eje_aereo_segunda": -0.0449}, "PSV II": {"eje_verticalidad": -0.0669, "eje_elaboracion": -0.0186, "eje_individual": -0.0006, "eje_rotura_lineas": 0.004, "eje_amplitud_centro": -0.0063, "eje_profundidad_espalda": 0.0003, "eje_robo_alto": 0.046, "eje_aereo_segunda": -0.0151}, "RKC Waalwijk": {"eje_verticalidad": -0.044, "eje_elaboracion": 0.0214, "eje_individual": -0.0071, "eje_rotura_lineas": 0.0044, "eje_amplitud_centro": -0.0003, "eje_profundidad_espalda": 0.0079, "eje_robo_alto": 0.0211, "eje_aereo_segunda": -0.0218}, "Roda JC": {"eje_verticalidad": -0.0362, "eje_elaboracion": 0.0472, "eje_individual": 0.0048, "eje_rotura_lineas": 0.0029, "eje_amplitud_centro": -0.0075, "eje_profundidad_espalda": -0.0084, "eje_robo_alto": -0.0143, "eje_aereo_segunda": 0.0178}, "TOP Oss": {"eje_verticalidad": -0.0666, "eje_elaboracion": 0.0231, "eje_individual": -0.0093, "eje_rotura_lineas": -0.0062, "eje_amplitud_centro": 0.0283, "eje_profundidad_espalda": 0.0271, "eje_robo_alto": 0.0165, "eje_aereo_segunda": -0.0265}, "Utrecht II": {"eje_verticalidad": -0.0301, "eje_elaboracion": 0.012, "eje_individual": -0.0066, "eje_rotura_lineas": 0.009, "eje_amplitud_centro": 0.0067, "eje_profundidad_espalda": 0.0071, "eje_robo_alto": -0.0078, "eje_aereo_segunda": 0.03}, "VVV": {"eje_verticalidad": -0.0103, "eje_elaboracion": -0.0241, "eje_individual": 0.0045, "eje_rotura_lineas": 0.0022, "eje_amplitud_centro": 0.0112, "eje_profundidad_espalda": 0.0201, "eje_robo_alto": -0.0163, "eje_aereo_segunda": -0.0018}, "Vitesse": {"eje_verticalidad": -0.0374, "eje_elaboracion": 0.0523, "eje_individual": 0.0083, "eje_rotura_lineas": -0.0111, "eje_amplitud_centro": -0.024, "eje_profundidad_espalda": -0.0314, "eje_robo_alto": 0.0158, "eje_aereo_segunda": 0.0103}, "Willem II": {"eje_verticalidad": -0.0516, "eje_elaboracion": 0.059, "eje_individual": 0.0058, "eje_rotura_lineas": -0.0026, "eje_amplitud_centro": 0.0191, "eje_profundidad_espalda": -0.0001, "eje_robo_alto": -0.0018, "eje_aereo_segunda": -0.0061}}} \ No newline at end of file diff --git a/vendor/data/ejes/dutch-eerste-divisie/25-26/team_profiles.parquet b/vendor/data/ejes/dutch-eerste-divisie/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..41ec91865fc11871d32857d5950e5a575c968395 --- /dev/null +++ b/vendor/data/ejes/dutch-eerste-divisie/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efbae76becc77dfa0c03aa191c1698d9928a46bf0130756e89cb182c0700c0fb +size 9898 diff --git a/vendor/data/ejes/dutch-eredivisie/25-26/ejes_definition.json b/vendor/data/ejes/dutch-eredivisie/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/dutch-eredivisie/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/dutch-eredivisie/25-26/match_team_ejes.parquet b/vendor/data/ejes/dutch-eredivisie/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..a07f0837a24eed948b3c5d03ff9f4e5e3ce1dbd7 --- /dev/null +++ b/vendor/data/ejes/dutch-eredivisie/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4faa28c1573c1bbfcb5c7c51ee9023ab65b77b0e13952e0cdabe6a7d96e99b76 +size 74338 diff --git a/vendor/data/ejes/dutch-eredivisie/25-26/match_team_vars.parquet b/vendor/data/ejes/dutch-eredivisie/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..b9cc5637fa3f04863dac7dab4ef2bd4a20f08409 --- /dev/null +++ b/vendor/data/ejes/dutch-eredivisie/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d41d74aa6806a5d157c4ca3de67c0e36bd0cdce2fb5835942c4d51ed486f2541 +size 277218 diff --git a/vendor/data/ejes/dutch-eredivisie/25-26/predictor.json b/vendor/data/ejes/dutch-eredivisie/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..7d487cf0b2bb656230a4a674e3e5cf3a8135e398 --- /dev/null +++ b/vendor/data/ejes/dutch-eredivisie/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.9283, "con": 0.8615, "intercept": 0.0197}, "elaboracion": {"gen": 0.959, "con": 0.8271, "intercept": -0.0006}, "individual": {"gen": 0.8942, "con": 0.6099, "intercept": 0.0003}, "rotura_lineas": {"gen": 0.9362, "con": 0.5753, "intercept": -0.0005}, "amplitud_centro": {"gen": 0.7129, "con": 0.5768, "intercept": -0.0}, "profundidad_espalda": {"gen": 0.6438, "con": 0.5643, "intercept": -0.0003}, "robo_alto": {"gen": 0.8291, "con": 0.8482, "intercept": 0.0033}, "aereo_segunda": {"gen": 0.8679, "con": 0.8163, "intercept": -0.0003}} \ No newline at end of file diff --git a/vendor/data/ejes/dutch-eredivisie/25-26/scales.json b/vendor/data/ejes/dutch-eredivisie/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..f6c72d515e5628656f50d3145d0b6269dcb8771c --- /dev/null +++ b/vendor/data/ejes/dutch-eredivisie/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 1.7351, "atk_w": 1.2372, "ball_distance": 41.4987, "behind_line_ok": 0.0217, "broke_last_line": 0.018, "broke_second_last": 0.0444, "cross_pvadded_max": 0.0016, "dang_runs": 0.0802, "deep_completions": 0.1247, "def_h": 2.7059, "dribbles_box": 0.0101, "dribbles_last_third": 0.022, "duration_s": 27.7702, "hold_max": 19.9912, "hold_mean": 0.8867, "hold_min": 0.8695, "line_breaks": 0.2469, "max_x": 3.5952, "n_centros": 0.0468, "n_events": 1.6795, "n_involved": 0.1525, "n_passes": 0.5077, "opt_quality_mean": 0.1439, "paredes": 0.0975, "pass_options_mean": 1.4652, "passes_behind_line": 0.0395, "pct_adentro": 0.0351, "pct_afuera": 0.0336, "pct_cortos": 0.0481, "pct_headpass": 0.0153, "pct_largos": 0.0433, "pct_launch": 0.0321, "pct_layoff": 0.0055, "pct_medios": 0.0403, "pct_switch": 0.0043, "pct_through": 0.0038, "pct_verticales": 0.05, "pelotazos_espalda": 0.0342, "press_final": 0.3124, "press_media": 0.1841, "prog_x": 2.4296, "start_x": 4.2308, "starts_from_dispossess": 0.0178, "takeons_ok": 0.02, "tempo": 0.039, "transition_speed": 0.7342, "verticalidad_media": 0.0569}, "eje_sigma": {"eje_verticalidad": 0.1039, "eje_elaboracion": 0.0883, "eje_individual": 0.061, "eje_rotura_lineas": 0.0609, "eje_amplitud_centro": 0.0545, "eje_profundidad_espalda": 0.0826, "eje_robo_alto": 0.0937, "eje_aereo_segunda": 0.0684}, "eje_match_mean": {"eje_verticalidad": -0.025, "eje_elaboracion": 0.0008, "eje_individual": -0.0006, "eje_rotura_lineas": 0.0011, "eje_amplitud_centro": 0.0001, "eje_profundidad_espalda": 0.0014, "eje_robo_alto": -0.0048, "eje_aereo_segunda": 0.0004}, "eje_match_std": {"eje_verticalidad": 0.1194, "eje_elaboracion": 0.1081, "eje_individual": 0.0685, "eje_rotura_lineas": 0.0723, "eje_amplitud_centro": 0.0571, "eje_profundidad_espalda": 0.0859, "eje_robo_alto": 0.1018, "eje_aereo_segunda": 0.0745}, "team_var_norm": {"AZ": {"atk_l": 41.7983, "atk_w": 32.4354, "ball_distance": 124.9393, "behind_line_ok": 0.0564, "broke_last_line": 0.0334, "broke_second_last": 0.182, "cross_pvadded_max": 0.0011, "dang_runs": 0.1413, "deep_completions": 0.3755, "def_h": 31.8083, "dribbles_box": 0.0181, "dribbles_last_third": 0.0704, "duration_s": 27.1102, "hold_max": 9.7883, "hold_mean": 5.6997, "hold_min": 3.3367, "line_breaks": 0.6428, "max_x": 67.6853, "n_centros": 0.0968, "n_events": 5.7426, "n_involved": 1.8832, "n_passes": 3.3413, "opt_quality_mean": 0.067, "paredes": 0.2921, "pass_options_mean": 9.0498, "passes_behind_line": 0.1269, "pct_adentro": 0.4946, "pct_afuera": 0.4138, "pct_cortos": 0.413, "pct_headpass": 0.0437, "pct_largos": 0.1891, "pct_launch": 0.0855, "pct_layoff": 0.0114, "pct_medios": 0.3082, "pct_switch": 0.0048, "pct_through": 0.0042, "pct_verticales": 0.4431, "pelotazos_espalda": 0.0905, "press_final": 2.6483, "press_media": 1.9074, "prog_x": 24.0804, "start_x": 44.8601, "starts_from_dispossess": 0.0485, "takeons_ok": 0.0561, "tempo": 0.3799, "transition_speed": 3.2409, "verticalidad_media": 0.2809}, "Ajax": {"atk_l": 42.4329, "atk_w": 32.5021, "ball_distance": 160.3622, "behind_line_ok": 0.0521, "broke_last_line": 0.0329, "broke_second_last": 0.1929, "cross_pvadded_max": 0.0012, "dang_runs": 0.1913, "deep_completions": 0.4025, "def_h": 32.9786, "dribbles_box": 0.0145, "dribbles_last_third": 0.0636, "duration_s": 28.105, "hold_max": 9.2891, "hold_mean": 4.9318, "hold_min": 2.6266, "line_breaks": 0.8946, "max_x": 66.429, "n_centros": 0.1086, "n_events": 6.2372, "n_involved": 2.041, "n_passes": 3.9421, "opt_quality_mean": 0.0465, "paredes": 0.4226, "pass_options_mean": 8.9222, "passes_behind_line": 0.1156, "pct_adentro": 0.5046, "pct_afuera": 0.4116, "pct_cortos": 0.4229, "pct_headpass": 0.0346, "pct_largos": 0.1661, "pct_launch": 0.0673, "pct_layoff": 0.0149, "pct_medios": 0.3282, "pct_switch": 0.0062, "pct_through": 0.0039, "pct_verticales": 0.4358, "pelotazos_espalda": 0.0743, "press_final": 2.7123, "press_media": 1.9941, "prog_x": 24.2151, "start_x": 43.2541, "starts_from_dispossess": 0.0492, "takeons_ok": 0.057, "tempo": 0.3934, "transition_speed": 3.1407, "verticalidad_media": 0.27}, "Excelsior": {"atk_l": 39.941, "atk_w": 31.4834, "ball_distance": 128.8307, "behind_line_ok": 0.0452, "broke_last_line": 0.0273, "broke_second_last": 0.1439, "cross_pvadded_max": 0.0014, "dang_runs": 0.1428, "deep_completions": 0.2619, "def_h": 32.3948, "dribbles_box": 0.0132, "dribbles_last_third": 0.0553, "duration_s": 29.6008, "hold_max": 10.6377, "hold_mean": 6.1632, "hold_min": 3.8389, "line_breaks": 0.5601, "max_x": 67.4805, "n_centros": 0.1131, "n_events": 5.7271, "n_involved": 1.8016, "n_passes": 3.05, "opt_quality_mean": -0.0312, "paredes": 0.2242, "pass_options_mean": 8.9426, "passes_behind_line": 0.1307, "pct_adentro": 0.4773, "pct_afuera": 0.4358, "pct_cortos": 0.3254, "pct_headpass": 0.0626, "pct_largos": 0.259, "pct_launch": 0.106, "pct_layoff": 0.0118, "pct_medios": 0.3297, "pct_switch": 0.0046, "pct_through": 0.0015, "pct_verticales": 0.4979, "pelotazos_espalda": 0.0975, "press_final": 2.5855, "press_media": 1.8514, "prog_x": 25.5548, "start_x": 43.3108, "starts_from_dispossess": 0.0357, "takeons_ok": 0.0476, "tempo": 0.3701, "transition_speed": 3.776, "verticalidad_media": 0.3377}, "Feyenoord": {"atk_l": 41.416, "atk_w": 31.0944, "ball_distance": 122.4358, "behind_line_ok": 0.061, "broke_last_line": 0.0395, "broke_second_last": 0.1701, "cross_pvadded_max": 0.002, "dang_runs": 0.1798, "deep_completions": 0.4435, "def_h": 29.2024, "dribbles_box": 0.0216, "dribbles_last_third": 0.0828, "duration_s": 32.6631, "hold_max": 10.132, "hold_mean": 5.8435, "hold_min": 3.4921, "line_breaks": 0.6819, "max_x": 71.3945, "n_centros": 0.135, "n_events": 6.1261, "n_involved": 1.8407, "n_passes": 3.2968, "opt_quality_mean": 0.1999, "paredes": 0.3099, "pass_options_mean": 8.9982, "passes_behind_line": 0.1259, "pct_adentro": 0.5084, "pct_afuera": 0.4001, "pct_cortos": 0.4042, "pct_headpass": 0.0458, "pct_largos": 0.1788, "pct_launch": 0.0633, "pct_layoff": 0.0113, "pct_medios": 0.3264, "pct_switch": 0.0049, "pct_through": 0.0056, "pct_verticales": 0.4498, "pelotazos_espalda": 0.077, "press_final": 2.6439, "press_media": 1.9411, "prog_x": 24.8243, "start_x": 47.7724, "starts_from_dispossess": 0.0461, "takeons_ok": 0.0633, "tempo": 0.3672, "transition_speed": 3.2292, "verticalidad_media": 0.2982}, "Fortuna Sittard": {"atk_l": 39.1567, "atk_w": 31.1111, "ball_distance": 101.3032, "behind_line_ok": 0.0458, "broke_last_line": 0.0263, "broke_second_last": 0.1361, "cross_pvadded_max": 0.0014, "dang_runs": 0.1144, "deep_completions": 0.2739, "def_h": 32.3975, "dribbles_box": 0.0099, "dribbles_last_third": 0.0458, "duration_s": 45.7835, "hold_max": 24.9855, "hold_mean": 6.1172, "hold_min": 3.6829, "line_breaks": 0.5302, "max_x": 67.7207, "n_centros": 0.1108, "n_events": 5.7723, "n_involved": 1.7879, "n_passes": 2.7913, "opt_quality_mean": -0.0286, "paredes": 0.2096, "pass_options_mean": 8.9674, "passes_behind_line": 0.1447, "pct_adentro": 0.4847, "pct_afuera": 0.4293, "pct_cortos": 0.3833, "pct_headpass": 0.0536, "pct_largos": 0.252, "pct_launch": 0.1188, "pct_layoff": 0.0089, "pct_medios": 0.2798, "pct_switch": 0.0054, "pct_through": 0.0017, "pct_verticales": 0.5119, "pelotazos_espalda": 0.116, "press_final": 2.5882, "press_media": 1.8627, "prog_x": 25.8824, "start_x": 43.0024, "starts_from_dispossess": 0.0418, "takeons_ok": 0.0393, "tempo": 0.3857, "transition_speed": 4.0769, "verticalidad_media": 0.3633}, "Go Ahead Eagles": {"atk_l": 41.6986, "atk_w": 32.1865, "ball_distance": 132.4466, "behind_line_ok": 0.0612, "broke_last_line": 0.0398, "broke_second_last": 0.1655, "cross_pvadded_max": 0.0016, "dang_runs": 0.1689, "deep_completions": 0.3486, "def_h": 31.7221, "dribbles_box": 0.0081, "dribbles_last_third": 0.0402, "duration_s": 26.4668, "hold_max": 10.5637, "hold_mean": 6.237, "hold_min": 3.6774, "line_breaks": 0.6646, "max_x": 68.698, "n_centros": 0.159, "n_events": 5.4793, "n_involved": 1.8465, "n_passes": 3.2138, "opt_quality_mean": 0.0536, "paredes": 0.2749, "pass_options_mean": 8.6124, "passes_behind_line": 0.148, "pct_adentro": 0.4997, "pct_afuera": 0.4223, "pct_cortos": 0.3732, "pct_headpass": 0.0437, "pct_largos": 0.2424, "pct_launch": 0.0921, "pct_layoff": 0.0105, "pct_medios": 0.3075, "pct_switch": 0.0036, "pct_through": 0.0037, "pct_verticales": 0.4697, "pelotazos_espalda": 0.1074, "press_final": 2.408, "press_media": 1.7989, "prog_x": 25.8022, "start_x": 43.8101, "starts_from_dispossess": 0.034, "takeons_ok": 0.042, "tempo": 0.3912, "transition_speed": 3.7385, "verticalidad_media": 0.2998}, "Groningen": {"atk_l": 39.474, "atk_w": 31.3428, "ball_distance": 105.9987, "behind_line_ok": 0.0445, "broke_last_line": 0.0283, "broke_second_last": 0.1749, "cross_pvadded_max": 0.0015, "dang_runs": 0.1285, "deep_completions": 0.3222, "def_h": 30.7954, "dribbles_box": 0.01, "dribbles_last_third": 0.0548, "duration_s": 26.3432, "hold_max": 9.4054, "hold_mean": 5.5962, "hold_min": 3.3954, "line_breaks": 0.5416, "max_x": 69.5537, "n_centros": 0.1194, "n_events": 5.4702, "n_involved": 1.8079, "n_passes": 3.0266, "opt_quality_mean": 0.0507, "paredes": 0.2432, "pass_options_mean": 8.4871, "passes_behind_line": 0.1204, "pct_adentro": 0.5293, "pct_afuera": 0.3823, "pct_cortos": 0.3669, "pct_headpass": 0.0526, "pct_largos": 0.2045, "pct_launch": 0.0894, "pct_layoff": 0.0104, "pct_medios": 0.3415, "pct_switch": 0.0032, "pct_through": 0.0025, "pct_verticales": 0.4975, "pelotazos_espalda": 0.0923, "press_final": 2.5409, "press_media": 1.8676, "prog_x": 24.1054, "start_x": 46.692, "starts_from_dispossess": 0.0397, "takeons_ok": 0.0411, "tempo": 0.3728, "transition_speed": 3.4604, "verticalidad_media": 0.342}, "Heerenveen": {"atk_l": 40.9851, "atk_w": 32.4041, "ball_distance": 121.6853, "behind_line_ok": 0.0544, "broke_last_line": 0.044, "broke_second_last": 0.1778, "cross_pvadded_max": 0.0007, "dang_runs": 0.1591, "deep_completions": 0.3861, "def_h": 32.0774, "dribbles_box": 0.0119, "dribbles_last_third": 0.0576, "duration_s": 21.8738, "hold_max": 9.8659, "hold_mean": 5.4014, "hold_min": 2.9893, "line_breaks": 0.7347, "max_x": 68.4216, "n_centros": 0.1127, "n_events": 5.2052, "n_involved": 1.8809, "n_passes": 3.221, "opt_quality_mean": 0.0598, "paredes": 0.2755, "pass_options_mean": 8.597, "passes_behind_line": 0.127, "pct_adentro": 0.493, "pct_afuera": 0.4219, "pct_cortos": 0.3915, "pct_headpass": 0.0475, "pct_largos": 0.2009, "pct_launch": 0.0898, "pct_layoff": 0.0117, "pct_medios": 0.323, "pct_switch": 0.005, "pct_through": 0.0036, "pct_verticales": 0.4793, "pelotazos_espalda": 0.0907, "press_final": 2.6336, "press_media": 1.9215, "prog_x": 25.163, "start_x": 44.4848, "starts_from_dispossess": 0.047, "takeons_ok": 0.0542, "tempo": 0.4013, "transition_speed": 3.744, "verticalidad_media": 0.32}, "Heracles": {"atk_l": 39.667, "atk_w": 32.0924, "ball_distance": 100.5334, "behind_line_ok": 0.0534, "broke_last_line": 0.0287, "broke_second_last": 0.1544, "cross_pvadded_max": 0.0015, "dang_runs": 0.1357, "deep_completions": 0.2784, "def_h": 31.7581, "dribbles_box": 0.0108, "dribbles_last_third": 0.0473, "duration_s": 30.369, "hold_max": 11.2519, "hold_mean": 6.2751, "hold_min": 3.6674, "line_breaks": 0.4866, "max_x": 68.4476, "n_centros": 0.1321, "n_events": 5.6247, "n_involved": 1.749, "n_passes": 2.8095, "opt_quality_mean": 0.0124, "paredes": 0.2185, "pass_options_mean": 8.8877, "passes_behind_line": 0.1414, "pct_adentro": 0.5103, "pct_afuera": 0.3965, "pct_cortos": 0.3615, "pct_headpass": 0.0582, "pct_largos": 0.2337, "pct_launch": 0.1177, "pct_layoff": 0.0122, "pct_medios": 0.3121, "pct_switch": 0.0034, "pct_through": 0.002, "pct_verticales": 0.4927, "pelotazos_espalda": 0.1109, "press_final": 2.5824, "press_media": 1.8689, "prog_x": 25.5927, "start_x": 43.9918, "starts_from_dispossess": 0.0422, "takeons_ok": 0.0405, "tempo": 0.3828, "transition_speed": 3.9636, "verticalidad_media": 0.3414}, "NAC Breda": {"atk_l": 39.9746, "atk_w": 31.1036, "ball_distance": 100.2201, "behind_line_ok": 0.046, "broke_last_line": 0.0246, "broke_second_last": 0.1643, "cross_pvadded_max": 0.0018, "dang_runs": 0.1466, "deep_completions": 0.3071, "def_h": 31.5099, "dribbles_box": 0.009, "dribbles_last_third": 0.0473, "duration_s": 27.1994, "hold_max": 10.1391, "hold_mean": 6.1214, "hold_min": 3.7467, "line_breaks": 0.6201, "max_x": 68.0336, "n_centros": 0.1442, "n_events": 5.4413, "n_involved": 1.8254, "n_passes": 2.8919, "opt_quality_mean": 0.0655, "paredes": 0.2082, "pass_options_mean": 8.6516, "passes_behind_line": 0.1102, "pct_adentro": 0.5241, "pct_afuera": 0.3963, "pct_cortos": 0.3705, "pct_headpass": 0.0571, "pct_largos": 0.2196, "pct_launch": 0.0941, "pct_layoff": 0.01, "pct_medios": 0.3312, "pct_switch": 0.0049, "pct_through": 0.0015, "pct_verticales": 0.4926, "pelotazos_espalda": 0.0794, "press_final": 2.6305, "press_media": 1.9485, "prog_x": 23.5085, "start_x": 45.4867, "starts_from_dispossess": 0.0443, "takeons_ok": 0.0424, "tempo": 0.3958, "transition_speed": 3.8261, "verticalidad_media": 0.3433}, "NEC": {"atk_l": 40.9032, "atk_w": 31.2001, "ball_distance": 96.4232, "behind_line_ok": 0.0444, "broke_last_line": 0.0304, "broke_second_last": 0.15, "cross_pvadded_max": 0.0012, "dang_runs": 0.1523, "deep_completions": 0.4231, "def_h": 29.2412, "dribbles_box": 0.0164, "dribbles_last_third": 0.0619, "duration_s": 22.7817, "hold_max": 9.6934, "hold_mean": 5.6947, "hold_min": 3.3855, "line_breaks": 0.5252, "max_x": 70.7215, "n_centros": 0.1272, "n_events": 5.0955, "n_involved": 1.7566, "n_passes": 2.8703, "opt_quality_mean": 0.1336, "paredes": 0.2697, "pass_options_mean": 8.7668, "passes_behind_line": 0.1169, "pct_adentro": 0.4948, "pct_afuera": 0.4063, "pct_cortos": 0.3759, "pct_headpass": 0.0464, "pct_largos": 0.2155, "pct_launch": 0.1005, "pct_layoff": 0.0119, "pct_medios": 0.3108, "pct_switch": 0.0036, "pct_through": 0.0037, "pct_verticales": 0.4851, "pelotazos_espalda": 0.0879, "press_final": 2.4889, "press_media": 1.8657, "prog_x": 24.0096, "start_x": 47.9606, "starts_from_dispossess": 0.0429, "takeons_ok": 0.0555, "tempo": 0.3757, "transition_speed": 3.6519, "verticalidad_media": 0.3277}, "PEC Zwolle": {"atk_l": 40.2951, "atk_w": 31.5238, "ball_distance": 115.466, "behind_line_ok": 0.0483, "broke_last_line": 0.0288, "broke_second_last": 0.1486, "cross_pvadded_max": 0.0009, "dang_runs": 0.1452, "deep_completions": 0.2723, "def_h": 34.2, "dribbles_box": 0.0084, "dribbles_last_third": 0.0443, "duration_s": 28.0534, "hold_max": 10.2778, "hold_mean": 5.9081, "hold_min": 3.4512, "line_breaks": 0.6694, "max_x": 65.0154, "n_centros": 0.0788, "n_events": 5.5677, "n_involved": 1.8174, "n_passes": 2.9662, "opt_quality_mean": -0.078, "paredes": 0.2585, "pass_options_mean": 8.6879, "passes_behind_line": 0.1334, "pct_adentro": 0.4818, "pct_afuera": 0.4343, "pct_cortos": 0.3767, "pct_headpass": 0.0467, "pct_largos": 0.2242, "pct_launch": 0.0911, "pct_layoff": 0.0121, "pct_medios": 0.3155, "pct_switch": 0.0047, "pct_through": 0.0043, "pct_verticales": 0.5026, "pelotazos_espalda": 0.1022, "press_final": 2.5492, "press_media": 1.8493, "prog_x": 24.7779, "start_x": 41.0791, "starts_from_dispossess": 0.0453, "takeons_ok": 0.0407, "tempo": 0.3894, "transition_speed": 3.839, "verticalidad_media": 0.3489}, "PSV": {"atk_l": 43.0462, "atk_w": 31.4125, "ball_distance": 173.0262, "behind_line_ok": 0.0637, "broke_last_line": 0.0575, "broke_second_last": 0.2157, "cross_pvadded_max": 0.0024, "dang_runs": 0.2318, "deep_completions": 0.525, "def_h": 30.5096, "dribbles_box": 0.0183, "dribbles_last_third": 0.0646, "duration_s": 29.6871, "hold_max": 9.3372, "hold_mean": 5.1219, "hold_min": 2.887, "line_breaks": 0.992, "max_x": 69.6166, "n_centros": 0.1389, "n_events": 6.4503, "n_involved": 2.075, "n_passes": 4.0132, "opt_quality_mean": 0.1324, "paredes": 0.44, "pass_options_mean": 9.136, "passes_behind_line": 0.1192, "pct_adentro": 0.5119, "pct_afuera": 0.4094, "pct_cortos": 0.4274, "pct_headpass": 0.0429, "pct_largos": 0.1634, "pct_launch": 0.0438, "pct_layoff": 0.015, "pct_medios": 0.3319, "pct_switch": 0.0028, "pct_through": 0.005, "pct_verticales": 0.4319, "pelotazos_espalda": 0.0717, "press_final": 2.5042, "press_media": 1.9267, "prog_x": 23.9837, "start_x": 46.5127, "starts_from_dispossess": 0.0463, "takeons_ok": 0.0621, "tempo": 0.3945, "transition_speed": 2.8831, "verticalidad_media": 0.2607}, "Sparta Rotterdam": {"atk_l": 41.9963, "atk_w": 33.034, "ball_distance": 128.4496, "behind_line_ok": 0.0529, "broke_last_line": 0.0267, "broke_second_last": 0.1638, "cross_pvadded_max": 0.0017, "dang_runs": 0.1618, "deep_completions": 0.3147, "def_h": 32.2532, "dribbles_box": 0.0111, "dribbles_last_third": 0.0525, "duration_s": 23.2664, "hold_max": 9.7443, "hold_mean": 5.6355, "hold_min": 3.2093, "line_breaks": 0.6356, "max_x": 68.6464, "n_centros": 0.1307, "n_events": 5.2069, "n_involved": 1.8574, "n_passes": 3.0944, "opt_quality_mean": 0.0184, "paredes": 0.2556, "pass_options_mean": 8.8205, "passes_behind_line": 0.1284, "pct_adentro": 0.4843, "pct_afuera": 0.4218, "pct_cortos": 0.3446, "pct_headpass": 0.0523, "pct_largos": 0.2335, "pct_launch": 0.0896, "pct_layoff": 0.0134, "pct_medios": 0.3302, "pct_switch": 0.0041, "pct_through": 0.0038, "pct_verticales": 0.4839, "pelotazos_espalda": 0.0925, "press_final": 2.3586, "press_media": 1.742, "prog_x": 26.3876, "start_x": 43.3503, "starts_from_dispossess": 0.0413, "takeons_ok": 0.0472, "tempo": 0.3915, "transition_speed": 4.1741, "verticalidad_media": 0.3302}, "Telstar": {"atk_l": 41.0359, "atk_w": 32.7217, "ball_distance": 92.5271, "behind_line_ok": 0.0548, "broke_last_line": 0.0324, "broke_second_last": 0.146, "cross_pvadded_max": 0.0014, "dang_runs": 0.1623, "deep_completions": 0.3199, "def_h": 32.1956, "dribbles_box": 0.0084, "dribbles_last_third": 0.0441, "duration_s": 27.1073, "hold_max": 10.1741, "hold_mean": 5.9347, "hold_min": 3.4595, "line_breaks": 0.4759, "max_x": 67.5929, "n_centros": 0.1146, "n_events": 5.1994, "n_involved": 1.7444, "n_passes": 2.727, "opt_quality_mean": 0.0329, "paredes": 0.1874, "pass_options_mean": 9.0746, "passes_behind_line": 0.1298, "pct_adentro": 0.4964, "pct_afuera": 0.4133, "pct_cortos": 0.3528, "pct_headpass": 0.0442, "pct_largos": 0.2317, "pct_launch": 0.1009, "pct_layoff": 0.0098, "pct_medios": 0.3259, "pct_switch": 0.0044, "pct_through": 0.0026, "pct_verticales": 0.4821, "pelotazos_espalda": 0.0956, "press_final": 2.3797, "press_media": 1.7841, "prog_x": 25.5021, "start_x": 43.2324, "starts_from_dispossess": 0.0402, "takeons_ok": 0.0386, "tempo": 0.3838, "transition_speed": 3.9591, "verticalidad_media": 0.3325}, "Twente": {"atk_l": 40.5738, "atk_w": 32.2377, "ball_distance": 108.3872, "behind_line_ok": 0.0511, "broke_last_line": 0.0329, "broke_second_last": 0.1944, "cross_pvadded_max": 0.0007, "dang_runs": 0.1672, "deep_completions": 0.4161, "def_h": 30.9144, "dribbles_box": 0.0153, "dribbles_last_third": 0.0653, "duration_s": 27.8134, "hold_max": 9.4198, "hold_mean": 5.5697, "hold_min": 3.349, "line_breaks": 0.6343, "max_x": 69.2383, "n_centros": 0.1086, "n_events": 5.7627, "n_involved": 1.8813, "n_passes": 3.2306, "opt_quality_mean": 0.1147, "paredes": 0.2589, "pass_options_mean": 9.1501, "passes_behind_line": 0.1154, "pct_adentro": 0.5078, "pct_afuera": 0.4034, "pct_cortos": 0.3899, "pct_headpass": 0.0515, "pct_largos": 0.199, "pct_launch": 0.0917, "pct_layoff": 0.0084, "pct_medios": 0.3238, "pct_switch": 0.0075, "pct_through": 0.0029, "pct_verticales": 0.4609, "pelotazos_espalda": 0.0817, "press_final": 2.601, "press_media": 1.9718, "prog_x": 23.724, "start_x": 46.9121, "starts_from_dispossess": 0.0484, "takeons_ok": 0.0465, "tempo": 0.391, "transition_speed": 3.5187, "verticalidad_media": 0.3137}, "Utrecht": {"atk_l": 39.5641, "atk_w": 31.2863, "ball_distance": 116.1662, "behind_line_ok": 0.0435, "broke_last_line": 0.0272, "broke_second_last": 0.1524, "cross_pvadded_max": 0.0019, "dang_runs": 0.143, "deep_completions": 0.295, "def_h": 32.3755, "dribbles_box": 0.0127, "dribbles_last_third": 0.0571, "duration_s": 35.3458, "hold_max": 10.1228, "hold_mean": 5.9017, "hold_min": 3.4989, "line_breaks": 0.6105, "max_x": 66.7877, "n_centros": 0.133, "n_events": 6.189, "n_involved": 1.8739, "n_passes": 3.0371, "opt_quality_mean": 0.0328, "paredes": 0.2408, "pass_options_mean": 8.8992, "passes_behind_line": 0.1099, "pct_adentro": 0.4966, "pct_afuera": 0.4127, "pct_cortos": 0.3735, "pct_headpass": 0.0578, "pct_largos": 0.2157, "pct_launch": 0.092, "pct_layoff": 0.0115, "pct_medios": 0.3212, "pct_switch": 0.0042, "pct_through": 0.0034, "pct_verticales": 0.4832, "pelotazos_espalda": 0.0812, "press_final": 2.5642, "press_media": 1.9456, "prog_x": 24.3272, "start_x": 43.7637, "starts_from_dispossess": 0.0449, "takeons_ok": 0.0442, "tempo": 0.3779, "transition_speed": 3.5824, "verticalidad_media": 0.3406}, "Volendam": {"atk_l": 41.6441, "atk_w": 32.7758, "ball_distance": 111.9294, "behind_line_ok": 0.0475, "broke_last_line": 0.022, "broke_second_last": 0.1388, "cross_pvadded_max": 0.0011, "dang_runs": 0.1282, "deep_completions": 0.2795, "def_h": 33.3596, "dribbles_box": 0.0097, "dribbles_last_third": 0.0529, "duration_s": 25.9534, "hold_max": 10.123, "hold_mean": 6.177, "hold_min": 3.9624, "line_breaks": 0.5563, "max_x": 66.5799, "n_centros": 0.1134, "n_events": 5.2432, "n_involved": 1.7365, "n_passes": 2.8852, "opt_quality_mean": -0.0224, "paredes": 0.2099, "pass_options_mean": 8.9443, "passes_behind_line": 0.1464, "pct_adentro": 0.4915, "pct_afuera": 0.4219, "pct_cortos": 0.3562, "pct_headpass": 0.0407, "pct_largos": 0.2363, "pct_launch": 0.1084, "pct_layoff": 0.0109, "pct_medios": 0.3215, "pct_switch": 0.0048, "pct_through": 0.0026, "pct_verticales": 0.5048, "pelotazos_espalda": 0.1138, "press_final": 2.5962, "press_media": 1.8263, "prog_x": 26.6502, "start_x": 40.8633, "starts_from_dispossess": 0.0464, "takeons_ok": 0.0479, "tempo": 0.3551, "transition_speed": 3.6663, "verticalidad_media": 0.3479}}, "team_eje_norm_gen": {"AZ": {"eje_verticalidad": -0.1034, "eje_elaboracion": 0.0464, "eje_individual": 0.0301, "eje_rotura_lineas": 0.0185, "eje_amplitud_centro": -0.022, "eje_profundidad_espalda": 0.0139, "eje_robo_alto": 0.0146, "eje_aereo_segunda": -0.0188}, "Ajax": {"eje_verticalidad": -0.1331, "eje_elaboracion": 0.1426, "eje_individual": 0.0312, "eje_rotura_lineas": 0.0493, "eje_amplitud_centro": -0.0027, "eje_profundidad_espalda": -0.0045, "eje_robo_alto": -0.0136, "eje_aereo_segunda": -0.0417}, "Excelsior": {"eje_verticalidad": 0.0359, "eje_elaboracion": -0.0554, "eje_individual": -0.0045, "eje_rotura_lineas": -0.0369, "eje_amplitud_centro": 0.0142, "eje_profundidad_espalda": -0.0244, "eje_robo_alto": -0.0455, "eje_aereo_segunda": 0.0504}, "Feyenoord": {"eje_verticalidad": -0.0985, "eje_elaboracion": 0.0469, "eje_individual": 0.0696, "eje_rotura_lineas": 0.0319, "eje_amplitud_centro": 0.0048, "eje_profundidad_espalda": 0.0274, "eje_robo_alto": 0.0631, "eje_aereo_segunda": -0.0448}, "Fortuna Sittard": {"eje_verticalidad": 0.0641, "eje_elaboracion": -0.0311, "eje_individual": -0.0385, "eje_rotura_lineas": -0.0451, "eje_amplitud_centro": 0.0109, "eje_profundidad_espalda": 0.0061, "eje_robo_alto": -0.0364, "eje_aereo_segunda": 0.0326}, "Go Ahead Eagles": {"eje_verticalidad": -0.0151, "eje_elaboracion": 0.0043, "eje_individual": -0.0291, "eje_rotura_lineas": 0.0172, "eje_amplitud_centro": 0.0407, "eje_profundidad_espalda": 0.0405, "eje_robo_alto": -0.0404, "eje_aereo_segunda": -0.0146}, "Groningen": {"eje_verticalidad": -0.0146, "eje_elaboracion": -0.0245, "eje_individual": -0.0231, "eje_rotura_lineas": -0.0126, "eje_amplitud_centro": -0.0396, "eje_profundidad_espalda": -0.0184, "eje_robo_alto": 0.0272, "eje_aereo_segunda": -0.0004}, "Heerenveen": {"eje_verticalidad": -0.0312, "eje_elaboracion": 0.0147, "eje_individual": 0.007, "eje_rotura_lineas": 0.0372, "eje_amplitud_centro": 0.003, "eje_profundidad_espalda": 0.0152, "eje_robo_alto": 0.004, "eje_aereo_segunda": -0.003}, "Heracles": {"eje_verticalidad": 0.0188, "eje_elaboracion": -0.05, "eje_individual": -0.0277, "eje_rotura_lineas": -0.0332, "eje_amplitud_centro": -0.0122, "eje_profundidad_espalda": 0.0088, "eje_robo_alto": -0.0169, "eje_aereo_segunda": 0.0597}, "NAC Breda": {"eje_verticalidad": 0.01, "eje_elaboracion": -0.0436, "eje_individual": -0.0262, "eje_rotura_lineas": -0.0219, "eje_amplitud_centro": 0.0106, "eje_profundidad_espalda": -0.04, "eje_robo_alto": 0.016, "eje_aereo_segunda": 0.0127}, "NEC": {"eje_verticalidad": -0.0194, "eje_elaboracion": -0.0222, "eje_individual": 0.0205, "eje_rotura_lineas": -0.0203, "eje_amplitud_centro": -0.0061, "eje_profundidad_espalda": 0.0062, "eje_robo_alto": 0.0587, "eje_aereo_segunda": 0.01}, "PEC Zwolle": {"eje_verticalidad": 0.0192, "eje_elaboracion": -0.0158, "eje_individual": -0.0327, "eje_rotura_lineas": -0.0051, "eje_amplitud_centro": -0.0213, "eje_profundidad_espalda": -0.0119, "eje_robo_alto": -0.0635, "eje_aereo_segunda": -0.001}, "PSV": {"eje_verticalidad": -0.1512, "eje_elaboracion": 0.1577, "eje_individual": 0.0578, "eje_rotura_lineas": 0.1139, "eje_amplitud_centro": 0.0027, "eje_profundidad_espalda": 0.0461, "eje_robo_alto": 0.04, "eje_aereo_segunda": -0.0563}, "Sparta Rotterdam": {"eje_verticalidad": 0.0148, "eje_elaboracion": -0.0319, "eje_individual": -0.0068, "eje_rotura_lineas": -0.0051, "eje_amplitud_centro": 0.0151, "eje_profundidad_espalda": -0.0059, "eje_robo_alto": -0.0312, "eje_aereo_segunda": 0.0162}, "Telstar": {"eje_verticalidad": 0.0064, "eje_elaboracion": -0.0746, "eje_individual": -0.0302, "eje_rotura_lineas": -0.031, "eje_amplitud_centro": -0.0073, "eje_profundidad_espalda": 0.0015, "eje_robo_alto": -0.0359, "eje_aereo_segunda": -0.0056}, "Twente": {"eje_verticalidad": -0.0558, "eje_elaboracion": 0.0117, "eje_individual": 0.0161, "eje_rotura_lineas": 0.0173, "eje_amplitud_centro": -0.0014, "eje_profundidad_espalda": 0.0048, "eje_robo_alto": 0.0526, "eje_aereo_segunda": -0.0111}, "Utrecht": {"eje_verticalidad": -0.0147, "eje_elaboracion": -0.0151, "eje_individual": -0.0074, "eje_rotura_lineas": -0.016, "eje_amplitud_centro": 0.0098, "eje_profundidad_espalda": -0.045, "eje_robo_alto": -0.0146, "eje_aereo_segunda": 0.0201}, "Volendam": {"eje_verticalidad": 0.0234, "eje_elaboracion": -0.0537, "eje_individual": -0.0183, "eje_rotura_lineas": -0.0417, "eje_amplitud_centro": 0.0026, "eje_profundidad_espalda": 0.0089, "eje_robo_alto": -0.065, "eje_aereo_segunda": 0.0038}}, "team_eje_norm_con": {"AZ": {"eje_verticalidad": -0.0169, "eje_elaboracion": -0.017, "eje_individual": 0.0241, "eje_rotura_lineas": -0.0149, "eje_amplitud_centro": 0.0248, "eje_profundidad_espalda": -0.0089, "eje_robo_alto": 0.0071, "eje_aereo_segunda": 0.0009}, "Ajax": {"eje_verticalidad": -0.0509, "eje_elaboracion": 0.0119, "eje_individual": -0.0079, "eje_rotura_lineas": -0.0027, "eje_amplitud_centro": 0.0009, "eje_profundidad_espalda": 0.0017, "eje_robo_alto": 0.0222, "eje_aereo_segunda": 0.0021}, "Excelsior": {"eje_verticalidad": -0.029, "eje_elaboracion": 0.0083, "eje_individual": 0.0021, "eje_rotura_lineas": 0.0216, "eje_amplitud_centro": -0.0109, "eje_profundidad_espalda": 0.0078, "eje_robo_alto": -0.0072, "eje_aereo_segunda": -0.0317}, "Feyenoord": {"eje_verticalidad": 0.0205, "eje_elaboracion": -0.0118, "eje_individual": -0.0235, "eje_rotura_lineas": -0.0165, "eje_amplitud_centro": -0.0134, "eje_profundidad_espalda": -0.0251, "eje_robo_alto": -0.0773, "eje_aereo_segunda": 0.0043}, "Fortuna Sittard": {"eje_verticalidad": -0.045, "eje_elaboracion": 0.023, "eje_individual": 0.0185, "eje_rotura_lineas": 0.0119, "eje_amplitud_centro": -0.0069, "eje_profundidad_espalda": 0.0275, "eje_robo_alto": 0.0255, "eje_aereo_segunda": -0.0065}, "Go Ahead Eagles": {"eje_verticalidad": -0.0452, "eje_elaboracion": -0.0021, "eje_individual": -0.0055, "eje_rotura_lineas": -0.0065, "eje_amplitud_centro": 0.0229, "eje_profundidad_espalda": 0.0002, "eje_robo_alto": 0.0153, "eje_aereo_segunda": -0.0033}, "Groningen": {"eje_verticalidad": 0.008, "eje_elaboracion": -0.0182, "eje_individual": -0.0078, "eje_rotura_lineas": 0.0089, "eje_amplitud_centro": -0.0024, "eje_profundidad_espalda": -0.0073, "eje_robo_alto": -0.0599, "eje_aereo_segunda": 0.0449}, "Heerenveen": {"eje_verticalidad": -0.0189, "eje_elaboracion": -0.0077, "eje_individual": -0.0153, "eje_rotura_lineas": -0.0055, "eje_amplitud_centro": -0.0066, "eje_profundidad_espalda": -0.0366, "eje_robo_alto": -0.021, "eje_aereo_segunda": 0.0026}, "Heracles": {"eje_verticalidad": -0.0416, "eje_elaboracion": 0.0333, "eje_individual": 0.0126, "eje_rotura_lineas": 0.0252, "eje_amplitud_centro": 0.0114, "eje_profundidad_espalda": 0.0271, "eje_robo_alto": 0.0229, "eje_aereo_segunda": -0.0227}, "NAC Breda": {"eje_verticalidad": -0.0068, "eje_elaboracion": 0.0069, "eje_individual": 0.0004, "eje_rotura_lineas": 0.0034, "eje_amplitud_centro": 0.0, "eje_profundidad_espalda": -0.0058, "eje_robo_alto": -0.0142, "eje_aereo_segunda": 0.0145}, "NEC": {"eje_verticalidad": 0.1085, "eje_elaboracion": -0.1096, "eje_individual": -0.033, "eje_rotura_lineas": -0.0466, "eje_amplitud_centro": -0.0259, "eje_profundidad_espalda": 0.0024, "eje_robo_alto": -0.0791, "eje_aereo_segunda": 0.0721}, "PEC Zwolle": {"eje_verticalidad": -0.0956, "eje_elaboracion": 0.0238, "eje_individual": 0.0119, "eje_rotura_lineas": 0.0077, "eje_amplitud_centro": -0.004, "eje_profundidad_espalda": 0.0038, "eje_robo_alto": 0.0498, "eje_aereo_segunda": -0.0361}, "PSV": {"eje_verticalidad": 0.0175, "eje_elaboracion": -0.0495, "eje_individual": -0.0133, "eje_rotura_lineas": -0.0037, "eje_amplitud_centro": -0.0104, "eje_profundidad_espalda": -0.0041, "eje_robo_alto": -0.0435, "eje_aereo_segunda": -0.0016}, "Sparta Rotterdam": {"eje_verticalidad": -0.065, "eje_elaboracion": 0.0343, "eje_individual": 0.0141, "eje_rotura_lineas": 0.0025, "eje_amplitud_centro": 0.0223, "eje_profundidad_espalda": 0.0166, "eje_robo_alto": 0.0252, "eje_aereo_segunda": -0.0041}, "Telstar": {"eje_verticalidad": -0.0602, "eje_elaboracion": 0.0047, "eje_individual": 0.0108, "eje_rotura_lineas": 0.0112, "eje_amplitud_centro": 0.014, "eje_profundidad_espalda": 0.0126, "eje_robo_alto": 0.0149, "eje_aereo_segunda": -0.0159}, "Twente": {"eje_verticalidad": 0.0053, "eje_elaboracion": -0.0131, "eje_individual": -0.0137, "eje_rotura_lineas": -0.0146, "eje_amplitud_centro": 0.0099, "eje_profundidad_espalda": -0.0283, "eje_robo_alto": -0.0565, "eje_aereo_segunda": 0.0225}, "Utrecht": {"eje_verticalidad": -0.0666, "eje_elaboracion": 0.0507, "eje_individual": -0.0178, "eje_rotura_lineas": 0.0144, "eje_amplitud_centro": -0.017, "eje_profundidad_espalda": -0.0116, "eje_robo_alto": 0.0176, "eje_aereo_segunda": -0.0108}, "Volendam": {"eje_verticalidad": -0.0651, "eje_elaboracion": 0.0429, "eje_individual": 0.0344, "eje_rotura_lineas": 0.0225, "eje_amplitud_centro": -0.0063, "eje_profundidad_espalda": 0.056, "eje_robo_alto": 0.0705, "eje_aereo_segunda": -0.0252}}} \ No newline at end of file diff --git a/vendor/data/ejes/dutch-eredivisie/25-26/team_profiles.parquet b/vendor/data/ejes/dutch-eredivisie/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..5717cea74d37b48b73560e246e5271d078d83b87 --- /dev/null +++ b/vendor/data/ejes/dutch-eredivisie/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:296c02ab598bf94798cdc335ca85e4fc01b52ae839de406be5634c8c753e2870 +size 9613 diff --git a/vendor/data/ejes/ecuador-liga-pro/26/ejes_definition.json b/vendor/data/ejes/ecuador-liga-pro/26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/ecuador-liga-pro/26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/ecuador-liga-pro/26/match_team_ejes.parquet b/vendor/data/ejes/ecuador-liga-pro/26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..c589dd3eb3ee7c4b687dd2293e9702c3e0c4eac6 --- /dev/null +++ b/vendor/data/ejes/ecuador-liga-pro/26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00338952f69186091caf9563514f1b1781a1610a0db268c461ad8f1741a864dc +size 37710 diff --git a/vendor/data/ejes/ecuador-liga-pro/26/match_team_vars.parquet b/vendor/data/ejes/ecuador-liga-pro/26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..d37cb535931ce0a34829b6f1d649b3005a082df1 --- /dev/null +++ b/vendor/data/ejes/ecuador-liga-pro/26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21447659427d179241e40f5a0033b87fa8fa067137c10694ff90c0454e988d97 +size 135907 diff --git a/vendor/data/ejes/ecuador-liga-pro/26/predictor.json b/vendor/data/ejes/ecuador-liga-pro/26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..1352f7aaf9c69fdff3e8245f51445e48a2624c34 --- /dev/null +++ b/vendor/data/ejes/ecuador-liga-pro/26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.8785, "con": 0.4175, "intercept": 0.0076}, "elaboracion": {"gen": -0.149, "con": -0.1317, "intercept": 0.4864}, "individual": {"gen": -0.1169, "con": -0.1377, "intercept": 0.3498}, "rotura_lineas": {"gen": 0.8354, "con": 0.2495, "intercept": 0.0001}, "amplitud_centro": {"gen": -0.1428, "con": -0.1473, "intercept": 0.2868}, "profundidad_espalda": {"gen": -0.1444, "con": -0.1441, "intercept": 0.2224}, "robo_alto": {"gen": 0.2746, "con": 0.4253, "intercept": -0.0036}, "aereo_segunda": {"gen": 0.7074, "con": 0.3173, "intercept": 0.0}} \ No newline at end of file diff --git a/vendor/data/ejes/ecuador-liga-pro/26/scales.json b/vendor/data/ejes/ecuador-liga-pro/26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..cd903ce909278e27171ba294751c897279288d71 --- /dev/null +++ b/vendor/data/ejes/ecuador-liga-pro/26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 2.0982, "atk_w": 1.1794, "ball_distance": 57.8436, "behind_line_ok": 0.0314, "broke_last_line": 0.0182, "broke_second_last": 0.0522, "cross_pvadded_max": 0.021, "dang_runs": 0.077, "deep_completions": 7.7152, "def_h": 2.8131, "dribbles_box": 0.3778, "dribbles_last_third": 1.2586, "duration_s": 491.6272, "hold_max": 10.7473, "hold_mean": 1.4312, "hold_min": 1.3647, "line_breaks": 0.2609, "max_x": 4.5947, "n_centros": 3.4736, "n_events": 130.3644, "n_involved": 0.1836, "n_passes": 66.809, "opt_quality_mean": 0.1183, "paredes": 4.6347, "pass_options_mean": 2.3384, "passes_behind_line": 0.0541, "pct_adentro": 0.0411, "pct_afuera": 0.0388, "pct_cortos": 0.05, "pct_headpass": 0.013, "pct_largos": 0.0543, "pct_launch": 0.0343, "pct_layoff": 0.0041, "pct_medios": 0.0473, "pct_switch": 0.0049, "pct_through": 0.0037, "pct_verticales": 0.0577, "pelotazos_espalda": 0.0427, "press_final": 0.7071, "press_media": 0.4825, "prog_x": 6.7857, "start_x": 6.2112, "starts_from_dispossess": 0.0175, "takeons_ok": 1.0962, "tempo": 0.042, "transition_speed": 0.7671, "verticalidad_media": 0.0704}, "eje_sigma": {"eje_verticalidad": 0.1216, "eje_elaboracion": 4.2656, "eje_individual": 3.345, "eje_rotura_lineas": 0.0771, "eje_amplitud_centro": 2.5031, "eje_profundidad_espalda": 1.9377, "eje_robo_alto": 0.1292, "eje_aereo_segunda": 0.0658}, "eje_match_mean": {"eje_verticalidad": -0.0257, "eje_elaboracion": 0.3798, "eje_individual": 0.2788, "eje_rotura_lineas": -0.0014, "eje_amplitud_centro": 0.2223, "eje_profundidad_espalda": 0.1726, "eje_robo_alto": -0.012, "eje_aereo_segunda": -0.0009}, "eje_match_std": {"eje_verticalidad": 0.1472, "eje_elaboracion": 4.379, "eje_individual": 3.4366, "eje_rotura_lineas": 0.0904, "eje_amplitud_centro": 2.57, "eje_profundidad_espalda": 1.9894, "eje_robo_alto": 0.1348, "eje_aereo_segunda": 0.0725}, "team_var_norm": {"Aucas": {"atk_l": 42.2442, "atk_w": 34.3157, "ball_distance": 170.1746, "behind_line_ok": 0.0707, "broke_last_line": 0.0513, "broke_second_last": 0.1936, "cross_pvadded_max": 0.0014, "dang_runs": 0.138, "deep_completions": 0.466, "def_h": 29.6559, "dribbles_box": 0.0091, "dribbles_last_third": 0.0704, "duration_s": 30.2637, "hold_max": 11.5925, "hold_mean": 6.029, "hold_min": 3.5745, "line_breaks": 0.7994, "max_x": 70.6239, "n_centros": 0.1407, "n_events": 6.334, "n_involved": 2.0297, "n_passes": 3.9123, "opt_quality_mean": 0.0355, "paredes": 0.4066, "pass_options_mean": 8.1684, "passes_behind_line": 0.1288, "pct_adentro": 0.5041, "pct_afuera": 0.4197, "pct_cortos": 0.413, "pct_headpass": 0.0326, "pct_largos": 0.1735, "pct_launch": 0.0576, "pct_layoff": 0.0074, "pct_medios": 0.3381, "pct_switch": 0.0066, "pct_through": 0.0032, "pct_verticales": 0.4569, "pelotazos_espalda": 0.076, "press_final": 2.5832, "press_media": 1.7911, "prog_x": 26.8874, "start_x": 45.1052, "starts_from_dispossess": 0.0495, "takeons_ok": 0.0491, "tempo": 0.3764, "transition_speed": 3.1353, "verticalidad_media": 0.3082}, "Barcelona": {"atk_l": 39.7221, "atk_w": 34.0986, "ball_distance": 119.9785, "behind_line_ok": 0.0539, "broke_last_line": 0.0253, "broke_second_last": 0.1515, "cross_pvadded_max": 0.0006, "dang_runs": 0.1372, "deep_completions": 0.3486, "def_h": 29.1115, "dribbles_box": 0.0091, "dribbles_last_third": 0.0484, "duration_s": 36.6878, "hold_max": 10.3707, "hold_mean": 6.3228, "hold_min": 4.0956, "line_breaks": 0.4222, "max_x": 71.8109, "n_centros": 0.1649, "n_events": 6.2675, "n_involved": 1.836, "n_passes": 3.1789, "opt_quality_mean": 0.0822, "paredes": 0.2488, "pass_options_mean": 6.6962, "passes_behind_line": 0.1217, "pct_adentro": 0.5066, "pct_afuera": 0.4076, "pct_cortos": 0.3241, "pct_headpass": 0.05, "pct_largos": 0.2366, "pct_launch": 0.0815, "pct_layoff": 0.0052, "pct_medios": 0.3551, "pct_switch": 0.0036, "pct_through": 0.002, "pct_verticales": 0.5081, "pelotazos_espalda": 0.0803, "press_final": 1.9072, "press_media": 1.4108, "prog_x": 28.9541, "start_x": 44.2185, "starts_from_dispossess": 0.0416, "takeons_ok": 0.0431, "tempo": 0.3465, "transition_speed": 3.7492, "verticalidad_media": 0.3765}, "Delfín": {"atk_l": 40.5628, "atk_w": 34.007, "ball_distance": 63.844, "behind_line_ok": 0.0389, "broke_last_line": 0.0209, "broke_second_last": 0.106, "cross_pvadded_max": 0.0008, "dang_runs": 0.0565, "deep_completions": 0.1797, "def_h": 31.5925, "dribbles_box": 0.0059, "dribbles_last_third": 0.042, "duration_s": 34.1583, "hold_max": 12.4773, "hold_mean": 8.016, "hold_min": 5.462, "line_breaks": 0.2463, "max_x": 67.3233, "n_centros": 0.1093, "n_events": 5.2925, "n_involved": 1.5826, "n_passes": 2.1111, "opt_quality_mean": -0.1202, "paredes": 0.0964, "pass_options_mean": 6.2652, "passes_behind_line": 0.126, "pct_adentro": 0.4873, "pct_afuera": 0.417, "pct_cortos": 0.2816, "pct_headpass": 0.0507, "pct_largos": 0.3274, "pct_launch": 0.1172, "pct_layoff": 0.0039, "pct_medios": 0.2966, "pct_switch": 0.0045, "pct_through": 0.0013, "pct_verticales": 0.584, "pelotazos_espalda": 0.1101, "press_final": 2.4353, "press_media": 1.5827, "prog_x": 29.2103, "start_x": 39.4228, "starts_from_dispossess": 0.0414, "takeons_ok": 0.0401, "tempo": 0.3204, "transition_speed": 4.2969, "verticalidad_media": 0.4899}, "Deportivo Cuenca": {"atk_l": 42.2875, "atk_w": 34.9127, "ball_distance": 132.6774, "behind_line_ok": 0.0527, "broke_last_line": 0.0254, "broke_second_last": 0.1458, "cross_pvadded_max": 0.001, "dang_runs": 0.0519, "deep_completions": 0.2536, "def_h": 31.8092, "dribbles_box": 0.0041, "dribbles_last_third": 0.0414, "duration_s": 27.898, "hold_max": 10.9057, "hold_mean": 6.1051, "hold_min": 3.5114, "line_breaks": 0.4922, "max_x": 67.9814, "n_centros": 0.1381, "n_events": 5.6107, "n_involved": 1.8822, "n_passes": 3.3022, "opt_quality_mean": -0.078, "paredes": 0.3164, "pass_options_mean": 7.0, "passes_behind_line": 0.1236, "pct_adentro": 0.4978, "pct_afuera": 0.4054, "pct_cortos": 0.3616, "pct_headpass": 0.0338, "pct_largos": 0.2262, "pct_launch": 0.0853, "pct_layoff": 0.0081, "pct_medios": 0.3158, "pct_switch": 0.0064, "pct_through": 0.001, "pct_verticales": 0.4897, "pelotazos_espalda": 0.0925, "press_final": 1.9793, "press_media": 1.4054, "prog_x": 28.207, "start_x": 41.0465, "starts_from_dispossess": 0.0488, "takeons_ok": 0.0471, "tempo": 0.3567, "transition_speed": 3.5982, "verticalidad_media": 0.3608}, "Emelec": {"atk_l": 41.0822, "atk_w": 34.9152, "ball_distance": 107.9148, "behind_line_ok": 0.0546, "broke_last_line": 0.0258, "broke_second_last": 0.119, "cross_pvadded_max": 0.0089, "dang_runs": 0.1037, "deep_completions": 5.5572, "def_h": 30.1245, "dribbles_box": 0.3601, "dribbles_last_third": 1.0955, "duration_s": 365.8318, "hold_max": 19.2255, "hold_mean": 6.8731, "hold_min": 4.1977, "line_breaks": 0.4248, "max_x": 71.2848, "n_centros": 2.7685, "n_events": 100.0882, "n_involved": 1.7247, "n_passes": 46.2575, "opt_quality_mean": -0.0366, "paredes": 3.4617, "pass_options_mean": 7.2649, "passes_behind_line": 0.1264, "pct_adentro": 0.4973, "pct_afuera": 0.4142, "pct_cortos": 0.326, "pct_headpass": 0.0465, "pct_largos": 0.2542, "pct_launch": 0.0875, "pct_layoff": 0.0056, "pct_medios": 0.3326, "pct_switch": 0.0047, "pct_through": 0.0028, "pct_verticales": 0.5092, "pelotazos_espalda": 0.0913, "press_final": 2.1877, "press_media": 1.5857, "prog_x": 31.718, "start_x": 40.3641, "starts_from_dispossess": 0.0419, "takeons_ok": 1.048, "tempo": 0.3119, "transition_speed": 3.2331, "verticalidad_media": 0.3831}, "Guayaquil City": {"atk_l": 41.5714, "atk_w": 37.0959, "ball_distance": 183.5992, "behind_line_ok": 0.063, "broke_last_line": 0.0343, "broke_second_last": 0.1664, "cross_pvadded_max": 0.0008, "dang_runs": 0.0778, "deep_completions": 0.2536, "def_h": 32.8896, "dribbles_box": 0.0025, "dribbles_last_third": 0.0413, "duration_s": 24.686, "hold_max": 11.2274, "hold_mean": 6.3569, "hold_min": 3.7421, "line_breaks": 0.7656, "max_x": 66.5329, "n_centros": 0.0706, "n_events": 5.6671, "n_involved": 1.9964, "n_passes": 3.8405, "opt_quality_mean": -0.1392, "paredes": 0.3954, "pass_options_mean": 8.2893, "passes_behind_line": 0.184, "pct_adentro": 0.4901, "pct_afuera": 0.4359, "pct_cortos": 0.3724, "pct_headpass": 0.028, "pct_largos": 0.2047, "pct_launch": 0.0716, "pct_layoff": 0.0081, "pct_medios": 0.3496, "pct_switch": 0.0049, "pct_through": 0.0045, "pct_verticales": 0.4777, "pelotazos_espalda": 0.1474, "press_final": 2.7089, "press_media": 1.727, "prog_x": 27.1473, "start_x": 40.516, "starts_from_dispossess": 0.0414, "takeons_ok": 0.0366, "tempo": 0.3615, "transition_speed": 3.4231, "verticalidad_media": 0.3146}, "Independiente Valle": {"atk_l": 45.4535, "atk_w": 35.3846, "ball_distance": 115.6017, "behind_line_ok": 0.0575, "broke_last_line": 0.0433, "broke_second_last": 0.1536, "cross_pvadded_max": 0.0018, "dang_runs": 0.1366, "deep_completions": 0.4404, "def_h": 28.9391, "dribbles_box": 0.0088, "dribbles_last_third": 0.0563, "duration_s": 34.0856, "hold_max": 11.0668, "hold_mean": 6.0973, "hold_min": 3.5203, "line_breaks": 0.4612, "max_x": 71.7227, "n_centros": 0.1807, "n_events": 6.3364, "n_involved": 1.917, "n_passes": 3.6283, "opt_quality_mean": 0.0513, "paredes": 0.3192, "pass_options_mean": 6.7236, "passes_behind_line": 0.1182, "pct_adentro": 0.5115, "pct_afuera": 0.3971, "pct_cortos": 0.3268, "pct_headpass": 0.0347, "pct_largos": 0.2024, "pct_launch": 0.0684, "pct_layoff": 0.0063, "pct_medios": 0.3802, "pct_switch": 0.0079, "pct_through": 0.002, "pct_verticales": 0.4471, "pelotazos_espalda": 0.0779, "press_final": 2.1186, "press_media": 1.5219, "prog_x": 27.5204, "start_x": 45.8835, "starts_from_dispossess": 0.0467, "takeons_ok": 0.044, "tempo": 0.3505, "transition_speed": 3.1362, "verticalidad_media": 0.2988}, "LDU Quito": {"atk_l": 42.9398, "atk_w": 34.1293, "ball_distance": 92.8005, "behind_line_ok": 0.0516, "broke_last_line": 0.0393, "broke_second_last": 0.1423, "cross_pvadded_max": 0.0195, "dang_runs": 0.0683, "deep_completions": 5.8239, "def_h": 27.627, "dribbles_box": 0.1268, "dribbles_last_third": 0.6934, "duration_s": 379.7518, "hold_max": 17.8684, "hold_mean": 5.9533, "hold_min": 3.4687, "line_breaks": 0.4153, "max_x": 73.5075, "n_centros": 2.3236, "n_events": 92.5296, "n_involved": 1.8638, "n_passes": 52.4047, "opt_quality_mean": 0.1144, "paredes": 3.4385, "pass_options_mean": 6.5047, "passes_behind_line": 0.1025, "pct_adentro": 0.5283, "pct_afuera": 0.3882, "pct_cortos": 0.3461, "pct_headpass": 0.046, "pct_largos": 0.2064, "pct_launch": 0.0599, "pct_layoff": 0.0056, "pct_medios": 0.3647, "pct_switch": 0.0077, "pct_through": 0.0019, "pct_verticales": 0.4686, "pelotazos_espalda": 0.0686, "press_final": 1.8437, "press_media": 1.3602, "prog_x": 31.3262, "start_x": 43.6193, "starts_from_dispossess": 0.0325, "takeons_ok": 0.4494, "tempo": 0.3559, "transition_speed": 3.4035, "verticalidad_media": 0.3405}, "Leones": {"atk_l": 41.2534, "atk_w": 35.206, "ball_distance": 93.2271, "behind_line_ok": 0.045, "broke_last_line": 0.024, "broke_second_last": 0.1474, "cross_pvadded_max": 0.0008, "dang_runs": 0.0491, "deep_completions": 0.2424, "def_h": 31.9313, "dribbles_box": 0.0047, "dribbles_last_third": 0.0421, "duration_s": 22.7637, "hold_max": 11.8438, "hold_mean": 7.2159, "hold_min": 4.4841, "line_breaks": 0.4458, "max_x": 67.9208, "n_centros": 0.1063, "n_events": 4.8675, "n_involved": 1.6677, "n_passes": 2.6231, "opt_quality_mean": -0.1193, "paredes": 0.1761, "pass_options_mean": 7.366, "passes_behind_line": 0.1264, "pct_adentro": 0.4759, "pct_afuera": 0.4293, "pct_cortos": 0.3319, "pct_headpass": 0.0363, "pct_largos": 0.2438, "pct_launch": 0.0829, "pct_layoff": 0.009, "pct_medios": 0.3313, "pct_switch": 0.0076, "pct_through": 0.0025, "pct_verticales": 0.5345, "pelotazos_espalda": 0.1071, "press_final": 2.2841, "press_media": 1.5479, "prog_x": 28.0771, "start_x": 40.4866, "starts_from_dispossess": 0.0406, "takeons_ok": 0.036, "tempo": 0.3597, "transition_speed": 4.0657, "verticalidad_media": 0.4051}, "Libertad": {"atk_l": 42.8053, "atk_w": 35.3028, "ball_distance": 89.8673, "behind_line_ok": 0.0489, "broke_last_line": 0.0203, "broke_second_last": 0.1423, "cross_pvadded_max": 0.0005, "dang_runs": 0.0736, "deep_completions": 0.2898, "def_h": 31.588, "dribbles_box": 0.0106, "dribbles_last_third": 0.0459, "duration_s": 21.1738, "hold_max": 10.609, "hold_mean": 6.5875, "hold_min": 4.325, "line_breaks": 0.3909, "max_x": 68.4362, "n_centros": 0.1045, "n_events": 4.735, "n_involved": 1.7185, "n_passes": 2.8457, "opt_quality_mean": -0.1025, "paredes": 0.2277, "pass_options_mean": 6.826, "passes_behind_line": 0.1343, "pct_adentro": 0.5026, "pct_afuera": 0.4239, "pct_cortos": 0.3378, "pct_headpass": 0.0329, "pct_largos": 0.2377, "pct_launch": 0.0897, "pct_layoff": 0.0082, "pct_medios": 0.3527, "pct_switch": 0.0064, "pct_through": 0.0025, "pct_verticales": 0.5496, "pelotazos_espalda": 0.1077, "press_final": 2.2497, "press_media": 1.4703, "prog_x": 29.6154, "start_x": 39.9087, "starts_from_dispossess": 0.0383, "takeons_ok": 0.0527, "tempo": 0.3433, "transition_speed": 3.9227, "verticalidad_media": 0.4213}, "Macará": {"atk_l": 42.801, "atk_w": 34.8408, "ball_distance": 86.5091, "behind_line_ok": 0.0567, "broke_last_line": 0.0398, "broke_second_last": 0.1724, "cross_pvadded_max": 0.0006, "dang_runs": 0.0901, "deep_completions": 0.3578, "def_h": 29.6325, "dribbles_box": 0.0068, "dribbles_last_third": 0.0446, "duration_s": 24.8483, "hold_max": 10.6117, "hold_mean": 6.3269, "hold_min": 3.8665, "line_breaks": 0.4036, "max_x": 71.1711, "n_centros": 0.1475, "n_events": 5.1906, "n_involved": 1.7621, "n_passes": 2.8823, "opt_quality_mean": -0.0113, "paredes": 0.2227, "pass_options_mean": 6.9231, "passes_behind_line": 0.1185, "pct_adentro": 0.5159, "pct_afuera": 0.4097, "pct_cortos": 0.3312, "pct_headpass": 0.0343, "pct_largos": 0.2215, "pct_launch": 0.0988, "pct_layoff": 0.008, "pct_medios": 0.3743, "pct_switch": 0.0067, "pct_through": 0.0033, "pct_verticales": 0.5193, "pelotazos_espalda": 0.0827, "press_final": 2.1155, "press_media": 1.4988, "prog_x": 28.3734, "start_x": 43.6576, "starts_from_dispossess": 0.0364, "takeons_ok": 0.0437, "tempo": 0.3663, "transition_speed": 3.8876, "verticalidad_media": 0.3811}, "Manta": {"atk_l": 39.8888, "atk_w": 34.3345, "ball_distance": 68.4651, "behind_line_ok": 0.036, "broke_last_line": 0.019, "broke_second_last": 0.135, "cross_pvadded_max": 0.0005, "dang_runs": 0.0501, "deep_completions": 0.2554, "def_h": 30.5689, "dribbles_box": 0.0079, "dribbles_last_third": 0.0425, "duration_s": 33.8747, "hold_max": 12.0939, "hold_mean": 7.6402, "hold_min": 5.2906, "line_breaks": 0.2828, "max_x": 69.6475, "n_centros": 0.1373, "n_events": 5.7545, "n_involved": 1.6953, "n_passes": 2.6593, "opt_quality_mean": -0.0791, "paredes": 0.1815, "pass_options_mean": 6.1225, "passes_behind_line": 0.1117, "pct_adentro": 0.5062, "pct_afuera": 0.4069, "pct_cortos": 0.3272, "pct_headpass": 0.0483, "pct_largos": 0.2794, "pct_launch": 0.1089, "pct_layoff": 0.0066, "pct_medios": 0.307, "pct_switch": 0.0035, "pct_through": 0.0021, "pct_verticales": 0.5477, "pelotazos_espalda": 0.0874, "press_final": 2.1262, "press_media": 1.5229, "prog_x": 28.2674, "start_x": 42.6125, "starts_from_dispossess": 0.0378, "takeons_ok": 0.041, "tempo": 0.3379, "transition_speed": 3.9754, "verticalidad_media": 0.4423}, "Mushuc Runa": {"atk_l": 43.2685, "atk_w": 35.3298, "ball_distance": 111.3575, "behind_line_ok": 0.056, "broke_last_line": 0.0357, "broke_second_last": 0.1376, "cross_pvadded_max": 0.0012, "dang_runs": 0.0779, "deep_completions": 0.3198, "def_h": 29.7622, "dribbles_box": 0.0154, "dribbles_last_third": 0.062, "duration_s": 40.1604, "hold_max": 12.3949, "hold_mean": 7.0183, "hold_min": 4.2787, "line_breaks": 0.422, "max_x": 70.5764, "n_centros": 0.1551, "n_events": 6.1725, "n_involved": 1.7472, "n_passes": 2.9025, "opt_quality_mean": -0.0522, "paredes": 0.2385, "pass_options_mean": 7.1866, "passes_behind_line": 0.1405, "pct_adentro": 0.4951, "pct_afuera": 0.408, "pct_cortos": 0.3378, "pct_headpass": 0.0336, "pct_largos": 0.2564, "pct_launch": 0.0816, "pct_layoff": 0.0075, "pct_medios": 0.3109, "pct_switch": 0.0067, "pct_through": 0.0026, "pct_verticales": 0.512, "pelotazos_espalda": 0.1066, "press_final": 2.206, "press_media": 1.5296, "prog_x": 28.8616, "start_x": 43.021, "starts_from_dispossess": 0.039, "takeons_ok": 0.0557, "tempo": 0.3505, "transition_speed": 4.1998, "verticalidad_media": 0.3817}, "Orense": {"atk_l": 40.0448, "atk_w": 33.7855, "ball_distance": 94.0252, "behind_line_ok": 0.052, "broke_last_line": 0.0275, "broke_second_last": 0.1623, "cross_pvadded_max": 0.0005, "dang_runs": 0.0636, "deep_completions": 0.3, "def_h": 31.8701, "dribbles_box": 0.0061, "dribbles_last_third": 0.0419, "duration_s": 33.9668, "hold_max": 11.3277, "hold_mean": 6.5425, "hold_min": 4.0461, "line_breaks": 0.5447, "max_x": 67.3734, "n_centros": 0.114, "n_events": 6.1424, "n_involved": 1.8352, "n_passes": 3.2283, "opt_quality_mean": -0.0754, "paredes": 0.2756, "pass_options_mean": 6.8957, "passes_behind_line": 0.1139, "pct_adentro": 0.4983, "pct_afuera": 0.419, "pct_cortos": 0.3979, "pct_headpass": 0.036, "pct_largos": 0.2082, "pct_launch": 0.0779, "pct_layoff": 0.0112, "pct_medios": 0.3119, "pct_switch": 0.0048, "pct_through": 0.0036, "pct_verticales": 0.5043, "pelotazos_espalda": 0.0831, "press_final": 2.2122, "press_media": 1.593, "prog_x": 26.278, "start_x": 42.1241, "starts_from_dispossess": 0.0409, "takeons_ok": 0.0421, "tempo": 0.3545, "transition_speed": 3.4885, "verticalidad_media": 0.3597}, "Técnico Universitario": {"atk_l": 43.2209, "atk_w": 35.1505, "ball_distance": 88.9094, "behind_line_ok": 0.0468, "broke_last_line": 0.0297, "broke_second_last": 0.1416, "cross_pvadded_max": 0.0009, "dang_runs": 0.0812, "deep_completions": 0.2721, "def_h": 31.2719, "dribbles_box": 0.0092, "dribbles_last_third": 0.0537, "duration_s": 24.003, "hold_max": 11.6006, "hold_mean": 7.3592, "hold_min": 4.8674, "line_breaks": 0.4574, "max_x": 68.6737, "n_centros": 0.1387, "n_events": 4.9813, "n_involved": 1.7215, "n_passes": 2.6289, "opt_quality_mean": -0.072, "paredes": 0.2078, "pass_options_mean": 6.8598, "passes_behind_line": 0.12, "pct_adentro": 0.4801, "pct_afuera": 0.4003, "pct_cortos": 0.3314, "pct_headpass": 0.0296, "pct_largos": 0.2347, "pct_launch": 0.0727, "pct_layoff": 0.0057, "pct_medios": 0.3161, "pct_switch": 0.0073, "pct_through": 0.0015, "pct_verticales": 0.5186, "pelotazos_espalda": 0.0937, "press_final": 2.4708, "press_media": 1.6913, "prog_x": 29.0244, "start_x": 41.037, "starts_from_dispossess": 0.0449, "takeons_ok": 0.0509, "tempo": 0.3095, "transition_speed": 3.4739, "verticalidad_media": 0.4211}, "Universidad Católica": {"atk_l": 42.1768, "atk_w": 34.7792, "ball_distance": 157.9801, "behind_line_ok": 0.0621, "broke_last_line": 0.0447, "broke_second_last": 0.1859, "cross_pvadded_max": 0.001, "dang_runs": 0.1082, "deep_completions": 0.3344, "def_h": 29.7631, "dribbles_box": 0.0101, "dribbles_last_third": 0.0559, "duration_s": 34.0262, "hold_max": 11.2609, "hold_mean": 6.4849, "hold_min": 4.0077, "line_breaks": 0.8051, "max_x": 69.8873, "n_centros": 0.1393, "n_events": 6.2727, "n_involved": 1.9351, "n_passes": 3.5696, "opt_quality_mean": -0.0375, "paredes": 0.3036, "pass_options_mean": 7.9139, "passes_behind_line": 0.1326, "pct_adentro": 0.5223, "pct_afuera": 0.4066, "pct_cortos": 0.3737, "pct_headpass": 0.0298, "pct_largos": 0.2198, "pct_launch": 0.0707, "pct_layoff": 0.0061, "pct_medios": 0.3356, "pct_switch": 0.0059, "pct_through": 0.0045, "pct_verticales": 0.4739, "pelotazos_espalda": 0.0928, "press_final": 2.4393, "press_media": 1.699, "prog_x": 27.2479, "start_x": 43.7252, "starts_from_dispossess": 0.0367, "takeons_ok": 0.0467, "tempo": 0.3488, "transition_speed": 3.173, "verticalidad_media": 0.3222}}, "team_eje_norm_gen": {"Aucas": {"eje_verticalidad": -0.1516, "eje_elaboracion": 0.1244, "eje_individual": 0.0426, "eje_rotura_lineas": 0.0971, "eje_amplitud_centro": 0.0167, "eje_profundidad_espalda": 0.0419, "eje_robo_alto": 0.0619, "eje_aereo_segunda": -0.0425}, "Barcelona": {"eje_verticalidad": -0.0151, "eje_elaboracion": -0.0092, "eje_individual": 0.0142, "eje_rotura_lineas": -0.0201, "eje_amplitud_centro": 0.0037, "eje_profundidad_espalda": -0.0067, "eje_robo_alto": 0.0254, "eje_aereo_segunda": 0.0129}, "Delfín": {"eje_verticalidad": 0.1743, "eje_elaboracion": -0.1277, "eje_individual": -0.0272, "eje_rotura_lineas": -0.0819, "eje_amplitud_centro": -0.0221, "eje_profundidad_espalda": -0.0367, "eje_robo_alto": -0.0656, "eje_aereo_segunda": 0.0527}, "Deportivo Cuenca": {"eje_verticalidad": -0.0534, "eje_elaboracion": 0.0363, "eje_individual": -0.0266, "eje_rotura_lineas": -0.0215, "eje_amplitud_centro": 0.0001, "eje_profundidad_espalda": -0.0203, "eje_robo_alto": -0.0163, "eje_aereo_segunda": 0.002}, "Emelec": {"eje_verticalidad": -0.0222, "eje_elaboracion": 2.8213, "eje_individual": 2.9937, "eje_rotura_lineas": -0.0352, "eje_amplitud_centro": 1.8893, "eje_profundidad_espalda": 1.3257, "eje_robo_alto": -0.0467, "eje_aereo_segunda": 0.0158}, "Guayaquil City": {"eje_verticalidad": -0.1025, "eje_elaboracion": 0.0862, "eje_individual": -0.034, "eje_rotura_lineas": 0.0599, "eje_amplitud_centro": -0.0294, "eje_profundidad_espalda": 0.0804, "eje_robo_alto": -0.045, "eje_aereo_segunda": -0.0295}, "Independiente Valle": {"eje_verticalidad": -0.1461, "eje_elaboracion": 0.0295, "eje_individual": 0.0221, "eje_rotura_lineas": 0.0111, "eje_amplitud_centro": 0.0323, "eje_profundidad_espalda": 0.0159, "eje_robo_alto": 0.0696, "eje_aereo_segunda": -0.0315}, "LDU Quito": {"eje_verticalidad": -0.0966, "eje_elaboracion": 3.0635, "eje_individual": 1.3587, "eje_rotura_lineas": -0.0077, "eje_amplitud_centro": 1.5637, "eje_profundidad_espalda": 1.3537, "eje_robo_alto": -0.0089, "eje_aereo_segunda": -0.0213}, "Leones": {"eje_verticalidad": 0.0279, "eje_elaboracion": -0.0571, "eje_individual": -0.0367, "eje_rotura_lineas": -0.0191, "eje_amplitud_centro": 0.0066, "eje_profundidad_espalda": -0.0166, "eje_robo_alto": -0.0475, "eje_aereo_segunda": 0.011}, "Libertad": {"eje_verticalidad": 0.0467, "eje_elaboracion": -0.0296, "eje_individual": 0.007, "eje_rotura_lineas": -0.0342, "eje_amplitud_centro": -0.0066, "eje_profundidad_espalda": 0.0056, "eje_robo_alto": -0.0642, "eje_aereo_segunda": 0.0066}, "Macará": {"eje_verticalidad": -0.0082, "eje_elaboracion": -0.0318, "eje_individual": -0.0088, "eje_rotura_lineas": 0.0194, "eje_amplitud_centro": 0.0129, "eje_profundidad_espalda": -0.0017, "eje_robo_alto": 0.0017, "eje_aereo_segunda": 0.0203}, "Manta": {"eje_verticalidad": 0.083, "eje_elaboracion": -0.0495, "eje_individual": -0.0225, "eje_rotura_lineas": -0.0563, "eje_amplitud_centro": -0.0173, "eje_profundidad_espalda": -0.0499, "eje_robo_alto": -0.0144, "eje_aereo_segunda": 0.0555}, "Mushuc Runa": {"eje_verticalidad": 0.0161, "eje_elaboracion": -0.0108, "eje_individual": 0.0396, "eje_rotura_lineas": -0.0108, "eje_amplitud_centro": 0.0165, "eje_profundidad_espalda": 0.0241, "eje_robo_alto": -0.0039, "eje_aereo_segunda": -0.0071}, "Orense": {"eje_verticalidad": -0.0586, "eje_elaboracion": 0.05, "eje_individual": -0.0225, "eje_rotura_lineas": 0.0147, "eje_amplitud_centro": -0.015, "eje_profundidad_espalda": -0.0241, "eje_robo_alto": -0.016, "eje_aereo_segunda": 0.0194}, "Técnico Universitario": {"eje_verticalidad": -0.0094, "eje_elaboracion": -0.0463, "eje_individual": 0.0115, "eje_rotura_lineas": -0.0192, "eje_amplitud_centro": 0.0014, "eje_profundidad_espalda": -0.0231, "eje_robo_alto": -0.0262, "eje_aereo_segunda": -0.0411}, "Universidad Católica": {"eje_verticalidad": -0.0976, "eje_elaboracion": 0.0548, "eje_individual": 0.0196, "eje_rotura_lineas": 0.0921, "eje_amplitud_centro": -0.0013, "eje_profundidad_espalda": 0.0167, "eje_robo_alto": 0.0036, "eje_aereo_segunda": -0.0406}}, "team_eje_norm_con": {"Aucas": {"eje_verticalidad": -0.0145, "eje_elaboracion": -0.0345, "eje_individual": 0.0001, "eje_rotura_lineas": -0.0212, "eje_amplitud_centro": -0.006, "eje_profundidad_espalda": -0.0039, "eje_robo_alto": -0.0253, "eje_aereo_segunda": -0.0125}, "Barcelona": {"eje_verticalidad": 0.025, "eje_elaboracion": -0.0357, "eje_individual": -0.0092, "eje_rotura_lineas": -0.0184, "eje_amplitud_centro": 0.0047, "eje_profundidad_espalda": -0.0327, "eje_robo_alto": -0.0476, "eje_aereo_segunda": 0.0239}, "Delfín": {"eje_verticalidad": -0.07, "eje_elaboracion": 2.8845, "eje_individual": 2.9709, "eje_rotura_lineas": -0.0161, "eje_amplitud_centro": 1.8946, "eje_profundidad_espalda": 1.3469, "eje_robo_alto": -0.0218, "eje_aereo_segunda": -0.0175}, "Deportivo Cuenca": {"eje_verticalidad": -0.0346, "eje_elaboracion": 0.016, "eje_individual": 0.0494, "eje_rotura_lineas": 0.0079, "eje_amplitud_centro": 0.0079, "eje_profundidad_espalda": 0.0113, "eje_robo_alto": -0.0117, "eje_aereo_segunda": 0.001}, "Emelec": {"eje_verticalidad": -0.0609, "eje_elaboracion": 0.0281, "eje_individual": 0.0033, "eje_rotura_lineas": 0.0058, "eje_amplitud_centro": -0.0047, "eje_profundidad_espalda": -0.0138, "eje_robo_alto": 0.0225, "eje_aereo_segunda": -0.0055}, "Guayaquil City": {"eje_verticalidad": -0.0773, "eje_elaboracion": 0.0464, "eje_individual": 0.008, "eje_rotura_lineas": -0.01, "eje_amplitud_centro": 0.0524, "eje_profundidad_espalda": 0.0127, "eje_robo_alto": 0.0486, "eje_aereo_segunda": 0.0126}, "Independiente Valle": {"eje_verticalidad": 0.0585, "eje_elaboracion": -0.0187, "eje_individual": -0.0096, "eje_rotura_lineas": -0.0197, "eje_amplitud_centro": 0.0003, "eje_profundidad_espalda": -0.0493, "eje_robo_alto": -0.0929, "eje_aereo_segunda": 0.0273}, "LDU Quito": {"eje_verticalidad": 0.0407, "eje_elaboracion": -0.0315, "eje_individual": -0.0294, "eje_rotura_lineas": -0.0128, "eje_amplitud_centro": 0.0016, "eje_profundidad_espalda": 0.0039, "eje_robo_alto": -0.0524, "eje_aereo_segunda": -0.0089}, "Leones": {"eje_verticalidad": -0.053, "eje_elaboracion": 0.0228, "eje_individual": 0.0193, "eje_rotura_lineas": 0.0046, "eje_amplitud_centro": -0.013, "eje_profundidad_espalda": 0.0265, "eje_robo_alto": 0.0479, "eje_aereo_segunda": -0.0232}, "Libertad": {"eje_verticalidad": -0.0641, "eje_elaboracion": 0.031, "eje_individual": -0.0121, "eje_rotura_lineas": 0.0654, "eje_amplitud_centro": -0.012, "eje_profundidad_espalda": 0.0294, "eje_robo_alto": 0.018, "eje_aereo_segunda": 0.0334}, "Macará": {"eje_verticalidad": -0.0108, "eje_elaboracion": 3.0502, "eje_individual": 1.3449, "eje_rotura_lineas": -0.0173, "eje_amplitud_centro": 1.5505, "eje_profundidad_espalda": 1.3348, "eje_robo_alto": -0.0908, "eje_aereo_segunda": -0.0223}, "Manta": {"eje_verticalidad": -0.0055, "eje_elaboracion": -0.0237, "eje_individual": 0.014, "eje_rotura_lineas": -0.0238, "eje_amplitud_centro": 0.0003, "eje_profundidad_espalda": -0.0443, "eje_robo_alto": 0.0031, "eje_aereo_segunda": 0.0162}, "Mushuc Runa": {"eje_verticalidad": -0.0179, "eje_elaboracion": -0.0163, "eje_individual": -0.02, "eje_rotura_lineas": 0.0167, "eje_amplitud_centro": -0.0139, "eje_profundidad_espalda": 0.0018, "eje_robo_alto": -0.0148, "eje_aereo_segunda": -0.0148}, "Orense": {"eje_verticalidad": -0.055, "eje_elaboracion": -0.0142, "eje_individual": -0.0131, "eje_rotura_lineas": -0.008, "eje_amplitud_centro": -0.0218, "eje_profundidad_espalda": 0.0027, "eje_robo_alto": 0.0335, "eje_aereo_segunda": 0.0183}, "Técnico Universitario": {"eje_verticalidad": -0.0716, "eje_elaboracion": 0.0219, "eje_individual": 0.0176, "eje_rotura_lineas": 0.0045, "eje_amplitud_centro": 0.0185, "eje_profundidad_espalda": 0.0305, "eje_robo_alto": 0.026, "eje_aereo_segunda": -0.0327}, "Universidad Católica": {"eje_verticalidad": -0.0038, "eje_elaboracion": -0.0297, "eje_individual": -0.0067, "eje_rotura_lineas": 0.0205, "eje_amplitud_centro": -0.0054, "eje_profundidad_espalda": 0.0275, "eje_robo_alto": -0.0285, "eje_aereo_segunda": -0.0121}}} \ No newline at end of file diff --git a/vendor/data/ejes/ecuador-liga-pro/26/team_profiles.parquet b/vendor/data/ejes/ecuador-liga-pro/26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..aaf4dedf7419d7cfe19b5e90335d487fa0cd0f00 --- /dev/null +++ b/vendor/data/ejes/ecuador-liga-pro/26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81f1fab53ca9252ffe2767d742074b0d57f704628198feea63e2365f616ec471 +size 8748 diff --git a/vendor/data/ejes/english-football-league---championship/25-26/ejes_definition.json b/vendor/data/ejes/english-football-league---championship/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/english-football-league---championship/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/english-football-league---championship/25-26/match_team_ejes.parquet b/vendor/data/ejes/english-football-league---championship/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..fc7dae0712557e68afdecd16a0b4a5a9258c3a08 --- /dev/null +++ b/vendor/data/ejes/english-football-league---championship/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:896d3e1ce93f1f831cedaa583edcacc8b29edec285c65b45c72f786b5fb29f42 +size 126130 diff --git a/vendor/data/ejes/english-football-league---championship/25-26/match_team_vars.parquet b/vendor/data/ejes/english-football-league---championship/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..230467ea45969d1210bdc11212c2cc44e097c22e --- /dev/null +++ b/vendor/data/ejes/english-football-league---championship/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7599e1ece689036760eb068059faa46403bf162ffc1b063680c489679403680c +size 464018 diff --git a/vendor/data/ejes/english-football-league---championship/25-26/predictor.json b/vendor/data/ejes/english-football-league---championship/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..77bc3f9e73fcc5df823bee4b7f2b56ca994f1b47 --- /dev/null +++ b/vendor/data/ejes/english-football-league---championship/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.9532, "con": 0.7472, "intercept": 0.0178}, "elaboracion": {"gen": 0.961, "con": 0.7419, "intercept": -0.0007}, "individual": {"gen": 0.8609, "con": 0.7101, "intercept": 0.0002}, "rotura_lineas": {"gen": 0.9483, "con": 0.8056, "intercept": -0.0005}, "amplitud_centro": {"gen": 0.7947, "con": 0.6096, "intercept": 0.0001}, "profundidad_espalda": {"gen": 0.7587, "con": 0.5661, "intercept": -0.0003}, "robo_alto": {"gen": 0.7018, "con": 0.8216, "intercept": 0.0021}, "aereo_segunda": {"gen": 0.9477, "con": 0.7881, "intercept": 0.0002}} \ No newline at end of file diff --git a/vendor/data/ejes/english-football-league---championship/25-26/scales.json b/vendor/data/ejes/english-football-league---championship/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..151d0334390ccc3485594243d3975fe6cc472695 --- /dev/null +++ b/vendor/data/ejes/english-football-league---championship/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 2.2437, "atk_w": 1.4031, "ball_distance": 50.5936, "behind_line_ok": 0.0236, "broke_last_line": 0.0162, "broke_second_last": 0.0431, "cross_pvadded_max": 0.0016, "dang_runs": 0.0744, "deep_completions": 0.1112, "def_h": 2.5858, "dribbles_box": 0.0085, "dribbles_last_third": 0.0218, "duration_s": 19.5731, "hold_max": 1.4478, "hold_mean": 1.081, "hold_min": 1.1132, "line_breaks": 0.2642, "max_x": 3.3131, "n_centros": 0.0469, "n_events": 1.8089, "n_involved": 0.1693, "n_passes": 0.5843, "opt_quality_mean": 0.1344, "paredes": 0.1067, "pass_options_mean": 1.4429, "passes_behind_line": 0.0399, "pct_adentro": 0.0342, "pct_afuera": 0.0331, "pct_cortos": 0.0476, "pct_headpass": 0.0165, "pct_largos": 0.0493, "pct_launch": 0.036, "pct_layoff": 0.0053, "pct_medios": 0.0418, "pct_switch": 0.0045, "pct_through": 0.0035, "pct_verticales": 0.0549, "pelotazos_espalda": 0.0349, "press_final": 0.2972, "press_media": 0.1751, "prog_x": 2.5016, "start_x": 4.213, "starts_from_dispossess": 0.0174, "takeons_ok": 0.0182, "tempo": 0.0391, "transition_speed": 0.7393, "verticalidad_media": 0.0663}, "eje_sigma": {"eje_verticalidad": 0.1109, "eje_elaboracion": 0.0949, "eje_individual": 0.0614, "eje_rotura_lineas": 0.0638, "eje_amplitud_centro": 0.0544, "eje_profundidad_espalda": 0.083, "eje_robo_alto": 0.0933, "eje_aereo_segunda": 0.063}, "eje_match_mean": {"eje_verticalidad": -0.0254, "eje_elaboracion": 0.0009, "eje_individual": -0.0003, "eje_rotura_lineas": 0.0006, "eje_amplitud_centro": -0.0002, "eje_profundidad_espalda": 0.0008, "eje_robo_alto": -0.0039, "eje_aereo_segunda": -0.0003}, "eje_match_std": {"eje_verticalidad": 0.1297, "eje_elaboracion": 0.1132, "eje_individual": 0.0656, "eje_rotura_lineas": 0.0732, "eje_amplitud_centro": 0.0571, "eje_profundidad_espalda": 0.0866, "eje_robo_alto": 0.0967, "eje_aereo_segunda": 0.0714}, "team_var_norm": {"Birmingham City": {"atk_l": 39.4817, "atk_w": 31.7638, "ball_distance": 127.3598, "behind_line_ok": 0.0534, "broke_last_line": 0.0272, "broke_second_last": 0.1582, "cross_pvadded_max": 0.0011, "dang_runs": 0.1447, "deep_completions": 0.3542, "def_h": 29.6406, "dribbles_box": 0.0094, "dribbles_last_third": 0.0506, "duration_s": 25.9231, "hold_max": 10.6113, "hold_mean": 7.0434, "hold_min": 4.9506, "line_breaks": 0.6244, "max_x": 70.8831, "n_centros": 0.1468, "n_events": 5.5389, "n_involved": 1.8561, "n_passes": 3.1412, "opt_quality_mean": 0.0726, "paredes": 0.2753, "pass_options_mean": 8.7365, "passes_behind_line": 0.1552, "pct_adentro": 0.5133, "pct_afuera": 0.4002, "pct_cortos": 0.3492, "pct_headpass": 0.0511, "pct_largos": 0.2446, "pct_launch": 0.1076, "pct_layoff": 0.0098, "pct_medios": 0.3207, "pct_switch": 0.0042, "pct_through": 0.002, "pct_verticales": 0.4998, "pelotazos_espalda": 0.1162, "press_final": 2.4639, "press_media": 1.7884, "prog_x": 25.9303, "start_x": 46.2204, "starts_from_dispossess": 0.0369, "takeons_ok": 0.0358, "tempo": 0.3692, "transition_speed": 3.4779, "verticalidad_media": 0.3628}, "Blackburn Rovers": {"atk_l": 39.8046, "atk_w": 31.3402, "ball_distance": 95.9217, "behind_line_ok": 0.0386, "broke_last_line": 0.0245, "broke_second_last": 0.1421, "cross_pvadded_max": 0.0013, "dang_runs": 0.125, "deep_completions": 0.3072, "def_h": 31.0958, "dribbles_box": 0.0084, "dribbles_last_third": 0.0425, "duration_s": 28.6335, "hold_max": 10.3587, "hold_mean": 6.6618, "hold_min": 4.523, "line_breaks": 0.4974, "max_x": 68.7939, "n_centros": 0.1319, "n_events": 5.6152, "n_involved": 1.8288, "n_passes": 2.7652, "opt_quality_mean": 0.0353, "paredes": 0.1973, "pass_options_mean": 8.7748, "passes_behind_line": 0.1269, "pct_adentro": 0.5074, "pct_afuera": 0.4105, "pct_cortos": 0.3692, "pct_headpass": 0.0617, "pct_largos": 0.2371, "pct_launch": 0.1197, "pct_layoff": 0.011, "pct_medios": 0.3123, "pct_switch": 0.0044, "pct_through": 0.0016, "pct_verticales": 0.5221, "pelotazos_espalda": 0.0975, "press_final": 2.425, "press_media": 1.8513, "prog_x": 24.7505, "start_x": 44.9846, "starts_from_dispossess": 0.0357, "takeons_ok": 0.0387, "tempo": 0.3984, "transition_speed": 3.9593, "verticalidad_media": 0.3847}, "Bristol City": {"atk_l": 39.1938, "atk_w": 31.2389, "ball_distance": 123.3484, "behind_line_ok": 0.055, "broke_last_line": 0.0312, "broke_second_last": 0.1567, "cross_pvadded_max": 0.0007, "dang_runs": 0.1567, "deep_completions": 0.306, "def_h": 32.1942, "dribbles_box": 0.0092, "dribbles_last_third": 0.0463, "duration_s": 25.8242, "hold_max": 10.2704, "hold_mean": 6.2167, "hold_min": 4.0062, "line_breaks": 0.67, "max_x": 68.1696, "n_centros": 0.1104, "n_events": 5.5225, "n_involved": 1.8899, "n_passes": 3.1714, "opt_quality_mean": 0.0208, "paredes": 0.3113, "pass_options_mean": 8.9115, "passes_behind_line": 0.1421, "pct_adentro": 0.5088, "pct_afuera": 0.4044, "pct_cortos": 0.3708, "pct_headpass": 0.05, "pct_largos": 0.2137, "pct_launch": 0.1032, "pct_layoff": 0.011, "pct_medios": 0.3301, "pct_switch": 0.0035, "pct_through": 0.0025, "pct_verticales": 0.519, "pelotazos_espalda": 0.1042, "press_final": 2.5931, "press_media": 1.8548, "prog_x": 25.8192, "start_x": 43.5964, "starts_from_dispossess": 0.0383, "takeons_ok": 0.0351, "tempo": 0.3965, "transition_speed": 4.0682, "verticalidad_media": 0.378}, "Charlton Athletic": {"atk_l": 38.6797, "atk_w": 32.5379, "ball_distance": 102.7281, "behind_line_ok": 0.0502, "broke_last_line": 0.0208, "broke_second_last": 0.1297, "cross_pvadded_max": 0.0011, "dang_runs": 0.1092, "deep_completions": 0.2793, "def_h": 30.2007, "dribbles_box": 0.0085, "dribbles_last_third": 0.0394, "duration_s": 27.7821, "hold_max": 11.3705, "hold_mean": 7.3809, "hold_min": 5.0531, "line_breaks": 0.4332, "max_x": 70.3752, "n_centros": 0.1233, "n_events": 5.3494, "n_involved": 1.7191, "n_passes": 2.5733, "opt_quality_mean": 0.0306, "paredes": 0.1729, "pass_options_mean": 8.8121, "passes_behind_line": 0.148, "pct_adentro": 0.516, "pct_afuera": 0.3986, "pct_cortos": 0.2978, "pct_headpass": 0.0771, "pct_largos": 0.2927, "pct_launch": 0.1386, "pct_layoff": 0.0069, "pct_medios": 0.3248, "pct_switch": 0.003, "pct_through": 0.0012, "pct_verticales": 0.5614, "pelotazos_espalda": 0.1154, "press_final": 2.54, "press_media": 1.7986, "prog_x": 27.4326, "start_x": 44.0637, "starts_from_dispossess": 0.034, "takeons_ok": 0.0336, "tempo": 0.3581, "transition_speed": 4.4236, "verticalidad_media": 0.438}, "Coventry City": {"atk_l": 38.9036, "atk_w": 32.5329, "ball_distance": 141.3329, "behind_line_ok": 0.0518, "broke_last_line": 0.0267, "broke_second_last": 0.1704, "cross_pvadded_max": 0.0022, "dang_runs": 0.1489, "deep_completions": 0.3754, "def_h": 29.2321, "dribbles_box": 0.0112, "dribbles_last_third": 0.0554, "duration_s": 25.3443, "hold_max": 10.7805, "hold_mean": 6.9947, "hold_min": 4.8171, "line_breaks": 0.5825, "max_x": 71.3412, "n_centros": 0.1484, "n_events": 5.5028, "n_involved": 1.8435, "n_passes": 3.2087, "opt_quality_mean": 0.1234, "paredes": 0.3611, "pass_options_mean": 9.0766, "passes_behind_line": 0.1379, "pct_adentro": 0.4982, "pct_afuera": 0.4064, "pct_cortos": 0.3608, "pct_headpass": 0.052, "pct_largos": 0.2457, "pct_launch": 0.103, "pct_layoff": 0.0097, "pct_medios": 0.2995, "pct_switch": 0.0038, "pct_through": 0.0019, "pct_verticales": 0.4946, "pelotazos_espalda": 0.1041, "press_final": 2.7143, "press_media": 1.8825, "prog_x": 26.041, "start_x": 46.8073, "starts_from_dispossess": 0.0421, "takeons_ok": 0.0401, "tempo": 0.3558, "transition_speed": 3.4508, "verticalidad_media": 0.3517}, "Derby County": {"atk_l": 39.2136, "atk_w": 31.9318, "ball_distance": 97.946, "behind_line_ok": 0.0477, "broke_last_line": 0.0237, "broke_second_last": 0.1394, "cross_pvadded_max": 0.0011, "dang_runs": 0.0975, "deep_completions": 0.2747, "def_h": 30.7467, "dribbles_box": 0.0119, "dribbles_last_third": 0.0513, "duration_s": 29.6816, "hold_max": 11.6896, "hold_mean": 7.6994, "hold_min": 5.4265, "line_breaks": 0.4297, "max_x": 69.5544, "n_centros": 0.1175, "n_events": 5.429, "n_involved": 1.7432, "n_passes": 2.635, "opt_quality_mean": 0.039, "paredes": 0.1907, "pass_options_mean": 8.8694, "passes_behind_line": 0.1488, "pct_adentro": 0.5064, "pct_afuera": 0.4012, "pct_cortos": 0.3168, "pct_headpass": 0.0612, "pct_largos": 0.2728, "pct_launch": 0.1246, "pct_layoff": 0.0072, "pct_medios": 0.319, "pct_switch": 0.0038, "pct_through": 0.0023, "pct_verticales": 0.5167, "pelotazos_espalda": 0.1217, "press_final": 2.4845, "press_media": 1.7874, "prog_x": 25.9632, "start_x": 44.7443, "starts_from_dispossess": 0.0418, "takeons_ok": 0.0383, "tempo": 0.3497, "transition_speed": 3.9151, "verticalidad_media": 0.3874}, "Hull City": {"atk_l": 40.7399, "atk_w": 31.6878, "ball_distance": 97.8825, "behind_line_ok": 0.0429, "broke_last_line": 0.0247, "broke_second_last": 0.1397, "cross_pvadded_max": 0.0013, "dang_runs": 0.1232, "deep_completions": 0.2736, "def_h": 31.7471, "dribbles_box": 0.0098, "dribbles_last_third": 0.0512, "duration_s": 22.3012, "hold_max": 10.8445, "hold_mean": 7.028, "hold_min": 4.794, "line_breaks": 0.4386, "max_x": 68.502, "n_centros": 0.1215, "n_events": 4.8356, "n_involved": 1.7422, "n_passes": 2.638, "opt_quality_mean": -0.0051, "paredes": 0.2, "pass_options_mean": 8.6325, "passes_behind_line": 0.1411, "pct_adentro": 0.491, "pct_afuera": 0.4247, "pct_cortos": 0.3369, "pct_headpass": 0.0577, "pct_largos": 0.2666, "pct_launch": 0.1273, "pct_layoff": 0.0102, "pct_medios": 0.3131, "pct_switch": 0.0072, "pct_through": 0.0023, "pct_verticales": 0.5326, "pelotazos_espalda": 0.113, "press_final": 2.5523, "press_media": 1.8104, "prog_x": 26.0789, "start_x": 43.2514, "starts_from_dispossess": 0.0443, "takeons_ok": 0.0434, "tempo": 0.3779, "transition_speed": 3.9443, "verticalidad_media": 0.3985}, "Ipswich Town": {"atk_l": 42.9931, "atk_w": 32.6555, "ball_distance": 120.5964, "behind_line_ok": 0.0549, "broke_last_line": 0.0371, "broke_second_last": 0.1763, "cross_pvadded_max": 0.0014, "dang_runs": 0.1687, "deep_completions": 0.3467, "def_h": 30.9516, "dribbles_box": 0.0084, "dribbles_last_third": 0.0544, "duration_s": 30.9755, "hold_max": 10.7865, "hold_mean": 6.3971, "hold_min": 3.9221, "line_breaks": 0.6733, "max_x": 68.5822, "n_centros": 0.1259, "n_events": 5.9651, "n_involved": 1.9214, "n_passes": 3.2204, "opt_quality_mean": 0.0769, "paredes": 0.2529, "pass_options_mean": 9.0678, "passes_behind_line": 0.1239, "pct_adentro": 0.5069, "pct_afuera": 0.4054, "pct_cortos": 0.3704, "pct_headpass": 0.0542, "pct_largos": 0.194, "pct_launch": 0.074, "pct_layoff": 0.0121, "pct_medios": 0.3495, "pct_switch": 0.006, "pct_through": 0.0036, "pct_verticales": 0.454, "pelotazos_espalda": 0.0844, "press_final": 2.5587, "press_media": 1.8637, "prog_x": 24.7126, "start_x": 45.0938, "starts_from_dispossess": 0.0394, "takeons_ok": 0.043, "tempo": 0.386, "transition_speed": 3.4634, "verticalidad_media": 0.3121}, "Leicester City": {"atk_l": 40.0406, "atk_w": 31.5079, "ball_distance": 124.8646, "behind_line_ok": 0.0464, "broke_last_line": 0.024, "broke_second_last": 0.1682, "cross_pvadded_max": 0.0014, "dang_runs": 0.1101, "deep_completions": 0.31, "def_h": 31.5542, "dribbles_box": 0.013, "dribbles_last_third": 0.0657, "duration_s": 25.6249, "hold_max": 10.8113, "hold_mean": 6.5112, "hold_min": 4.1235, "line_breaks": 0.7451, "max_x": 67.3435, "n_centros": 0.1136, "n_events": 5.583, "n_involved": 1.8893, "n_passes": 3.2538, "opt_quality_mean": 0.0424, "paredes": 0.3203, "pass_options_mean": 8.8632, "passes_behind_line": 0.116, "pct_adentro": 0.5001, "pct_afuera": 0.4116, "pct_cortos": 0.406, "pct_headpass": 0.0402, "pct_largos": 0.2006, "pct_launch": 0.0967, "pct_layoff": 0.0137, "pct_medios": 0.3062, "pct_switch": 0.0041, "pct_through": 0.0021, "pct_verticales": 0.4878, "pelotazos_espalda": 0.0824, "press_final": 2.6938, "press_media": 1.9194, "prog_x": 23.8965, "start_x": 44.5015, "starts_from_dispossess": 0.0445, "takeons_ok": 0.0513, "tempo": 0.3921, "transition_speed": 3.3676, "verticalidad_media": 0.3435}, "Middlesbrough": {"atk_l": 40.4149, "atk_w": 32.6651, "ball_distance": 155.1199, "behind_line_ok": 0.0593, "broke_last_line": 0.0389, "broke_second_last": 0.1996, "cross_pvadded_max": 0.0005, "dang_runs": 0.2295, "deep_completions": 0.4709, "def_h": 30.2881, "dribbles_box": 0.0114, "dribbles_last_third": 0.063, "duration_s": 31.281, "hold_max": 10.3562, "hold_mean": 6.0283, "hold_min": 3.7776, "line_breaks": 0.9468, "max_x": 69.9598, "n_centros": 0.1384, "n_events": 6.3029, "n_involved": 2.029, "n_passes": 3.7034, "opt_quality_mean": 0.1606, "paredes": 0.3703, "pass_options_mean": 9.1615, "passes_behind_line": 0.1432, "pct_adentro": 0.51, "pct_afuera": 0.4042, "pct_cortos": 0.4312, "pct_headpass": 0.0353, "pct_largos": 0.181, "pct_launch": 0.0626, "pct_layoff": 0.0113, "pct_medios": 0.3033, "pct_switch": 0.0055, "pct_through": 0.0037, "pct_verticales": 0.4449, "pelotazos_espalda": 0.0922, "press_final": 2.5848, "press_media": 1.905, "prog_x": 24.2453, "start_x": 46.9725, "starts_from_dispossess": 0.0462, "takeons_ok": 0.0546, "tempo": 0.384, "transition_speed": 2.9595, "verticalidad_media": 0.2875}, "Millwall": {"atk_l": 38.6579, "atk_w": 32.0497, "ball_distance": 92.7002, "behind_line_ok": 0.0502, "broke_last_line": 0.0273, "broke_second_last": 0.1365, "cross_pvadded_max": 0.0018, "dang_runs": 0.1225, "deep_completions": 0.3041, "def_h": 29.3665, "dribbles_box": 0.0086, "dribbles_last_third": 0.047, "duration_s": 26.5651, "hold_max": 10.5442, "hold_mean": 6.9689, "hold_min": 4.9033, "line_breaks": 0.4091, "max_x": 70.7155, "n_centros": 0.1506, "n_events": 5.301, "n_involved": 1.7428, "n_passes": 2.6002, "opt_quality_mean": 0.0644, "paredes": 0.1765, "pass_options_mean": 8.9062, "passes_behind_line": 0.1399, "pct_adentro": 0.5141, "pct_afuera": 0.4057, "pct_cortos": 0.3317, "pct_headpass": 0.0716, "pct_largos": 0.2715, "pct_launch": 0.1138, "pct_layoff": 0.0082, "pct_medios": 0.3177, "pct_switch": 0.0059, "pct_through": 0.001, "pct_verticales": 0.5328, "pelotazos_espalda": 0.1049, "press_final": 2.4911, "press_media": 1.8593, "prog_x": 25.7088, "start_x": 46.1586, "starts_from_dispossess": 0.0352, "takeons_ok": 0.0332, "tempo": 0.3725, "transition_speed": 3.9883, "verticalidad_media": 0.4023}, "Norwich City": {"atk_l": 40.0089, "atk_w": 31.9025, "ball_distance": 124.7489, "behind_line_ok": 0.0474, "broke_last_line": 0.0315, "broke_second_last": 0.156, "cross_pvadded_max": 0.0011, "dang_runs": 0.1522, "deep_completions": 0.3137, "def_h": 31.756, "dribbles_box": 0.0112, "dribbles_last_third": 0.0543, "duration_s": 28.6884, "hold_max": 10.3986, "hold_mean": 6.2127, "hold_min": 3.9034, "line_breaks": 0.6206, "max_x": 67.8314, "n_centros": 0.1176, "n_events": 5.8053, "n_involved": 1.8923, "n_passes": 3.1944, "opt_quality_mean": 0.0295, "paredes": 0.2693, "pass_options_mean": 8.9381, "passes_behind_line": 0.1285, "pct_adentro": 0.507, "pct_afuera": 0.4052, "pct_cortos": 0.3715, "pct_headpass": 0.0485, "pct_largos": 0.2158, "pct_launch": 0.0988, "pct_layoff": 0.0102, "pct_medios": 0.3271, "pct_switch": 0.0049, "pct_through": 0.0024, "pct_verticales": 0.481, "pelotazos_espalda": 0.0929, "press_final": 2.5779, "press_media": 1.8765, "prog_x": 24.9631, "start_x": 44.0461, "starts_from_dispossess": 0.0431, "takeons_ok": 0.0507, "tempo": 0.378, "transition_speed": 3.6302, "verticalidad_media": 0.34}, "Oxford United": {"atk_l": 38.5265, "atk_w": 32.1246, "ball_distance": 83.5036, "behind_line_ok": 0.0395, "broke_last_line": 0.0163, "broke_second_last": 0.1255, "cross_pvadded_max": 0.0012, "dang_runs": 0.1129, "deep_completions": 0.2082, "def_h": 30.862, "dribbles_box": 0.007, "dribbles_last_third": 0.0386, "duration_s": 22.0616, "hold_max": 10.9319, "hold_mean": 7.5253, "hold_min": 5.3784, "line_breaks": 0.3684, "max_x": 68.2566, "n_centros": 0.1123, "n_events": 4.6015, "n_involved": 1.678, "n_passes": 2.332, "opt_quality_mean": 0.0153, "paredes": 0.1393, "pass_options_mean": 8.7309, "passes_behind_line": 0.1398, "pct_adentro": 0.5143, "pct_afuera": 0.3951, "pct_cortos": 0.3183, "pct_headpass": 0.0658, "pct_largos": 0.2903, "pct_launch": 0.1245, "pct_layoff": 0.0085, "pct_medios": 0.3018, "pct_switch": 0.007, "pct_through": 0.002, "pct_verticales": 0.5426, "pelotazos_espalda": 0.1162, "press_final": 2.4537, "press_media": 1.7355, "prog_x": 26.1094, "start_x": 43.333, "starts_from_dispossess": 0.0425, "takeons_ok": 0.0316, "tempo": 0.3649, "transition_speed": 4.2413, "verticalidad_media": 0.4172}, "Portsmouth": {"atk_l": 40.9335, "atk_w": 32.2024, "ball_distance": 103.8385, "behind_line_ok": 0.05, "broke_last_line": 0.0209, "broke_second_last": 0.1323, "cross_pvadded_max": 0.0012, "dang_runs": 0.1337, "deep_completions": 0.2911, "def_h": 29.3604, "dribbles_box": 0.0082, "dribbles_last_third": 0.0463, "duration_s": 29.0188, "hold_max": 10.9385, "hold_mean": 7.132, "hold_min": 4.8794, "line_breaks": 0.3981, "max_x": 70.6875, "n_centros": 0.1406, "n_events": 5.5427, "n_involved": 1.7561, "n_passes": 2.7244, "opt_quality_mean": 0.0425, "paredes": 0.2047, "pass_options_mean": 8.809, "passes_behind_line": 0.1511, "pct_adentro": 0.5085, "pct_afuera": 0.4086, "pct_cortos": 0.326, "pct_headpass": 0.0645, "pct_largos": 0.2767, "pct_launch": 0.1326, "pct_layoff": 0.0106, "pct_medios": 0.3151, "pct_switch": 0.0077, "pct_through": 0.0009, "pct_verticales": 0.5143, "pelotazos_espalda": 0.1219, "press_final": 2.464, "press_media": 1.7701, "prog_x": 25.6813, "start_x": 46.0675, "starts_from_dispossess": 0.0343, "takeons_ok": 0.0323, "tempo": 0.3644, "transition_speed": 3.9188, "verticalidad_media": 0.3688}, "Preston North End": {"atk_l": 39.7174, "atk_w": 32.7535, "ball_distance": 95.0198, "behind_line_ok": 0.0491, "broke_last_line": 0.0249, "broke_second_last": 0.1398, "cross_pvadded_max": 0.0014, "dang_runs": 0.1158, "deep_completions": 0.2991, "def_h": 31.2852, "dribbles_box": 0.0092, "dribbles_last_third": 0.0435, "duration_s": 26.4541, "hold_max": 10.7086, "hold_mean": 6.439, "hold_min": 3.9276, "line_breaks": 0.4868, "max_x": 68.5776, "n_centros": 0.1295, "n_events": 5.2675, "n_involved": 1.7725, "n_passes": 2.6856, "opt_quality_mean": 0.0057, "paredes": 0.2046, "pass_options_mean": 8.832, "passes_behind_line": 0.143, "pct_adentro": 0.5073, "pct_afuera": 0.4138, "pct_cortos": 0.369, "pct_headpass": 0.0563, "pct_largos": 0.2502, "pct_launch": 0.1296, "pct_layoff": 0.011, "pct_medios": 0.303, "pct_switch": 0.0034, "pct_through": 0.0015, "pct_verticales": 0.5272, "pelotazos_espalda": 0.115, "press_final": 2.5833, "press_media": 1.822, "prog_x": 26.9409, "start_x": 42.5934, "starts_from_dispossess": 0.041, "takeons_ok": 0.0354, "tempo": 0.4015, "transition_speed": 4.4286, "verticalidad_media": 0.3862}, "Queens Park Rangers": {"atk_l": 39.4206, "atk_w": 32.1725, "ball_distance": 112.71, "behind_line_ok": 0.0462, "broke_last_line": 0.0213, "broke_second_last": 0.1464, "cross_pvadded_max": 0.0013, "dang_runs": 0.1476, "deep_completions": 0.3017, "def_h": 30.9405, "dribbles_box": 0.0072, "dribbles_last_third": 0.0403, "duration_s": 23.4958, "hold_max": 11.258, "hold_mean": 7.0896, "hold_min": 4.8987, "line_breaks": 0.5367, "max_x": 68.8211, "n_centros": 0.1252, "n_events": 5.1042, "n_involved": 1.8406, "n_passes": 2.8171, "opt_quality_mean": 0.0409, "paredes": 0.2147, "pass_options_mean": 9.0081, "passes_behind_line": 0.1303, "pct_adentro": 0.5087, "pct_afuera": 0.4055, "pct_cortos": 0.3466, "pct_headpass": 0.062, "pct_largos": 0.2455, "pct_launch": 0.1057, "pct_layoff": 0.0109, "pct_medios": 0.3237, "pct_switch": 0.0054, "pct_through": 0.0013, "pct_verticales": 0.5114, "pelotazos_espalda": 0.1015, "press_final": 2.5249, "press_media": 1.853, "prog_x": 25.4028, "start_x": 44.5864, "starts_from_dispossess": 0.0437, "takeons_ok": 0.0315, "tempo": 0.3763, "transition_speed": 3.8257, "verticalidad_media": 0.3814}, "Sheffield United": {"atk_l": 38.7586, "atk_w": 32.3645, "ball_distance": 135.7882, "behind_line_ok": 0.0597, "broke_last_line": 0.0298, "broke_second_last": 0.165, "cross_pvadded_max": 0.0015, "dang_runs": 0.155, "deep_completions": 0.3718, "def_h": 29.1574, "dribbles_box": 0.0136, "dribbles_last_third": 0.0584, "duration_s": 21.3526, "hold_max": 10.6508, "hold_mean": 6.8365, "hold_min": 4.5364, "line_breaks": 0.6185, "max_x": 71.3528, "n_centros": 0.12, "n_events": 5.0839, "n_involved": 1.8659, "n_passes": 2.968, "opt_quality_mean": 0.1119, "paredes": 0.2731, "pass_options_mean": 8.9196, "passes_behind_line": 0.1559, "pct_adentro": 0.5135, "pct_afuera": 0.3974, "pct_cortos": 0.3606, "pct_headpass": 0.0541, "pct_largos": 0.2515, "pct_launch": 0.1129, "pct_layoff": 0.0097, "pct_medios": 0.3002, "pct_switch": 0.0039, "pct_through": 0.0035, "pct_verticales": 0.5135, "pelotazos_espalda": 0.1152, "press_final": 2.5625, "press_media": 1.8102, "prog_x": 25.7604, "start_x": 46.6009, "starts_from_dispossess": 0.0462, "takeons_ok": 0.041, "tempo": 0.3811, "transition_speed": 3.8598, "verticalidad_media": 0.3781}, "Sheffield Wednesday": {"atk_l": 38.1655, "atk_w": 30.9567, "ball_distance": 103.3944, "behind_line_ok": 0.0412, "broke_last_line": 0.0235, "broke_second_last": 0.122, "cross_pvadded_max": 0.0008, "dang_runs": 0.1102, "deep_completions": 0.2403, "def_h": 32.381, "dribbles_box": 0.0097, "dribbles_last_third": 0.044, "duration_s": 25.7839, "hold_max": 11.1346, "hold_mean": 7.4845, "hold_min": 5.3835, "line_breaks": 0.5015, "max_x": 66.6936, "n_centros": 0.1, "n_events": 5.1332, "n_involved": 1.739, "n_passes": 2.7196, "opt_quality_mean": -0.0207, "paredes": 0.2198, "pass_options_mean": 8.8779, "passes_behind_line": 0.1396, "pct_adentro": 0.4973, "pct_afuera": 0.4152, "pct_cortos": 0.341, "pct_headpass": 0.0471, "pct_largos": 0.261, "pct_launch": 0.1208, "pct_layoff": 0.0076, "pct_medios": 0.3123, "pct_switch": 0.0041, "pct_through": 0.0019, "pct_verticales": 0.5308, "pelotazos_espalda": 0.1117, "press_final": 2.4985, "press_media": 1.779, "prog_x": 25.165, "start_x": 42.4122, "starts_from_dispossess": 0.0425, "takeons_ok": 0.0435, "tempo": 0.3565, "transition_speed": 3.6441, "verticalidad_media": 0.3974}, "Southampton": {"atk_l": 42.6483, "atk_w": 32.6235, "ball_distance": 169.4526, "behind_line_ok": 0.0545, "broke_last_line": 0.031, "broke_second_last": 0.1705, "cross_pvadded_max": 0.0016, "dang_runs": 0.1826, "deep_completions": 0.3795, "def_h": 31.3478, "dribbles_box": 0.0124, "dribbles_last_third": 0.0542, "duration_s": 29.9118, "hold_max": 11.282, "hold_mean": 6.8884, "hold_min": 4.4939, "line_breaks": 0.775, "max_x": 68.9964, "n_centros": 0.1426, "n_events": 6.2149, "n_involved": 1.9958, "n_passes": 3.7354, "opt_quality_mean": 0.077, "paredes": 0.3232, "pass_options_mean": 8.4721, "passes_behind_line": 0.1316, "pct_adentro": 0.5052, "pct_afuera": 0.4045, "pct_cortos": 0.3631, "pct_headpass": 0.0438, "pct_largos": 0.2082, "pct_launch": 0.0802, "pct_layoff": 0.0086, "pct_medios": 0.3402, "pct_switch": 0.004, "pct_through": 0.0025, "pct_verticales": 0.4589, "pelotazos_espalda": 0.0906, "press_final": 2.533, "press_media": 1.8243, "prog_x": 25.1184, "start_x": 45.1012, "starts_from_dispossess": 0.0455, "takeons_ok": 0.0449, "tempo": 0.3712, "transition_speed": 3.1776, "verticalidad_media": 0.3119}, "Stoke City": {"atk_l": 40.8366, "atk_w": 32.5953, "ball_distance": 122.8129, "behind_line_ok": 0.0425, "broke_last_line": 0.0225, "broke_second_last": 0.1489, "cross_pvadded_max": 0.0015, "dang_runs": 0.1344, "deep_completions": 0.273, "def_h": 30.9752, "dribbles_box": 0.0086, "dribbles_last_third": 0.0482, "duration_s": 29.6938, "hold_max": 11.3012, "hold_mean": 7.0679, "hold_min": 4.6806, "line_breaks": 0.5566, "max_x": 69.2936, "n_centros": 0.1365, "n_events": 5.7202, "n_involved": 1.7765, "n_passes": 3.1035, "opt_quality_mean": 0.0182, "paredes": 0.2785, "pass_options_mean": 8.9229, "passes_behind_line": 0.1345, "pct_adentro": 0.5139, "pct_afuera": 0.4018, "pct_cortos": 0.3291, "pct_headpass": 0.0495, "pct_largos": 0.2468, "pct_launch": 0.0998, "pct_layoff": 0.0104, "pct_medios": 0.3408, "pct_switch": 0.0075, "pct_through": 0.0024, "pct_verticales": 0.4768, "pelotazos_espalda": 0.1029, "press_final": 2.4597, "press_media": 1.7456, "prog_x": 25.6867, "start_x": 44.4901, "starts_from_dispossess": 0.0363, "takeons_ok": 0.0407, "tempo": 0.3539, "transition_speed": 3.67, "verticalidad_media": 0.3411}, "Swansea City": {"atk_l": 41.2066, "atk_w": 33.2637, "ball_distance": 151.927, "behind_line_ok": 0.0478, "broke_last_line": 0.0286, "broke_second_last": 0.1537, "cross_pvadded_max": 0.0013, "dang_runs": 0.1438, "deep_completions": 0.3104, "def_h": 32.0485, "dribbles_box": 0.0089, "dribbles_last_third": 0.0427, "duration_s": 23.0072, "hold_max": 10.1767, "hold_mean": 6.011, "hold_min": 3.6072, "line_breaks": 0.6417, "max_x": 67.5326, "n_centros": 0.1146, "n_events": 5.4885, "n_involved": 1.9329, "n_passes": 3.43, "opt_quality_mean": -0.0069, "paredes": 0.3528, "pass_options_mean": 9.1682, "passes_behind_line": 0.1428, "pct_adentro": 0.5081, "pct_afuera": 0.4104, "pct_cortos": 0.3732, "pct_headpass": 0.0528, "pct_largos": 0.2132, "pct_launch": 0.1096, "pct_layoff": 0.0124, "pct_medios": 0.3333, "pct_switch": 0.0046, "pct_through": 0.0019, "pct_verticales": 0.486, "pelotazos_espalda": 0.1088, "press_final": 2.4248, "press_media": 1.8118, "prog_x": 24.3494, "start_x": 44.3191, "starts_from_dispossess": 0.0405, "takeons_ok": 0.0366, "tempo": 0.3963, "transition_speed": 3.5942, "verticalidad_media": 0.3202}, "Watford": {"atk_l": 41.4994, "atk_w": 32.3597, "ball_distance": 124.2462, "behind_line_ok": 0.0464, "broke_last_line": 0.0301, "broke_second_last": 0.1573, "cross_pvadded_max": 0.0011, "dang_runs": 0.1453, "deep_completions": 0.3081, "def_h": 32.4222, "dribbles_box": 0.0099, "dribbles_last_third": 0.056, "duration_s": 33.7776, "hold_max": 10.4751, "hold_mean": 6.1201, "hold_min": 3.7997, "line_breaks": 0.6583, "max_x": 67.2765, "n_centros": 0.1246, "n_events": 6.2628, "n_involved": 1.8741, "n_passes": 3.1673, "opt_quality_mean": 0.0051, "paredes": 0.3075, "pass_options_mean": 9.0573, "passes_behind_line": 0.127, "pct_adentro": 0.5067, "pct_afuera": 0.3999, "pct_cortos": 0.3793, "pct_headpass": 0.0495, "pct_largos": 0.211, "pct_launch": 0.0995, "pct_layoff": 0.0111, "pct_medios": 0.3177, "pct_switch": 0.0051, "pct_through": 0.002, "pct_verticales": 0.4757, "pelotazos_espalda": 0.0987, "press_final": 2.5516, "press_media": 1.8905, "prog_x": 25.1306, "start_x": 43.3234, "starts_from_dispossess": 0.0461, "takeons_ok": 0.0524, "tempo": 0.3779, "transition_speed": 3.6776, "verticalidad_media": 0.3428}, "West Bromwich Albion": {"atk_l": 37.941, "atk_w": 31.4611, "ball_distance": 140.7407, "behind_line_ok": 0.0492, "broke_last_line": 0.0227, "broke_second_last": 0.1681, "cross_pvadded_max": 0.0016, "dang_runs": 0.1558, "deep_completions": 0.2856, "def_h": 31.6321, "dribbles_box": 0.0073, "dribbles_last_third": 0.0413, "duration_s": 21.931, "hold_max": 10.4659, "hold_mean": 6.4171, "hold_min": 4.169, "line_breaks": 0.7017, "max_x": 68.1979, "n_centros": 0.1402, "n_events": 5.2767, "n_involved": 1.9339, "n_passes": 3.2828, "opt_quality_mean": 0.0145, "paredes": 0.2602, "pass_options_mean": 8.7617, "passes_behind_line": 0.1434, "pct_adentro": 0.5149, "pct_afuera": 0.4006, "pct_cortos": 0.3617, "pct_headpass": 0.0538, "pct_largos": 0.2374, "pct_launch": 0.1076, "pct_layoff": 0.0096, "pct_medios": 0.3173, "pct_switch": 0.0036, "pct_through": 0.0007, "pct_verticales": 0.4794, "pelotazos_espalda": 0.1108, "press_final": 2.596, "press_media": 1.8848, "prog_x": 24.5733, "start_x": 44.9386, "starts_from_dispossess": 0.0395, "takeons_ok": 0.04, "tempo": 0.3839, "transition_speed": 3.5659, "verticalidad_media": 0.3322}, "Wrexham": {"atk_l": 42.2132, "atk_w": 32.4958, "ball_distance": 127.626, "behind_line_ok": 0.0546, "broke_last_line": 0.0281, "broke_second_last": 0.1678, "cross_pvadded_max": 0.0014, "dang_runs": 0.1538, "deep_completions": 0.3165, "def_h": 31.9063, "dribbles_box": 0.0088, "dribbles_last_third": 0.0398, "duration_s": 27.2264, "hold_max": 10.5922, "hold_mean": 6.5761, "hold_min": 4.2926, "line_breaks": 0.7694, "max_x": 68.6763, "n_centros": 0.1369, "n_events": 5.6867, "n_involved": 1.9167, "n_passes": 3.1506, "opt_quality_mean": -0.0236, "paredes": 0.2612, "pass_options_mean": 8.5923, "passes_behind_line": 0.15, "pct_adentro": 0.5152, "pct_afuera": 0.4039, "pct_cortos": 0.3748, "pct_headpass": 0.061, "pct_largos": 0.2497, "pct_launch": 0.1134, "pct_layoff": 0.0113, "pct_medios": 0.2958, "pct_switch": 0.0069, "pct_through": 0.0023, "pct_verticales": 0.5154, "pelotazos_espalda": 0.1148, "press_final": 2.5436, "press_media": 1.826, "prog_x": 26.6926, "start_x": 43.009, "starts_from_dispossess": 0.0419, "takeons_ok": 0.0379, "tempo": 0.39, "transition_speed": 3.7631, "verticalidad_media": 0.3714}}, "team_eje_norm_gen": {"Birmingham City": {"eje_verticalidad": -0.0343, "eje_elaboracion": 0.011, "eje_individual": -0.0036, "eje_rotura_lineas": 0.0081, "eje_amplitud_centro": 0.0083, "eje_profundidad_espalda": 0.0385, "eje_robo_alto": 0.0156, "eje_aereo_segunda": -0.0108}, "Blackburn Rovers": {"eje_verticalidad": 0.0051, "eje_elaboracion": -0.0265, "eje_individual": -0.0171, "eje_rotura_lineas": -0.0223, "eje_amplitud_centro": 0.0046, "eje_profundidad_espalda": -0.0277, "eje_robo_alto": -0.0108, "eje_aereo_segunda": 0.0312}, "Bristol City": {"eje_verticalidad": -0.0159, "eje_elaboracion": 0.0402, "eje_individual": -0.0061, "eje_rotura_lineas": 0.0219, "eje_amplitud_centro": -0.0278, "eje_profundidad_espalda": 0.0059, "eje_robo_alto": -0.03, "eje_aereo_segunda": -0.0111}, "Charlton Athletic": {"eje_verticalidad": 0.1123, "eje_elaboracion": -0.0961, "eje_individual": -0.031, "eje_rotura_lineas": -0.0451, "eje_amplitud_centro": -0.0232, "eje_profundidad_espalda": 0.005, "eje_robo_alto": -0.0323, "eje_aereo_segunda": 0.0595}, "Coventry City": {"eje_verticalidad": -0.0455, "eje_elaboracion": 0.0535, "eje_individual": 0.0126, "eje_rotura_lineas": 0.0103, "eje_amplitud_centro": 0.0132, "eje_profundidad_espalda": 0.0219, "eje_robo_alto": 0.0397, "eje_aereo_segunda": -0.0152}, "Derby County": {"eje_verticalidad": 0.0215, "eje_elaboracion": -0.0715, "eje_individual": -0.0074, "eje_rotura_lineas": -0.0272, "eje_amplitud_centro": -0.0221, "eje_profundidad_espalda": 0.0063, "eje_robo_alto": 0.0003, "eje_aereo_segunda": 0.0139}, "Hull City": {"eje_verticalidad": 0.0366, "eje_elaboracion": -0.0602, "eje_individual": 0.001, "eje_rotura_lineas": -0.0248, "eje_amplitud_centro": 0.0244, "eje_profundidad_espalda": -0.0116, "eje_robo_alto": -0.0215, "eje_aereo_segunda": 0.0279}, "Ipswich Town": {"eje_verticalidad": -0.1268, "eje_elaboracion": 0.026, "eje_individual": 0.0139, "eje_rotura_lineas": 0.0509, "eje_amplitud_centro": 0.0039, "eje_profundidad_espalda": -0.0096, "eje_robo_alto": 0.0007, "eje_aereo_segunda": -0.0315}, "Leicester City": {"eje_verticalidad": -0.0887, "eje_elaboracion": 0.0722, "eje_individual": 0.0304, "eje_rotura_lineas": 0.0233, "eje_amplitud_centro": -0.0146, "eje_profundidad_espalda": -0.0379, "eje_robo_alto": 0.0026, "eje_aereo_segunda": -0.022}, "Middlesbrough": {"eje_verticalidad": -0.1715, "eje_elaboracion": 0.1408, "eje_individual": 0.0622, "eje_rotura_lineas": 0.0982, "eje_amplitud_centro": 0.0119, "eje_profundidad_espalda": 0.0554, "eje_robo_alto": 0.0531, "eje_aereo_segunda": -0.0861}, "Millwall": {"eje_verticalidad": 0.0476, "eje_elaboracion": -0.0713, "eje_individual": -0.0191, "eje_rotura_lineas": -0.0344, "eje_amplitud_centro": 0.028, "eje_profundidad_espalda": -0.0011, "eje_robo_alto": 0.0101, "eje_aereo_segunda": 0.0267}, "Norwich City": {"eje_verticalidad": -0.0744, "eje_elaboracion": 0.0293, "eje_individual": 0.0249, "eje_rotura_lineas": 0.0155, "eje_amplitud_centro": -0.0114, "eje_profundidad_espalda": -0.0186, "eje_robo_alto": -0.0096, "eje_aereo_segunda": -0.0237}, "Oxford United": {"eje_verticalidad": 0.0777, "eje_elaboracion": -0.1147, "eje_individual": -0.0367, "eje_rotura_lineas": -0.0561, "eje_amplitud_centro": -0.0127, "eje_profundidad_espalda": -0.0349, "eje_robo_alto": -0.0245, "eje_aereo_segunda": 0.0299}, "Portsmouth": {"eje_verticalidad": 0.0172, "eje_elaboracion": -0.055, "eje_individual": -0.0186, "eje_rotura_lineas": -0.0493, "eje_amplitud_centro": 0.0317, "eje_profundidad_espalda": 0.016, "eje_robo_alto": 0.006, "eje_aereo_segunda": 0.0499}, "Preston North End": {"eje_verticalidad": 0.0344, "eje_elaboracion": -0.0309, "eje_individual": -0.0207, "eje_rotura_lineas": -0.0248, "eje_amplitud_centro": -0.0011, "eje_profundidad_espalda": 0.0065, "eje_robo_alto": -0.042, "eje_aereo_segunda": 0.0328}, "Queens Park Rangers": {"eje_verticalidad": -0.0048, "eje_elaboracion": -0.0357, "eje_individual": -0.0244, "eje_rotura_lineas": -0.0221, "eje_amplitud_centro": -0.0004, "eje_profundidad_espalda": -0.0155, "eje_robo_alto": 0.0021, "eje_aereo_segunda": 0.0147}, "Sheffield United": {"eje_verticalidad": -0.0013, "eje_elaboracion": 0.0029, "eje_individual": 0.0247, "eje_rotura_lineas": 0.0258, "eje_amplitud_centro": -0.0222, "eje_profundidad_espalda": 0.0509, "eje_robo_alto": 0.0462, "eje_aereo_segunda": 0.0005}, "Sheffield Wednesday": {"eje_verticalidad": 0.0187, "eje_elaboracion": -0.0423, "eje_individual": -0.0108, "eje_rotura_lineas": -0.0338, "eje_amplitud_centro": -0.0246, "eje_profundidad_espalda": -0.0264, "eje_robo_alto": -0.0418, "eje_aereo_segunda": -0.0157}, "Southampton": {"eje_verticalidad": -0.1239, "eje_elaboracion": 0.0797, "eje_individual": 0.0299, "eje_rotura_lineas": 0.0409, "eje_amplitud_centro": 0.0072, "eje_profundidad_espalda": 0.0111, "eje_robo_alto": 0.0164, "eje_aereo_segunda": -0.0646}, "Stoke City": {"eje_verticalidad": -0.0526, "eje_elaboracion": -0.0009, "eje_individual": -0.0051, "eje_rotura_lineas": -0.0091, "eje_amplitud_centro": 0.0204, "eje_profundidad_espalda": -0.0249, "eje_robo_alto": -0.0186, "eje_aereo_segunda": -0.0198}, "Swansea City": {"eje_verticalidad": -0.0823, "eje_elaboracion": 0.0717, "eje_individual": -0.0126, "eje_rotura_lineas": 0.0084, "eje_amplitud_centro": -0.0116, "eje_profundidad_espalda": 0.0036, "eje_robo_alto": -0.0111, "eje_aereo_segunda": 0.0105}, "Watford": {"eje_verticalidad": -0.0797, "eje_elaboracion": 0.0502, "eje_individual": 0.0236, "eje_rotura_lineas": 0.0155, "eje_amplitud_centro": -0.0082, "eje_profundidad_espalda": -0.0178, "eje_robo_alto": -0.0155, "eje_aereo_segunda": -0.016}, "West Bromwich Albion": {"eje_verticalidad": -0.065, "eje_elaboracion": 0.0203, "eje_individual": -0.0105, "eje_rotura_lineas": 0.0069, "eje_amplitud_centro": -0.0012, "eje_profundidad_espalda": -0.001, "eje_robo_alto": -0.0019, "eje_aereo_segunda": -0.0069}, "Wrexham": {"eje_verticalidad": -0.0062, "eje_elaboracion": 0.0245, "eje_individual": -0.0115, "eje_rotura_lineas": 0.033, "eje_amplitud_centro": 0.0188, "eje_profundidad_espalda": 0.0229, "eje_robo_alto": -0.032, "eje_aereo_segunda": 0.0242}}, "team_eje_norm_con": {"Birmingham City": {"eje_verticalidad": 0.0388, "eje_elaboracion": -0.04, "eje_individual": -0.0099, "eje_rotura_lineas": -0.0146, "eje_amplitud_centro": -0.02, "eje_profundidad_espalda": -0.008, "eje_robo_alto": -0.0547, "eje_aereo_segunda": 0.0231}, "Blackburn Rovers": {"eje_verticalidad": -0.0332, "eje_elaboracion": 0.0001, "eje_individual": 0.0062, "eje_rotura_lineas": -0.0178, "eje_amplitud_centro": -0.0246, "eje_profundidad_espalda": -0.0128, "eje_robo_alto": -0.0087, "eje_aereo_segunda": 0.0082}, "Bristol City": {"eje_verticalidad": -0.0436, "eje_elaboracion": 0.0276, "eje_individual": 0.0149, "eje_rotura_lineas": 0.0208, "eje_amplitud_centro": -0.0054, "eje_profundidad_espalda": -0.0107, "eje_robo_alto": 0.0146, "eje_aereo_segunda": -0.0218}, "Charlton Athletic": {"eje_verticalidad": -0.048, "eje_elaboracion": 0.0156, "eje_individual": -0.0082, "eje_rotura_lineas": -0.0105, "eje_amplitud_centro": 0.0206, "eje_profundidad_espalda": 0.0119, "eje_robo_alto": 0.0017, "eje_aereo_segunda": 0.0255}, "Coventry City": {"eje_verticalidad": 0.015, "eje_elaboracion": -0.0118, "eje_individual": -0.0102, "eje_rotura_lineas": 0.0323, "eje_amplitud_centro": -0.0017, "eje_profundidad_espalda": 0.0157, "eje_robo_alto": -0.0694, "eje_aereo_segunda": 0.0265}, "Derby County": {"eje_verticalidad": -0.0539, "eje_elaboracion": 0.0361, "eje_individual": -0.0071, "eje_rotura_lineas": -0.004, "eje_amplitud_centro": 0.0035, "eje_profundidad_espalda": -0.0091, "eje_robo_alto": 0.0133, "eje_aereo_segunda": -0.0014}, "Hull City": {"eje_verticalidad": -0.0525, "eje_elaboracion": 0.0118, "eje_individual": 0.0179, "eje_rotura_lineas": -0.003, "eje_amplitud_centro": -0.0039, "eje_profundidad_espalda": -0.013, "eje_robo_alto": 0.0284, "eje_aereo_segunda": 0.0004}, "Ipswich Town": {"eje_verticalidad": 0.0172, "eje_elaboracion": -0.0415, "eje_individual": -0.032, "eje_rotura_lineas": -0.0467, "eje_amplitud_centro": -0.02, "eje_profundidad_espalda": -0.0104, "eje_robo_alto": -0.0294, "eje_aereo_segunda": -0.0087}, "Leicester City": {"eje_verticalidad": -0.0533, "eje_elaboracion": 0.0034, "eje_individual": -0.0002, "eje_rotura_lineas": 0.012, "eje_amplitud_centro": 0.022, "eje_profundidad_espalda": 0.0294, "eje_robo_alto": 0.0377, "eje_aereo_segunda": -0.0294}, "Middlesbrough": {"eje_verticalidad": -0.0086, "eje_elaboracion": -0.0179, "eje_individual": 0.0042, "eje_rotura_lineas": -0.0202, "eje_amplitud_centro": -0.0131, "eje_profundidad_espalda": -0.0185, "eje_robo_alto": -0.0386, "eje_aereo_segunda": -0.0208}, "Millwall": {"eje_verticalidad": 0.0087, "eje_elaboracion": -0.0256, "eje_individual": 0.0057, "eje_rotura_lineas": -0.0229, "eje_amplitud_centro": -0.0043, "eje_profundidad_espalda": -0.0323, "eje_robo_alto": -0.0243, "eje_aereo_segunda": 0.0197}, "Norwich City": {"eje_verticalidad": -0.0187, "eje_elaboracion": -0.0133, "eje_individual": -0.0009, "eje_rotura_lineas": 0.0151, "eje_amplitud_centro": -0.0065, "eje_profundidad_espalda": 0.006, "eje_robo_alto": 0.0133, "eje_aereo_segunda": -0.006}, "Oxford United": {"eje_verticalidad": -0.0844, "eje_elaboracion": 0.0591, "eje_individual": 0.0391, "eje_rotura_lineas": 0.0356, "eje_amplitud_centro": 0.013, "eje_profundidad_espalda": 0.0344, "eje_robo_alto": 0.0507, "eje_aereo_segunda": -0.0257}, "Portsmouth": {"eje_verticalidad": 0.0422, "eje_elaboracion": -0.0483, "eje_individual": -0.02, "eje_rotura_lineas": -0.0218, "eje_amplitud_centro": -0.0091, "eje_profundidad_espalda": 0.0051, "eje_robo_alto": -0.0419, "eje_aereo_segunda": 0.0318}, "Preston North End": {"eje_verticalidad": -0.0342, "eje_elaboracion": 0.0018, "eje_individual": 0.0045, "eje_rotura_lineas": 0.024, "eje_amplitud_centro": -0.0078, "eje_profundidad_espalda": 0.0073, "eje_robo_alto": 0.0254, "eje_aereo_segunda": -0.0175}, "Queens Park Rangers": {"eje_verticalidad": -0.0361, "eje_elaboracion": 0.0301, "eje_individual": 0.0018, "eje_rotura_lineas": 0.0154, "eje_amplitud_centro": 0.0119, "eje_profundidad_espalda": 0.041, "eje_robo_alto": 0.0065, "eje_aereo_segunda": -0.0084}, "Sheffield United": {"eje_verticalidad": 0.0106, "eje_elaboracion": -0.0414, "eje_individual": -0.0103, "eje_rotura_lineas": -0.0121, "eje_amplitud_centro": 0.0057, "eje_profundidad_espalda": -0.0003, "eje_robo_alto": -0.0493, "eje_aereo_segunda": 0.014}, "Sheffield Wednesday": {"eje_verticalidad": -0.0659, "eje_elaboracion": 0.0363, "eje_individual": 0.0428, "eje_rotura_lineas": 0.0275, "eje_amplitud_centro": -0.0123, "eje_profundidad_espalda": 0.0049, "eje_robo_alto": 0.0403, "eje_aereo_segunda": -0.0136}, "Southampton": {"eje_verticalidad": -0.0462, "eje_elaboracion": -0.008, "eje_individual": -0.0115, "eje_rotura_lineas": -0.0154, "eje_amplitud_centro": 0.0177, "eje_profundidad_espalda": -0.0315, "eje_robo_alto": 0.0084, "eje_aereo_segunda": -0.0097}, "Stoke City": {"eje_verticalidad": -0.0109, "eje_elaboracion": -0.002, "eje_individual": -0.0161, "eje_rotura_lineas": 0.0085, "eje_amplitud_centro": 0.0115, "eje_profundidad_espalda": 0.0133, "eje_robo_alto": -0.0286, "eje_aereo_segunda": 0.0036}, "Swansea City": {"eje_verticalidad": -0.0303, "eje_elaboracion": -0.0097, "eje_individual": -0.0177, "eje_rotura_lineas": -0.0151, "eje_amplitud_centro": -0.0043, "eje_profundidad_espalda": 0.0157, "eje_robo_alto": 0.0182, "eje_aereo_segunda": 0.0109}, "Watford": {"eje_verticalidad": -0.0519, "eje_elaboracion": 0.0045, "eje_individual": -0.0017, "eje_rotura_lineas": 0.0104, "eje_amplitud_centro": 0.0116, "eje_profundidad_espalda": 0.0111, "eje_robo_alto": 0.0236, "eje_aereo_segunda": -0.0295}, "West Bromwich Albion": {"eje_verticalidad": -0.0148, "eje_elaboracion": 0.0299, "eje_individual": -0.0037, "eje_rotura_lineas": -0.0003, "eje_amplitud_centro": 0.0079, "eje_profundidad_espalda": -0.0049, "eje_robo_alto": -0.0231, "eje_aereo_segunda": 0.0082}, "Wrexham": {"eje_verticalidad": -0.0546, "eje_elaboracion": 0.0279, "eje_individual": 0.0037, "eje_rotura_lineas": 0.0205, "eje_amplitud_centro": 0.0035, "eje_profundidad_espalda": -0.0191, "eje_robo_alto": -0.0081, "eje_aereo_segunda": 0.0144}}} \ No newline at end of file diff --git a/vendor/data/ejes/english-football-league---championship/25-26/team_profiles.parquet b/vendor/data/ejes/english-football-league---championship/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..3c671e86f5b11beece0c5a90b267cb953393499b --- /dev/null +++ b/vendor/data/ejes/english-football-league---championship/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0364c25c174c2ee283e2d867e7f0a93f3c9ae3772930fbf3dc3d6ad759f28064 +size 10256 diff --git a/vendor/data/ejes/english-premier-league/25-26/ejes_definition.json b/vendor/data/ejes/english-premier-league/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/english-premier-league/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/english-premier-league/25-26/match_team_ejes.parquet b/vendor/data/ejes/english-premier-league/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..44d90d177b0c09b744dd35328f528c385478f617 --- /dev/null +++ b/vendor/data/ejes/english-premier-league/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f75f7d851fefd138c6897aadad06a128d79c934f87c88cf2ac4fb2f1a74df59 +size 88880 diff --git a/vendor/data/ejes/english-premier-league/25-26/match_team_vars.parquet b/vendor/data/ejes/english-premier-league/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..6eb0c660274ac296ef3cc6ba745ec6276f39ff08 --- /dev/null +++ b/vendor/data/ejes/english-premier-league/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3dafc7a35c498896228e897643b2fb42593ae5c845e6626bbe3b0fc21260fc5 +size 329160 diff --git a/vendor/data/ejes/english-premier-league/25-26/predictor.json b/vendor/data/ejes/english-premier-league/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..e81a144feb11ac6ad5d8b58a27fbc5de2bf59a6d --- /dev/null +++ b/vendor/data/ejes/english-premier-league/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.9498, "con": 0.828, "intercept": 0.0204}, "elaboracion": {"gen": 0.9694, "con": 0.8276, "intercept": -0.0009}, "individual": {"gen": 0.936, "con": 0.6468, "intercept": 0.0002}, "rotura_lineas": {"gen": 0.9539, "con": 0.7391, "intercept": -0.0007}, "amplitud_centro": {"gen": 0.7949, "con": 0.3855, "intercept": -0.0}, "profundidad_espalda": {"gen": 0.7989, "con": 0.5276, "intercept": -0.0002}, "robo_alto": {"gen": 0.7866, "con": 0.768, "intercept": 0.0024}, "aereo_segunda": {"gen": 0.93, "con": 0.7759, "intercept": 0.0001}} \ No newline at end of file diff --git a/vendor/data/ejes/english-premier-league/25-26/scales.json b/vendor/data/ejes/english-premier-league/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..6b373417a4e1ae578dd7bf146326c9299c837490 --- /dev/null +++ b/vendor/data/ejes/english-premier-league/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 1.9448, "atk_w": 1.3969, "ball_distance": 49.2486, "behind_line_ok": 0.0227, "broke_last_line": 0.0182, "broke_second_last": 0.0472, "cross_pvadded_max": 0.0016, "dang_runs": 0.0831, "deep_completions": 0.129, "def_h": 2.8705, "dribbles_box": 0.0107, "dribbles_last_third": 0.026, "duration_s": 21.1563, "hold_max": 1.7816, "hold_mean": 1.1114, "hold_min": 1.1074, "line_breaks": 0.2948, "max_x": 3.7103, "n_centros": 0.047, "n_events": 1.8042, "n_involved": 0.1794, "n_passes": 0.612, "opt_quality_mean": 0.1518, "paredes": 0.1175, "pass_options_mean": 1.1072, "passes_behind_line": 0.0353, "pct_adentro": 0.0354, "pct_afuera": 0.033, "pct_cortos": 0.0469, "pct_headpass": 0.0148, "pct_largos": 0.047, "pct_launch": 0.03, "pct_layoff": 0.0053, "pct_medios": 0.0421, "pct_switch": 0.0046, "pct_through": 0.0052, "pct_verticales": 0.0509, "pelotazos_espalda": 0.0314, "press_final": 0.2759, "press_media": 0.1526, "prog_x": 2.4056, "start_x": 4.4096, "starts_from_dispossess": 0.0198, "takeons_ok": 0.0212, "tempo": 0.038, "transition_speed": 0.6792, "verticalidad_media": 0.0604}, "eje_sigma": {"eje_verticalidad": 0.111, "eje_elaboracion": 0.0922, "eje_individual": 0.0629, "eje_rotura_lineas": 0.0612, "eje_amplitud_centro": 0.0531, "eje_profundidad_espalda": 0.0759, "eje_robo_alto": 0.0964, "eje_aereo_segunda": 0.0623}, "eje_match_mean": {"eje_verticalidad": -0.0263, "eje_elaboracion": 0.0012, "eje_individual": -0.0003, "eje_rotura_lineas": 0.001, "eje_amplitud_centro": 0.0002, "eje_profundidad_espalda": 0.0007, "eje_robo_alto": -0.0043, "eje_aereo_segunda": -0.0001}, "eje_match_std": {"eje_verticalidad": 0.1319, "eje_elaboracion": 0.1169, "eje_individual": 0.0738, "eje_rotura_lineas": 0.0734, "eje_amplitud_centro": 0.0563, "eje_profundidad_espalda": 0.0806, "eje_robo_alto": 0.1023, "eje_aereo_segunda": 0.0703}, "team_var_norm": {"Arsenal": {"atk_l": 39.9542, "atk_w": 31.5721, "ball_distance": 152.5335, "behind_line_ok": 0.0625, "broke_last_line": 0.0427, "broke_second_last": 0.199, "cross_pvadded_max": 0.0021, "dang_runs": 0.1784, "deep_completions": 0.485, "def_h": 29.2129, "dribbles_box": 0.0221, "dribbles_last_third": 0.0857, "duration_s": 30.1744, "hold_max": 11.2655, "hold_mean": 6.5526, "hold_min": 4.2409, "line_breaks": 0.7795, "max_x": 71.8979, "n_centros": 0.1296, "n_events": 6.0806, "n_involved": 1.9161, "n_passes": 3.7098, "opt_quality_mean": 0.2023, "paredes": 0.3892, "pass_options_mean": 9.0759, "passes_behind_line": 0.1357, "pct_adentro": 0.5026, "pct_afuera": 0.4057, "pct_cortos": 0.3944, "pct_headpass": 0.051, "pct_largos": 0.1921, "pct_launch": 0.0954, "pct_layoff": 0.0098, "pct_medios": 0.3227, "pct_switch": 0.003, "pct_through": 0.0082, "pct_verticales": 0.4519, "pelotazos_espalda": 0.0962, "press_final": 2.7373, "press_media": 2.0082, "prog_x": 24.322, "start_x": 48.9298, "starts_from_dispossess": 0.0517, "takeons_ok": 0.0526, "tempo": 0.3746, "transition_speed": 3.3874, "verticalidad_media": 0.2994}, "Aston Villa": {"atk_l": 40.8541, "atk_w": 32.6949, "ball_distance": 125.1784, "behind_line_ok": 0.0523, "broke_last_line": 0.0329, "broke_second_last": 0.1826, "cross_pvadded_max": 0.0013, "dang_runs": 0.1408, "deep_completions": 0.4026, "def_h": 32.4156, "dribbles_box": 0.0119, "dribbles_last_third": 0.0536, "duration_s": 31.127, "hold_max": 11.6413, "hold_mean": 6.4893, "hold_min": 3.8698, "line_breaks": 0.6928, "max_x": 66.1792, "n_centros": 0.1141, "n_events": 6.0001, "n_involved": 1.8921, "n_passes": 3.5502, "opt_quality_mean": 0.1039, "paredes": 0.3388, "pass_options_mean": 9.1449, "passes_behind_line": 0.1199, "pct_adentro": 0.5156, "pct_afuera": 0.3989, "pct_cortos": 0.4136, "pct_headpass": 0.0372, "pct_largos": 0.1773, "pct_launch": 0.049, "pct_layoff": 0.0119, "pct_medios": 0.324, "pct_switch": 0.0039, "pct_through": 0.0048, "pct_verticales": 0.4391, "pelotazos_espalda": 0.0863, "press_final": 2.7014, "press_media": 1.9404, "prog_x": 23.9567, "start_x": 43.333, "starts_from_dispossess": 0.0493, "takeons_ok": 0.0458, "tempo": 0.3702, "transition_speed": 2.9044, "verticalidad_media": 0.2804}, "Bournemouth": {"atk_l": 42.2068, "atk_w": 32.7638, "ball_distance": 126.3423, "behind_line_ok": 0.0529, "broke_last_line": 0.0281, "broke_second_last": 0.1536, "cross_pvadded_max": 0.0009, "dang_runs": 0.148, "deep_completions": 0.3304, "def_h": 31.3587, "dribbles_box": 0.0106, "dribbles_last_third": 0.0595, "duration_s": 22.6282, "hold_max": 10.2001, "hold_mean": 6.6098, "hold_min": 4.4613, "line_breaks": 0.592, "max_x": 69.9128, "n_centros": 0.1291, "n_events": 5.2814, "n_involved": 1.8737, "n_passes": 3.1237, "opt_quality_mean": 0.0803, "paredes": 0.2685, "pass_options_mean": 8.788, "passes_behind_line": 0.1418, "pct_adentro": 0.5009, "pct_afuera": 0.3964, "pct_cortos": 0.3799, "pct_headpass": 0.0477, "pct_largos": 0.213, "pct_launch": 0.0933, "pct_layoff": 0.01, "pct_medios": 0.3054, "pct_switch": 0.0039, "pct_through": 0.0056, "pct_verticales": 0.4608, "pelotazos_espalda": 0.1066, "press_final": 2.4998, "press_media": 1.8383, "prog_x": 25.8939, "start_x": 45.3575, "starts_from_dispossess": 0.046, "takeons_ok": 0.0532, "tempo": 0.3699, "transition_speed": 3.6607, "verticalidad_media": 0.3262}, "Brentford": {"atk_l": 38.7863, "atk_w": 32.5392, "ball_distance": 122.967, "behind_line_ok": 0.0419, "broke_last_line": 0.0299, "broke_second_last": 0.1404, "cross_pvadded_max": 0.0014, "dang_runs": 0.1522, "deep_completions": 0.2925, "def_h": 31.4009, "dribbles_box": 0.0106, "dribbles_last_third": 0.0635, "duration_s": 32.8363, "hold_max": 11.2792, "hold_mean": 7.0044, "hold_min": 4.6869, "line_breaks": 0.5428, "max_x": 68.8428, "n_centros": 0.1261, "n_events": 5.9928, "n_involved": 1.8603, "n_passes": 3.0773, "opt_quality_mean": 0.0721, "paredes": 0.2804, "pass_options_mean": 9.0633, "passes_behind_line": 0.1258, "pct_adentro": 0.5052, "pct_afuera": 0.406, "pct_cortos": 0.3668, "pct_headpass": 0.0599, "pct_largos": 0.2504, "pct_launch": 0.1011, "pct_layoff": 0.0099, "pct_medios": 0.2948, "pct_switch": 0.0036, "pct_through": 0.0051, "pct_verticales": 0.4841, "pelotazos_espalda": 0.1023, "press_final": 2.4849, "press_media": 1.8539, "prog_x": 25.6651, "start_x": 43.9705, "starts_from_dispossess": 0.0448, "takeons_ok": 0.0473, "tempo": 0.3742, "transition_speed": 3.7474, "verticalidad_media": 0.3532}, "Brighton & Hove Albion": {"atk_l": 41.3799, "atk_w": 31.7234, "ball_distance": 145.2305, "behind_line_ok": 0.0535, "broke_last_line": 0.0398, "broke_second_last": 0.1874, "cross_pvadded_max": 0.0017, "dang_runs": 0.1553, "deep_completions": 0.3732, "def_h": 31.3732, "dribbles_box": 0.018, "dribbles_last_third": 0.0718, "duration_s": 26.1466, "hold_max": 9.8505, "hold_mean": 5.617, "hold_min": 3.3302, "line_breaks": 0.7556, "max_x": 68.9194, "n_centros": 0.1302, "n_events": 5.8491, "n_involved": 2.0064, "n_passes": 3.5961, "opt_quality_mean": 0.0958, "paredes": 0.3901, "pass_options_mean": 9.2336, "passes_behind_line": 0.1251, "pct_adentro": 0.5225, "pct_afuera": 0.3841, "pct_cortos": 0.4288, "pct_headpass": 0.0496, "pct_largos": 0.1693, "pct_launch": 0.0752, "pct_layoff": 0.0123, "pct_medios": 0.3089, "pct_switch": 0.0051, "pct_through": 0.0039, "pct_verticales": 0.4396, "pelotazos_espalda": 0.0909, "press_final": 2.6091, "press_media": 1.8813, "prog_x": 24.5549, "start_x": 45.5596, "starts_from_dispossess": 0.0544, "takeons_ok": 0.049, "tempo": 0.3801, "transition_speed": 3.1839, "verticalidad_media": 0.2863}, "Burnley": {"atk_l": 38.5661, "atk_w": 29.8388, "ball_distance": 132.9698, "behind_line_ok": 0.0487, "broke_last_line": 0.032, "broke_second_last": 0.1414, "cross_pvadded_max": 0.0006, "dang_runs": 0.1278, "deep_completions": 0.2744, "def_h": 33.1998, "dribbles_box": 0.008, "dribbles_last_third": 0.0495, "duration_s": 28.2336, "hold_max": 11.3985, "hold_mean": 7.4129, "hold_min": 5.1601, "line_breaks": 0.7472, "max_x": 66.6195, "n_centros": 0.0998, "n_events": 5.5846, "n_involved": 1.853, "n_passes": 3.0895, "opt_quality_mean": 0.005, "paredes": 0.2577, "pass_options_mean": 8.9124, "passes_behind_line": 0.1398, "pct_adentro": 0.4836, "pct_afuera": 0.4318, "pct_cortos": 0.3875, "pct_headpass": 0.0492, "pct_largos": 0.2431, "pct_launch": 0.0977, "pct_layoff": 0.0109, "pct_medios": 0.2854, "pct_switch": 0.007, "pct_through": 0.0029, "pct_verticales": 0.5063, "pelotazos_espalda": 0.1093, "press_final": 2.6344, "press_media": 1.8274, "prog_x": 25.3844, "start_x": 42.2371, "starts_from_dispossess": 0.046, "takeons_ok": 0.0374, "tempo": 0.3604, "transition_speed": 3.3684, "verticalidad_media": 0.3756}, "Chelsea": {"atk_l": 43.2465, "atk_w": 31.5785, "ball_distance": 215.3119, "behind_line_ok": 0.0647, "broke_last_line": 0.0416, "broke_second_last": 0.1833, "cross_pvadded_max": 0.0017, "dang_runs": 0.2116, "deep_completions": 0.4157, "def_h": 31.7925, "dribbles_box": 0.0146, "dribbles_last_third": 0.07, "duration_s": 34.5828, "hold_max": 11.2743, "hold_mean": 5.9068, "hold_min": 3.5488, "line_breaks": 1.1045, "max_x": 68.3763, "n_centros": 0.1325, "n_events": 7.0571, "n_involved": 2.1457, "n_passes": 4.3547, "opt_quality_mean": 0.0854, "paredes": 0.5259, "pass_options_mean": 9.1411, "passes_behind_line": 0.1406, "pct_adentro": 0.4843, "pct_afuera": 0.4237, "pct_cortos": 0.4315, "pct_headpass": 0.0382, "pct_largos": 0.1665, "pct_launch": 0.0683, "pct_layoff": 0.0149, "pct_medios": 0.3108, "pct_switch": 0.0026, "pct_through": 0.005, "pct_verticales": 0.4209, "pelotazos_espalda": 0.0948, "press_final": 2.6201, "press_media": 1.8747, "prog_x": 24.1786, "start_x": 45.4387, "starts_from_dispossess": 0.0454, "takeons_ok": 0.0537, "tempo": 0.3826, "transition_speed": 2.9529, "verticalidad_media": 0.2602}, "Crystal Palace": {"atk_l": 40.8358, "atk_w": 31.5516, "ball_distance": 134.7579, "behind_line_ok": 0.0442, "broke_last_line": 0.027, "broke_second_last": 0.1585, "cross_pvadded_max": 0.0015, "dang_runs": 0.1324, "deep_completions": 0.275, "def_h": 31.9563, "dribbles_box": 0.005, "dribbles_last_third": 0.0375, "duration_s": 30.1082, "hold_max": 10.8252, "hold_mean": 6.7637, "hold_min": 4.4754, "line_breaks": 0.6646, "max_x": 68.2738, "n_centros": 0.1153, "n_events": 5.8455, "n_involved": 1.9354, "n_passes": 3.114, "opt_quality_mean": 0.057, "paredes": 0.2397, "pass_options_mean": 9.1034, "passes_behind_line": 0.137, "pct_adentro": 0.5299, "pct_afuera": 0.3868, "pct_cortos": 0.3815, "pct_headpass": 0.0555, "pct_largos": 0.2212, "pct_launch": 0.1038, "pct_layoff": 0.0108, "pct_medios": 0.315, "pct_switch": 0.0043, "pct_through": 0.0059, "pct_verticales": 0.4916, "pelotazos_espalda": 0.1056, "press_final": 2.5136, "press_media": 1.8403, "prog_x": 25.9403, "start_x": 43.8052, "starts_from_dispossess": 0.0469, "takeons_ok": 0.0296, "tempo": 0.3964, "transition_speed": 3.7824, "verticalidad_media": 0.3644}, "Everton": {"atk_l": 41.4289, "atk_w": 31.8392, "ball_distance": 124.7074, "behind_line_ok": 0.0513, "broke_last_line": 0.0241, "broke_second_last": 0.1658, "cross_pvadded_max": 0.0013, "dang_runs": 0.0997, "deep_completions": 0.3407, "def_h": 30.9533, "dribbles_box": 0.0095, "dribbles_last_third": 0.0643, "duration_s": 28.5264, "hold_max": 11.393, "hold_mean": 7.0729, "hold_min": 4.6477, "line_breaks": 0.606, "max_x": 69.2257, "n_centros": 0.1264, "n_events": 5.6264, "n_involved": 1.8595, "n_passes": 3.0205, "opt_quality_mean": 0.1009, "paredes": 0.2487, "pass_options_mean": 8.9073, "passes_behind_line": 0.1445, "pct_adentro": 0.5124, "pct_afuera": 0.392, "pct_cortos": 0.3737, "pct_headpass": 0.0598, "pct_largos": 0.2247, "pct_launch": 0.0935, "pct_layoff": 0.0105, "pct_medios": 0.3068, "pct_switch": 0.0052, "pct_through": 0.0044, "pct_verticales": 0.4771, "pelotazos_espalda": 0.11, "press_final": 2.6879, "press_media": 1.8687, "prog_x": 25.0567, "start_x": 45.2835, "starts_from_dispossess": 0.0529, "takeons_ok": 0.0474, "tempo": 0.3657, "transition_speed": 3.5821, "verticalidad_media": 0.3419}, "Fulham": {"atk_l": 42.9949, "atk_w": 32.4068, "ball_distance": 155.3378, "behind_line_ok": 0.0578, "broke_last_line": 0.0416, "broke_second_last": 0.1764, "cross_pvadded_max": 0.0014, "dang_runs": 0.187, "deep_completions": 0.3849, "def_h": 33.0526, "dribbles_box": 0.0143, "dribbles_last_third": 0.0534, "duration_s": 29.0865, "hold_max": 10.5148, "hold_mean": 6.0111, "hold_min": 3.5895, "line_breaks": 0.8446, "max_x": 67.7908, "n_centros": 0.1352, "n_events": 6.1747, "n_involved": 2.0149, "n_passes": 3.813, "opt_quality_mean": 0.0533, "paredes": 0.3818, "pass_options_mean": 9.0321, "passes_behind_line": 0.1284, "pct_adentro": 0.5094, "pct_afuera": 0.4023, "pct_cortos": 0.4089, "pct_headpass": 0.0407, "pct_largos": 0.1755, "pct_launch": 0.0705, "pct_layoff": 0.0108, "pct_medios": 0.3282, "pct_switch": 0.0055, "pct_through": 0.0034, "pct_verticales": 0.4426, "pelotazos_espalda": 0.0886, "press_final": 2.5283, "press_media": 1.8146, "prog_x": 25.6791, "start_x": 43.357, "starts_from_dispossess": 0.0449, "takeons_ok": 0.0452, "tempo": 0.3878, "transition_speed": 3.1284, "verticalidad_media": 0.2824}, "Leeds United": {"atk_l": 39.0822, "atk_w": 30.6791, "ball_distance": 134.8237, "behind_line_ok": 0.0431, "broke_last_line": 0.0206, "broke_second_last": 0.1441, "cross_pvadded_max": 0.0016, "dang_runs": 0.1205, "deep_completions": 0.2612, "def_h": 31.3873, "dribbles_box": 0.0112, "dribbles_last_third": 0.0568, "duration_s": 22.3073, "hold_max": 11.0452, "hold_mean": 7.071, "hold_min": 4.8674, "line_breaks": 0.6575, "max_x": 68.3326, "n_centros": 0.124, "n_events": 5.1693, "n_involved": 1.885, "n_passes": 3.0478, "opt_quality_mean": 0.0451, "paredes": 0.2831, "pass_options_mean": 8.9347, "passes_behind_line": 0.1305, "pct_adentro": 0.4923, "pct_afuera": 0.4086, "pct_cortos": 0.3654, "pct_headpass": 0.0568, "pct_largos": 0.2351, "pct_launch": 0.0978, "pct_layoff": 0.0123, "pct_medios": 0.3011, "pct_switch": 0.0021, "pct_through": 0.0023, "pct_verticales": 0.485, "pelotazos_espalda": 0.1041, "press_final": 2.6985, "press_media": 1.9075, "prog_x": 24.6162, "start_x": 45.0849, "starts_from_dispossess": 0.0454, "takeons_ok": 0.0405, "tempo": 0.364, "transition_speed": 3.3698, "verticalidad_media": 0.362}, "Liverpool": {"atk_l": 41.8751, "atk_w": 32.0574, "ball_distance": 162.5664, "behind_line_ok": 0.059, "broke_last_line": 0.0428, "broke_second_last": 0.2125, "cross_pvadded_max": 0.0012, "dang_runs": 0.183, "deep_completions": 0.5221, "def_h": 30.5463, "dribbles_box": 0.0173, "dribbles_last_third": 0.075, "duration_s": 30.9069, "hold_max": 10.5426, "hold_mean": 5.7224, "hold_min": 3.4288, "line_breaks": 0.8926, "max_x": 70.289, "n_centros": 0.1392, "n_events": 6.4733, "n_involved": 1.998, "n_passes": 4.0593, "opt_quality_mean": 0.1755, "paredes": 0.4726, "pass_options_mean": 9.2171, "passes_behind_line": 0.1253, "pct_adentro": 0.5096, "pct_afuera": 0.4047, "pct_cortos": 0.4249, "pct_headpass": 0.0478, "pct_largos": 0.1788, "pct_launch": 0.0613, "pct_layoff": 0.0107, "pct_medios": 0.3119, "pct_switch": 0.0054, "pct_through": 0.0052, "pct_verticales": 0.4453, "pelotazos_espalda": 0.0809, "press_final": 2.5666, "press_media": 1.9003, "prog_x": 25.1029, "start_x": 46.2123, "starts_from_dispossess": 0.0428, "takeons_ok": 0.0567, "tempo": 0.3769, "transition_speed": 3.1742, "verticalidad_media": 0.2857}, "Manchester City": {"atk_l": 42.058, "atk_w": 30.2335, "ball_distance": 214.5388, "behind_line_ok": 0.056, "broke_last_line": 0.0411, "broke_second_last": 0.2185, "cross_pvadded_max": 0.0015, "dang_runs": 0.1942, "deep_completions": 0.54, "def_h": 30.9946, "dribbles_box": 0.0276, "dribbles_last_third": 0.1066, "duration_s": 32.7572, "hold_max": 10.0583, "hold_mean": 5.3623, "hold_min": 2.9851, "line_breaks": 1.1551, "max_x": 68.7322, "n_centros": 0.1182, "n_events": 6.9974, "n_involved": 2.1253, "n_passes": 4.5744, "opt_quality_mean": 0.1732, "paredes": 0.5569, "pass_options_mean": 9.2676, "passes_behind_line": 0.1043, "pct_adentro": 0.5175, "pct_afuera": 0.3908, "pct_cortos": 0.4724, "pct_headpass": 0.0373, "pct_largos": 0.1336, "pct_launch": 0.0537, "pct_layoff": 0.0123, "pct_medios": 0.3042, "pct_switch": 0.0039, "pct_through": 0.0074, "pct_verticales": 0.4005, "pelotazos_espalda": 0.06, "press_final": 2.7976, "press_media": 2.0419, "prog_x": 22.5733, "start_x": 47.508, "starts_from_dispossess": 0.058, "takeons_ok": 0.0769, "tempo": 0.3649, "transition_speed": 2.4695, "verticalidad_media": 0.2369}, "Manchester United": {"atk_l": 41.262, "atk_w": 30.9967, "ball_distance": 144.0014, "behind_line_ok": 0.0558, "broke_last_line": 0.0409, "broke_second_last": 0.1902, "cross_pvadded_max": 0.0016, "dang_runs": 0.1674, "deep_completions": 0.3739, "def_h": 31.8318, "dribbles_box": 0.0099, "dribbles_last_third": 0.0546, "duration_s": 31.0033, "hold_max": 10.3944, "hold_mean": 6.0523, "hold_min": 3.7252, "line_breaks": 0.8447, "max_x": 67.6329, "n_centros": 0.1181, "n_events": 6.1883, "n_involved": 2.0067, "n_passes": 3.56, "opt_quality_mean": 0.059, "paredes": 0.3441, "pass_options_mean": 9.2152, "passes_behind_line": 0.1211, "pct_adentro": 0.5081, "pct_afuera": 0.4084, "pct_cortos": 0.4296, "pct_headpass": 0.0504, "pct_largos": 0.1861, "pct_launch": 0.0733, "pct_layoff": 0.0138, "pct_medios": 0.3017, "pct_switch": 0.0063, "pct_through": 0.0067, "pct_verticales": 0.4633, "pelotazos_espalda": 0.084, "press_final": 2.6004, "press_media": 1.95, "prog_x": 24.5258, "start_x": 44.3396, "starts_from_dispossess": 0.0473, "takeons_ok": 0.045, "tempo": 0.3819, "transition_speed": 3.088, "verticalidad_media": 0.3054}, "Newcastle United": {"atk_l": 40.6166, "atk_w": 31.3738, "ball_distance": 149.7508, "behind_line_ok": 0.0563, "broke_last_line": 0.0396, "broke_second_last": 0.1638, "cross_pvadded_max": 0.0017, "dang_runs": 0.1586, "deep_completions": 0.4079, "def_h": 30.8747, "dribbles_box": 0.0112, "dribbles_last_third": 0.0626, "duration_s": 27.9568, "hold_max": 11.2772, "hold_mean": 6.885, "hold_min": 4.5796, "line_breaks": 0.7972, "max_x": 69.8765, "n_centros": 0.1626, "n_events": 5.9389, "n_involved": 1.994, "n_passes": 3.5258, "opt_quality_mean": 0.1306, "paredes": 0.3132, "pass_options_mean": 8.9807, "passes_behind_line": 0.1315, "pct_adentro": 0.5011, "pct_afuera": 0.4084, "pct_cortos": 0.3939, "pct_headpass": 0.0478, "pct_largos": 0.2046, "pct_launch": 0.0741, "pct_layoff": 0.0091, "pct_medios": 0.312, "pct_switch": 0.0052, "pct_through": 0.0046, "pct_verticales": 0.4568, "pelotazos_espalda": 0.0906, "press_final": 2.5552, "press_media": 1.8543, "prog_x": 25.641, "start_x": 45.491, "starts_from_dispossess": 0.0458, "takeons_ok": 0.0475, "tempo": 0.3718, "transition_speed": 3.0399, "verticalidad_media": 0.3186}, "Nottingham Forest": {"atk_l": 40.9922, "atk_w": 32.1841, "ball_distance": 120.8511, "behind_line_ok": 0.062, "broke_last_line": 0.0345, "broke_second_last": 0.1735, "cross_pvadded_max": 0.0013, "dang_runs": 0.149, "deep_completions": 0.3764, "def_h": 31.9527, "dribbles_box": 0.0122, "dribbles_last_third": 0.0592, "duration_s": 25.9287, "hold_max": 10.6287, "hold_mean": 6.3952, "hold_min": 4.0134, "line_breaks": 0.653, "max_x": 68.625, "n_centros": 0.1543, "n_events": 5.5481, "n_involved": 1.8568, "n_passes": 3.2329, "opt_quality_mean": 0.0615, "paredes": 0.2979, "pass_options_mean": 9.045, "passes_behind_line": 0.1412, "pct_adentro": 0.4964, "pct_afuera": 0.4052, "pct_cortos": 0.3935, "pct_headpass": 0.0471, "pct_largos": 0.2074, "pct_launch": 0.0848, "pct_layoff": 0.0106, "pct_medios": 0.3011, "pct_switch": 0.0052, "pct_through": 0.0034, "pct_verticales": 0.4672, "pelotazos_espalda": 0.1061, "press_final": 2.5275, "press_media": 1.8495, "prog_x": 25.6466, "start_x": 44.0476, "starts_from_dispossess": 0.0489, "takeons_ok": 0.0526, "tempo": 0.3708, "transition_speed": 3.4531, "verticalidad_media": 0.3181}, "Sunderland": {"atk_l": 39.6739, "atk_w": 31.6313, "ball_distance": 121.2868, "behind_line_ok": 0.0514, "broke_last_line": 0.029, "broke_second_last": 0.1491, "cross_pvadded_max": 0.0008, "dang_runs": 0.1328, "deep_completions": 0.2947, "def_h": 31.4127, "dribbles_box": 0.0102, "dribbles_last_third": 0.0487, "duration_s": 36.3035, "hold_max": 11.9512, "hold_mean": 7.4824, "hold_min": 5.08, "line_breaks": 0.6079, "max_x": 68.8165, "n_centros": 0.1179, "n_events": 6.1526, "n_involved": 1.8246, "n_passes": 3.0685, "opt_quality_mean": 0.0598, "paredes": 0.2633, "pass_options_mean": 9.0016, "passes_behind_line": 0.1414, "pct_adentro": 0.5053, "pct_afuera": 0.4045, "pct_cortos": 0.3614, "pct_headpass": 0.0544, "pct_largos": 0.2314, "pct_launch": 0.1024, "pct_layoff": 0.0102, "pct_medios": 0.3175, "pct_switch": 0.0055, "pct_through": 0.0036, "pct_verticales": 0.4869, "pelotazos_espalda": 0.1092, "press_final": 2.5254, "press_media": 1.7951, "prog_x": 26.1127, "start_x": 43.8096, "starts_from_dispossess": 0.0438, "takeons_ok": 0.039, "tempo": 0.3472, "transition_speed": 3.2512, "verticalidad_media": 0.3476}, "Tottenham Hotspur": {"atk_l": 41.3602, "atk_w": 31.3774, "ball_distance": 132.285, "behind_line_ok": 0.0415, "broke_last_line": 0.0275, "broke_second_last": 0.1541, "cross_pvadded_max": 0.0014, "dang_runs": 0.1427, "deep_completions": 0.3076, "def_h": 32.0673, "dribbles_box": 0.0156, "dribbles_last_third": 0.0735, "duration_s": 31.7048, "hold_max": 10.8978, "hold_mean": 6.4621, "hold_min": 4.0268, "line_breaks": 0.5815, "max_x": 67.29, "n_centros": 0.1386, "n_events": 6.0149, "n_involved": 1.9015, "n_passes": 3.167, "opt_quality_mean": 0.0926, "paredes": 0.2996, "pass_options_mean": 9.0409, "passes_behind_line": 0.1108, "pct_adentro": 0.492, "pct_afuera": 0.4024, "pct_cortos": 0.3852, "pct_headpass": 0.0459, "pct_largos": 0.2018, "pct_launch": 0.0804, "pct_layoff": 0.0088, "pct_medios": 0.3089, "pct_switch": 0.0054, "pct_through": 0.0021, "pct_verticales": 0.4492, "pelotazos_espalda": 0.0836, "press_final": 2.692, "press_media": 1.927, "prog_x": 23.4862, "start_x": 44.9267, "starts_from_dispossess": 0.0602, "takeons_ok": 0.0652, "tempo": 0.3574, "transition_speed": 3.1688, "verticalidad_media": 0.3177}, "West Ham United": {"atk_l": 40.098, "atk_w": 31.9082, "ball_distance": 121.0013, "behind_line_ok": 0.0403, "broke_last_line": 0.0246, "broke_second_last": 0.1496, "cross_pvadded_max": 0.0014, "dang_runs": 0.1308, "deep_completions": 0.2826, "def_h": 32.4301, "dribbles_box": 0.0123, "dribbles_last_third": 0.0578, "duration_s": 32.3608, "hold_max": 11.0715, "hold_mean": 6.8818, "hold_min": 4.4902, "line_breaks": 0.6058, "max_x": 67.703, "n_centros": 0.1231, "n_events": 5.9115, "n_involved": 1.8588, "n_passes": 3.0502, "opt_quality_mean": 0.0184, "paredes": 0.2867, "pass_options_mean": 8.9971, "passes_behind_line": 0.1236, "pct_adentro": 0.4915, "pct_afuera": 0.4138, "pct_cortos": 0.3951, "pct_headpass": 0.0479, "pct_largos": 0.2347, "pct_launch": 0.1032, "pct_layoff": 0.0128, "pct_medios": 0.2762, "pct_switch": 0.0068, "pct_through": 0.0036, "pct_verticales": 0.5051, "pelotazos_espalda": 0.0926, "press_final": 2.7047, "press_media": 1.8725, "prog_x": 25.6127, "start_x": 43.0244, "starts_from_dispossess": 0.0497, "takeons_ok": 0.0518, "tempo": 0.3758, "transition_speed": 3.5711, "verticalidad_media": 0.3698}, "Wolverhampton Wanderers": {"atk_l": 40.8191, "atk_w": 31.34, "ball_distance": 112.2532, "behind_line_ok": 0.0484, "broke_last_line": 0.0251, "broke_second_last": 0.1432, "cross_pvadded_max": 0.0014, "dang_runs": 0.1172, "deep_completions": 0.2558, "def_h": 33.0558, "dribbles_box": 0.0085, "dribbles_last_third": 0.0481, "duration_s": 34.5718, "hold_max": 11.2697, "hold_mean": 6.7906, "hold_min": 4.51, "line_breaks": 0.5765, "max_x": 66.9658, "n_centros": 0.1339, "n_events": 6.1024, "n_involved": 1.8534, "n_passes": 3.0225, "opt_quality_mean": 0.0175, "paredes": 0.2575, "pass_options_mean": 8.694, "passes_behind_line": 0.1302, "pct_adentro": 0.4966, "pct_afuera": 0.4129, "pct_cortos": 0.3741, "pct_headpass": 0.053, "pct_largos": 0.2268, "pct_launch": 0.0889, "pct_layoff": 0.0109, "pct_medios": 0.3099, "pct_switch": 0.0033, "pct_through": 0.0023, "pct_verticales": 0.4901, "pelotazos_espalda": 0.1007, "press_final": 2.5704, "press_media": 1.8879, "prog_x": 25.6212, "start_x": 42.4106, "starts_from_dispossess": 0.0531, "takeons_ok": 0.0502, "tempo": 0.3685, "transition_speed": 3.6455, "verticalidad_media": 0.3497}}, "team_eje_norm_gen": {"Arsenal": {"eje_verticalidad": -0.0479, "eje_elaboracion": 0.0318, "eje_individual": 0.0514, "eje_rotura_lineas": 0.0532, "eje_amplitud_centro": -0.0082, "eje_profundidad_espalda": 0.0529, "eje_robo_alto": 0.0803, "eje_aereo_segunda": 0.013}, "Aston Villa": {"eje_verticalidad": -0.0975, "eje_elaboracion": 0.0203, "eje_individual": -0.0179, "eje_rotura_lineas": 0.0062, "eje_amplitud_centro": -0.0244, "eje_profundidad_espalda": -0.0013, "eje_robo_alto": -0.0286, "eje_aereo_segunda": -0.067}, "Bournemouth": {"eje_verticalidad": -0.0053, "eje_elaboracion": -0.0552, "eje_individual": -0.0052, "eje_rotura_lineas": -0.0231, "eje_amplitud_centro": -0.0119, "eje_profundidad_espalda": 0.011, "eje_robo_alto": 0.001, "eje_aereo_segunda": 0.0045}, "Brentford": {"eje_verticalidad": 0.06, "eje_elaboracion": -0.0558, "eje_individual": -0.0064, "eje_rotura_lineas": -0.0348, "eje_amplitud_centro": -0.0073, "eje_profundidad_espalda": -0.0265, "eje_robo_alto": -0.0273, "eje_aereo_segunda": 0.0392}, "Brighton & Hove Albion": {"eje_verticalidad": -0.0907, "eje_elaboracion": 0.045, "eje_individual": 0.0196, "eje_rotura_lineas": 0.0194, "eje_amplitud_centro": -0.0141, "eje_profundidad_espalda": -0.001, "eje_robo_alto": 0.0243, "eje_aereo_segunda": -0.0034}, "Burnley": {"eje_verticalidad": 0.0677, "eje_elaboracion": -0.0514, "eje_individual": -0.0425, "eje_rotura_lineas": -0.0242, "eje_amplitud_centro": 0.0137, "eje_profundidad_espalda": -0.0088, "eje_robo_alto": -0.0567, "eje_aereo_segunda": 0.0187}, "Chelsea": {"eje_verticalidad": -0.1289, "eje_elaboracion": 0.1398, "eje_individual": 0.0312, "eje_rotura_lineas": 0.0554, "eje_amplitud_centro": 0.0087, "eje_profundidad_espalda": 0.0373, "eje_robo_alto": 0.0013, "eje_aereo_segunda": -0.0206}, "Crystal Palace": {"eje_verticalidad": 0.0537, "eje_elaboracion": -0.0579, "eje_individual": -0.0674, "eje_rotura_lineas": -0.0138, "eje_amplitud_centro": -0.0314, "eje_profundidad_espalda": -0.0185, "eje_robo_alto": -0.0255, "eje_aereo_segunda": 0.0393}, "Everton": {"eje_verticalidad": 0.021, "eje_elaboracion": -0.0673, "eje_individual": -0.0225, "eje_rotura_lineas": -0.0256, "eje_amplitud_centro": -0.0102, "eje_profundidad_espalda": 0.0171, "eje_robo_alto": 0.0157, "eje_aereo_segunda": 0.032}, "Fulham": {"eje_verticalidad": -0.0863, "eje_elaboracion": 0.0447, "eje_individual": -0.0012, "eje_rotura_lineas": 0.0212, "eje_amplitud_centro": 0.0101, "eje_profundidad_espalda": 0.0072, "eje_robo_alto": -0.0385, "eje_aereo_segunda": -0.0363}, "Leeds United": {"eje_verticalidad": 0.0364, "eje_elaboracion": -0.0653, "eje_individual": -0.0276, "eje_rotura_lineas": -0.0487, "eje_amplitud_centro": -0.0175, "eje_profundidad_espalda": -0.0294, "eje_robo_alto": -0.0053, "eje_aereo_segunda": 0.0425}, "Liverpool": {"eje_verticalidad": -0.0774, "eje_elaboracion": 0.0987, "eje_individual": 0.0369, "eje_rotura_lineas": 0.0569, "eje_amplitud_centro": 0.0161, "eje_profundidad_espalda": 0.0398, "eje_robo_alto": 0.0094, "eje_aereo_segunda": -0.0359}, "Manchester City": {"eje_verticalidad": -0.1988, "eje_elaboracion": 0.1883, "eje_individual": 0.1132, "eje_rotura_lineas": 0.0912, "eje_amplitud_centro": -0.0278, "eje_profundidad_espalda": 0.0092, "eje_robo_alto": 0.0686, "eje_aereo_segunda": -0.0579}, "Manchester United": {"eje_verticalidad": -0.0523, "eje_elaboracion": 0.0331, "eje_individual": -0.0147, "eje_rotura_lineas": 0.044, "eje_amplitud_centro": 0.0047, "eje_profundidad_espalda": -0.0071, "eje_robo_alto": -0.0148, "eje_aereo_segunda": 0.0044}, "Newcastle United": {"eje_verticalidad": -0.0392, "eje_elaboracion": -0.0041, "eje_individual": -0.0042, "eje_rotura_lineas": 0.012, "eje_amplitud_centro": 0.0414, "eje_profundidad_espalda": 0.0163, "eje_robo_alto": 0.003, "eje_aereo_segunda": -0.0269}, "Nottingham Forest": {"eje_verticalidad": -0.0178, "eje_elaboracion": -0.0284, "eje_individual": -0.0026, "eje_rotura_lineas": -0.0071, "eje_amplitud_centro": 0.0303, "eje_profundidad_espalda": 0.0331, "eje_robo_alto": -0.0164, "eje_aereo_segunda": -0.0051}, "Sunderland": {"eje_verticalidad": 0.0248, "eje_elaboracion": -0.0626, "eje_individual": -0.0356, "eje_rotura_lineas": -0.0322, "eje_amplitud_centro": -0.0042, "eje_profundidad_espalda": 0.001, "eje_robo_alto": -0.0327, "eje_aereo_segunda": 0.0317}, "Tottenham Hotspur": {"eje_verticalidad": -0.0482, "eje_elaboracion": -0.0333, "eje_individual": 0.0299, "eje_rotura_lineas": -0.0409, "eje_amplitud_centro": 0.0133, "eje_profundidad_espalda": -0.0489, "eje_robo_alto": 0.0259, "eje_aereo_segunda": -0.0242}, "West Ham United": {"eje_verticalidad": 0.0618, "eje_elaboracion": -0.0372, "eje_individual": -0.0094, "eje_rotura_lineas": -0.0382, "eje_amplitud_centro": 0.0183, "eje_profundidad_espalda": -0.0408, "eje_robo_alto": -0.0335, "eje_aereo_segunda": 0.035}, "Wolverhampton Wanderers": {"eje_verticalidad": 0.0396, "eje_elaboracion": -0.0599, "eje_individual": -0.0322, "eje_rotura_lineas": -0.0501, "eje_amplitud_centro": 0.0044, "eje_profundidad_espalda": -0.0287, "eje_robo_alto": -0.0369, "eje_aereo_segunda": 0.0141}}, "team_eje_norm_con": {"Arsenal": {"eje_verticalidad": 0.0578, "eje_elaboracion": -0.0444, "eje_individual": -0.0436, "eje_rotura_lineas": -0.0285, "eje_amplitud_centro": -0.0116, "eje_profundidad_espalda": -0.0261, "eje_robo_alto": -0.0754, "eje_aereo_segunda": 0.0365}, "Aston Villa": {"eje_verticalidad": -0.045, "eje_elaboracion": 0.0072, "eje_individual": 0.0028, "eje_rotura_lineas": 0.014, "eje_amplitud_centro": 0.0146, "eje_profundidad_espalda": -0.0036, "eje_robo_alto": 0.0281, "eje_aereo_segunda": -0.032}, "Bournemouth": {"eje_verticalidad": 0.0302, "eje_elaboracion": -0.0545, "eje_individual": 0.0073, "eje_rotura_lineas": -0.0308, "eje_amplitud_centro": -0.0257, "eje_profundidad_espalda": -0.0197, "eje_robo_alto": -0.0241, "eje_aereo_segunda": 0.0331}, "Brentford": {"eje_verticalidad": -0.0128, "eje_elaboracion": -0.0005, "eje_individual": -0.0098, "eje_rotura_lineas": -0.0187, "eje_amplitud_centro": 0.002, "eje_profundidad_espalda": 0.004, "eje_robo_alto": -0.0192, "eje_aereo_segunda": 0.0115}, "Brighton & Hove Albion": {"eje_verticalidad": 0.0117, "eje_elaboracion": -0.0305, "eje_individual": 0.0339, "eje_rotura_lineas": -0.0104, "eje_amplitud_centro": -0.0117, "eje_profundidad_espalda": -0.0211, "eje_robo_alto": -0.045, "eje_aereo_segunda": 0.0069}, "Burnley": {"eje_verticalidad": -0.089, "eje_elaboracion": 0.0697, "eje_individual": 0.0163, "eje_rotura_lineas": 0.0369, "eje_amplitud_centro": 0.0018, "eje_profundidad_espalda": 0.0312, "eje_robo_alto": 0.0373, "eje_aereo_segunda": -0.0105}, "Chelsea": {"eje_verticalidad": -0.0282, "eje_elaboracion": -0.0168, "eje_individual": -0.005, "eje_rotura_lineas": 0.0145, "eje_amplitud_centro": -0.0067, "eje_profundidad_espalda": 0.0147, "eje_robo_alto": -0.0175, "eje_aereo_segunda": -0.0211}, "Crystal Palace": {"eje_verticalidad": -0.0237, "eje_elaboracion": 0.0065, "eje_individual": 0.0075, "eje_rotura_lineas": -0.0003, "eje_amplitud_centro": -0.0049, "eje_profundidad_espalda": 0.0084, "eje_robo_alto": 0.0233, "eje_aereo_segunda": 0.0009}, "Everton": {"eje_verticalidad": -0.0898, "eje_elaboracion": 0.0524, "eje_individual": 0.0079, "eje_rotura_lineas": 0.011, "eje_amplitud_centro": -0.0127, "eje_profundidad_espalda": -0.0106, "eje_robo_alto": 0.0145, "eje_aereo_segunda": -0.0153}, "Fulham": {"eje_verticalidad": -0.013, "eje_elaboracion": 0.0119, "eje_individual": -0.0043, "eje_rotura_lineas": 0.025, "eje_amplitud_centro": 0.01, "eje_profundidad_espalda": 0.0237, "eje_robo_alto": 0.0009, "eje_aereo_segunda": -0.0007}, "Leeds United": {"eje_verticalidad": -0.054, "eje_elaboracion": 0.0228, "eje_individual": 0.0076, "eje_rotura_lineas": 0.0227, "eje_amplitud_centro": 0.0068, "eje_profundidad_espalda": 0.0078, "eje_robo_alto": -0.0064, "eje_aereo_segunda": 0.018}, "Liverpool": {"eje_verticalidad": 0.0387, "eje_elaboracion": -0.0561, "eje_individual": -0.0222, "eje_rotura_lineas": -0.0248, "eje_amplitud_centro": 0.0043, "eje_profundidad_espalda": 0.0093, "eje_robo_alto": -0.0476, "eje_aereo_segunda": 0.0148}, "Manchester City": {"eje_verticalidad": -0.0257, "eje_elaboracion": -0.0345, "eje_individual": -0.032, "eje_rotura_lineas": -0.0072, "eje_amplitud_centro": -0.0063, "eje_profundidad_espalda": -0.0222, "eje_robo_alto": -0.0419, "eje_aereo_segunda": -0.0249}, "Manchester United": {"eje_verticalidad": -0.0171, "eje_elaboracion": -0.0039, "eje_individual": -0.0055, "eje_rotura_lineas": -0.0134, "eje_amplitud_centro": 0.0192, "eje_profundidad_espalda": -0.0181, "eje_robo_alto": 0.015, "eje_aereo_segunda": 0.0026}, "Newcastle United": {"eje_verticalidad": 0.0206, "eje_elaboracion": -0.035, "eje_individual": -0.002, "eje_rotura_lineas": 0.017, "eje_amplitud_centro": 0.0031, "eje_profundidad_espalda": 0.0082, "eje_robo_alto": -0.03, "eje_aereo_segunda": 0.0182}, "Nottingham Forest": {"eje_verticalidad": -0.0543, "eje_elaboracion": 0.0392, "eje_individual": 0.0258, "eje_rotura_lineas": -0.0063, "eje_amplitud_centro": 0.005, "eje_profundidad_espalda": 0.0111, "eje_robo_alto": -0.0089, "eje_aereo_segunda": 0.001}, "Sunderland": {"eje_verticalidad": -0.0511, "eje_elaboracion": 0.0116, "eje_individual": -0.0008, "eje_rotura_lineas": -0.005, "eje_amplitud_centro": 0.0125, "eje_profundidad_espalda": 0.0133, "eje_robo_alto": -0.0035, "eje_aereo_segunda": -0.0034}, "Tottenham Hotspur": {"eje_verticalidad": 0.0017, "eje_elaboracion": -0.0304, "eje_individual": -0.0099, "eje_rotura_lineas": -0.0084, "eje_amplitud_centro": -0.0095, "eje_profundidad_espalda": -0.0259, "eje_robo_alto": 0.0191, "eje_aereo_segunda": 0.015}, "West Ham United": {"eje_verticalidad": -0.0928, "eje_elaboracion": 0.0588, "eje_individual": -0.0075, "eje_rotura_lineas": -0.0013, "eje_amplitud_centro": 0.0103, "eje_profundidad_espalda": -0.0006, "eje_robo_alto": 0.0441, "eje_aereo_segunda": -0.0227}, "Wolverhampton Wanderers": {"eje_verticalidad": -0.0893, "eje_elaboracion": 0.0497, "eje_individual": 0.0266, "eje_rotura_lineas": 0.035, "eje_amplitud_centro": 0.0039, "eje_profundidad_espalda": 0.03, "eje_robo_alto": 0.0506, "eje_aereo_segunda": -0.0308}}} \ No newline at end of file diff --git a/vendor/data/ejes/english-premier-league/25-26/team_profiles.parquet b/vendor/data/ejes/english-premier-league/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..2ab4649d2d0259e6ef950948aa85ea8642bcea4d --- /dev/null +++ b/vendor/data/ejes/english-premier-league/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e3218439efcdbf9c20506f21cd0776823b86407268e9d7c4caf08b5d7e3ed80 +size 10074 diff --git a/vendor/data/ejes/french-ligue-1/25-26/ejes_definition.json b/vendor/data/ejes/french-ligue-1/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/french-ligue-1/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/french-ligue-1/25-26/match_team_ejes.parquet b/vendor/data/ejes/french-ligue-1/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..97f3071c9d72ac849387aa56068e25f8cfac6377 --- /dev/null +++ b/vendor/data/ejes/french-ligue-1/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc586d1bca3299358bad9139f091f12e9cac937ddb31db20a8a06ac681f197e5 +size 73596 diff --git a/vendor/data/ejes/french-ligue-1/25-26/match_team_vars.parquet b/vendor/data/ejes/french-ligue-1/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..7fd972a8b0300d8b6bc48d618d9228181243042a --- /dev/null +++ b/vendor/data/ejes/french-ligue-1/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed6485455b35420c28ac8d59cce9ff4078f82c12098a11fd45043f6a2b85918e +size 275845 diff --git a/vendor/data/ejes/french-ligue-1/25-26/predictor.json b/vendor/data/ejes/french-ligue-1/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..a3f2cfbd85884d75afe23ab1d3f9394e6e13062a --- /dev/null +++ b/vendor/data/ejes/french-ligue-1/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.948, "con": 0.7612, "intercept": 0.0183}, "elaboracion": {"gen": 0.9788, "con": 0.8734, "intercept": -0.0021}, "individual": {"gen": 0.9113, "con": 0.6156, "intercept": 0.0005}, "rotura_lineas": {"gen": 0.9674, "con": 0.6901, "intercept": -0.0008}, "amplitud_centro": {"gen": 0.7777, "con": 0.7001, "intercept": 0.0001}, "profundidad_espalda": {"gen": 0.8958, "con": 0.7657, "intercept": -0.0001}, "robo_alto": {"gen": 0.7676, "con": 0.7788, "intercept": 0.0031}, "aereo_segunda": {"gen": 0.8709, "con": 0.5352, "intercept": -0.0001}} \ No newline at end of file diff --git a/vendor/data/ejes/french-ligue-1/25-26/scales.json b/vendor/data/ejes/french-ligue-1/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..3e9e2593ef68bdcbea42df6fc4a8986f8630aa99 --- /dev/null +++ b/vendor/data/ejes/french-ligue-1/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 2.0054, "atk_w": 1.6721, "ball_distance": 71.8539, "behind_line_ok": 0.028, "broke_last_line": 0.0201, "broke_second_last": 0.0537, "cross_pvadded_max": 0.0016, "dang_runs": 0.11, "deep_completions": 0.1524, "def_h": 3.7459, "dribbles_box": 0.0105, "dribbles_last_third": 0.027, "duration_s": 21.8199, "hold_max": 1.5645, "hold_mean": 1.0111, "hold_min": 0.9648, "line_breaks": 0.3675, "max_x": 4.8362, "n_centros": 0.0549, "n_events": 1.8188, "n_involved": 0.1928, "n_passes": 0.7321, "opt_quality_mean": 0.163, "paredes": 0.1349, "pass_options_mean": 1.0963, "passes_behind_line": 0.0398, "pct_adentro": 0.0375, "pct_afuera": 0.0362, "pct_cortos": 0.048, "pct_headpass": 0.0137, "pct_largos": 0.0459, "pct_launch": 0.0284, "pct_layoff": 0.0057, "pct_medios": 0.0431, "pct_switch": 0.0048, "pct_through": 0.0051, "pct_verticales": 0.0503, "pelotazos_espalda": 0.032, "press_final": 0.2979, "press_media": 0.1604, "prog_x": 2.6712, "start_x": 5.3188, "starts_from_dispossess": 0.0189, "takeons_ok": 0.0225, "tempo": 0.0395, "transition_speed": 0.7087, "verticalidad_media": 0.0624}, "eje_sigma": {"eje_verticalidad": 0.1158, "eje_elaboracion": 0.1001, "eje_individual": 0.0668, "eje_rotura_lineas": 0.0639, "eje_amplitud_centro": 0.0602, "eje_profundidad_espalda": 0.0911, "eje_robo_alto": 0.1107, "eje_aereo_segunda": 0.0681}, "eje_match_mean": {"eje_verticalidad": -0.0258, "eje_elaboracion": 0.0024, "eje_individual": -0.0009, "eje_rotura_lineas": 0.0012, "eje_amplitud_centro": -0.0002, "eje_profundidad_espalda": 0.0002, "eje_robo_alto": -0.0057, "eje_aereo_segunda": 0.0003}, "eje_match_std": {"eje_verticalidad": 0.1391, "eje_elaboracion": 0.1345, "eje_individual": 0.0767, "eje_rotura_lineas": 0.0822, "eje_amplitud_centro": 0.064, "eje_profundidad_espalda": 0.102, "eje_robo_alto": 0.1179, "eje_aereo_segunda": 0.0749}, "team_var_norm": {"Angers": {"atk_l": 41.4499, "atk_w": 32.8125, "ball_distance": 146.3972, "behind_line_ok": 0.0422, "broke_last_line": 0.0271, "broke_second_last": 0.1766, "cross_pvadded_max": 0.0009, "dang_runs": 0.1922, "deep_completions": 0.2628, "def_h": 35.5631, "dribbles_box": 0.0099, "dribbles_last_third": 0.0511, "duration_s": 31.7838, "hold_max": 9.6285, "hold_mean": 5.2495, "hold_min": 2.9654, "line_breaks": 0.9032, "max_x": 63.5287, "n_centros": 0.1186, "n_events": 6.1384, "n_involved": 1.968, "n_passes": 3.3942, "opt_quality_mean": -0.0893, "paredes": 0.2724, "pass_options_mean": 9.0584, "passes_behind_line": 0.1115, "pct_adentro": 0.5107, "pct_afuera": 0.4078, "pct_cortos": 0.4291, "pct_headpass": 0.0388, "pct_largos": 0.1763, "pct_launch": 0.0612, "pct_layoff": 0.0119, "pct_medios": 0.3147, "pct_switch": 0.0041, "pct_through": 0.0025, "pct_verticales": 0.4663, "pelotazos_espalda": 0.0781, "press_final": 2.6016, "press_media": 1.8539, "prog_x": 24.8508, "start_x": 39.8771, "starts_from_dispossess": 0.0459, "takeons_ok": 0.0424, "tempo": 0.4039, "transition_speed": 3.5761, "verticalidad_media": 0.333}, "Auxerre": {"atk_l": 42.1357, "atk_w": 32.4635, "ball_distance": 116.9056, "behind_line_ok": 0.0557, "broke_last_line": 0.0289, "broke_second_last": 0.1677, "cross_pvadded_max": 0.0007, "dang_runs": 0.1493, "deep_completions": 0.3257, "def_h": 32.5377, "dribbles_box": 0.0095, "dribbles_last_third": 0.0559, "duration_s": 30.1975, "hold_max": 10.679, "hold_mean": 6.3887, "hold_min": 3.976, "line_breaks": 0.597, "max_x": 67.7203, "n_centros": 0.1152, "n_events": 5.7654, "n_involved": 1.8374, "n_passes": 3.0068, "opt_quality_mean": -0.0165, "paredes": 0.2401, "pass_options_mean": 8.8133, "passes_behind_line": 0.1544, "pct_adentro": 0.4965, "pct_afuera": 0.4126, "pct_cortos": 0.3844, "pct_headpass": 0.0341, "pct_largos": 0.2328, "pct_launch": 0.0857, "pct_layoff": 0.0105, "pct_medios": 0.2927, "pct_switch": 0.0048, "pct_through": 0.0031, "pct_verticales": 0.493, "pelotazos_espalda": 0.1195, "press_final": 2.6289, "press_media": 1.8384, "prog_x": 25.1497, "start_x": 43.5459, "starts_from_dispossess": 0.0566, "takeons_ok": 0.0537, "tempo": 0.3704, "transition_speed": 3.5373, "verticalidad_media": 0.3458}, "Brest": {"atk_l": 41.3461, "atk_w": 32.649, "ball_distance": 124.3466, "behind_line_ok": 0.0524, "broke_last_line": 0.0286, "broke_second_last": 0.1552, "cross_pvadded_max": 0.0012, "dang_runs": 0.1142, "deep_completions": 0.2584, "def_h": 31.9593, "dribbles_box": 0.009, "dribbles_last_third": 0.0458, "duration_s": 27.1071, "hold_max": 10.3345, "hold_mean": 6.2566, "hold_min": 3.905, "line_breaks": 0.5133, "max_x": 67.5792, "n_centros": 0.1172, "n_events": 5.5196, "n_involved": 1.8576, "n_passes": 3.0269, "opt_quality_mean": -0.0256, "paredes": 0.2466, "pass_options_mean": 8.8308, "passes_behind_line": 0.1438, "pct_adentro": 0.5016, "pct_afuera": 0.4044, "pct_cortos": 0.3561, "pct_headpass": 0.0511, "pct_largos": 0.2279, "pct_launch": 0.0958, "pct_layoff": 0.0139, "pct_medios": 0.3239, "pct_switch": 0.0064, "pct_through": 0.004, "pct_verticales": 0.4813, "pelotazos_espalda": 0.1136, "press_final": 2.5086, "press_media": 1.7977, "prog_x": 25.5882, "start_x": 43.2104, "starts_from_dispossess": 0.0456, "takeons_ok": 0.0414, "tempo": 0.3751, "transition_speed": 3.5795, "verticalidad_media": 0.3252}, "Le Havre": {"atk_l": 41.5409, "atk_w": 32.8117, "ball_distance": 129.3617, "behind_line_ok": 0.0474, "broke_last_line": 0.0273, "broke_second_last": 0.1599, "cross_pvadded_max": 0.001, "dang_runs": 0.1288, "deep_completions": 0.3047, "def_h": 32.6861, "dribbles_box": 0.0137, "dribbles_last_third": 0.0517, "duration_s": 23.633, "hold_max": 10.7919, "hold_mean": 6.2696, "hold_min": 3.876, "line_breaks": 0.5641, "max_x": 68.4035, "n_centros": 0.1597, "n_events": 5.2724, "n_involved": 1.8468, "n_passes": 3.0806, "opt_quality_mean": -0.0103, "paredes": 0.2647, "pass_options_mean": 8.7754, "passes_behind_line": 0.1347, "pct_adentro": 0.4981, "pct_afuera": 0.4079, "pct_cortos": 0.3818, "pct_headpass": 0.0456, "pct_largos": 0.2022, "pct_launch": 0.0661, "pct_layoff": 0.0102, "pct_medios": 0.3225, "pct_switch": 0.0039, "pct_through": 0.0018, "pct_verticales": 0.4664, "pelotazos_espalda": 0.1019, "press_final": 2.4463, "press_media": 1.7774, "prog_x": 26.3615, "start_x": 43.1926, "starts_from_dispossess": 0.0459, "takeons_ok": 0.0456, "tempo": 0.372, "transition_speed": 3.6842, "verticalidad_media": 0.3406}, "Lens": {"atk_l": 45.2131, "atk_w": 32.126, "ball_distance": 179.2582, "behind_line_ok": 0.0546, "broke_last_line": 0.0426, "broke_second_last": 0.1761, "cross_pvadded_max": 0.0021, "dang_runs": 0.291, "deep_completions": 0.4241, "def_h": 31.2573, "dribbles_box": 0.0143, "dribbles_last_third": 0.0611, "duration_s": 32.3124, "hold_max": 9.3805, "hold_mean": 5.0693, "hold_min": 2.8854, "line_breaks": 0.9368, "max_x": 68.8703, "n_centros": 0.1544, "n_events": 6.4195, "n_involved": 2.128, "n_passes": 3.6048, "opt_quality_mean": 0.1083, "paredes": 0.3194, "pass_options_mean": 9.1621, "passes_behind_line": 0.1288, "pct_adentro": 0.5143, "pct_afuera": 0.3988, "pct_cortos": 0.427, "pct_headpass": 0.0388, "pct_largos": 0.1683, "pct_launch": 0.0501, "pct_layoff": 0.0128, "pct_medios": 0.3188, "pct_switch": 0.0053, "pct_through": 0.0041, "pct_verticales": 0.4333, "pelotazos_espalda": 0.0853, "press_final": 2.4779, "press_media": 1.9014, "prog_x": 23.5354, "start_x": 46.4507, "starts_from_dispossess": 0.0465, "takeons_ok": 0.0532, "tempo": 0.3933, "transition_speed": 3.0841, "verticalidad_media": 0.2935}, "Lille": {"atk_l": 43.3629, "atk_w": 32.3893, "ball_distance": 159.8587, "behind_line_ok": 0.0596, "broke_last_line": 0.0468, "broke_second_last": 0.1957, "cross_pvadded_max": 0.0011, "dang_runs": 0.237, "deep_completions": 0.4821, "def_h": 30.54, "dribbles_box": 0.0171, "dribbles_last_third": 0.0725, "duration_s": 28.1487, "hold_max": 10.0788, "hold_mean": 5.4989, "hold_min": 3.0755, "line_breaks": 0.8224, "max_x": 70.2339, "n_centros": 0.1336, "n_events": 6.1299, "n_involved": 2.0314, "n_passes": 3.8746, "opt_quality_mean": 0.1046, "paredes": 0.3758, "pass_options_mean": 9.0533, "passes_behind_line": 0.1296, "pct_adentro": 0.5117, "pct_afuera": 0.4103, "pct_cortos": 0.4278, "pct_headpass": 0.0357, "pct_largos": 0.1564, "pct_launch": 0.0574, "pct_layoff": 0.0127, "pct_medios": 0.3384, "pct_switch": 0.0045, "pct_through": 0.0049, "pct_verticales": 0.4325, "pelotazos_espalda": 0.0829, "press_final": 2.5782, "press_media": 1.8598, "prog_x": 23.7761, "start_x": 47.5204, "starts_from_dispossess": 0.0435, "takeons_ok": 0.0515, "tempo": 0.3918, "transition_speed": 2.8946, "verticalidad_media": 0.271}, "Lorient": {"atk_l": 43.8521, "atk_w": 32.2356, "ball_distance": 160.258, "behind_line_ok": 0.0613, "broke_last_line": 0.0355, "broke_second_last": 0.1704, "cross_pvadded_max": 0.0012, "dang_runs": 0.1663, "deep_completions": 0.3523, "def_h": 34.3057, "dribbles_box": 0.0152, "dribbles_last_third": 0.0556, "duration_s": 32.3913, "hold_max": 10.8351, "hold_mean": 5.8711, "hold_min": 3.3772, "line_breaks": 0.8146, "max_x": 65.6364, "n_centros": 0.1249, "n_events": 6.1767, "n_involved": 1.9712, "n_passes": 3.6805, "opt_quality_mean": -0.0094, "paredes": 0.354, "pass_options_mean": 9.0811, "passes_behind_line": 0.1344, "pct_adentro": 0.4983, "pct_afuera": 0.4095, "pct_cortos": 0.4152, "pct_headpass": 0.0351, "pct_largos": 0.1738, "pct_launch": 0.0656, "pct_layoff": 0.0099, "pct_medios": 0.3195, "pct_switch": 0.0045, "pct_through": 0.0031, "pct_verticales": 0.4626, "pelotazos_espalda": 0.0926, "press_final": 2.523, "press_media": 1.8782, "prog_x": 25.5678, "start_x": 41.456, "starts_from_dispossess": 0.0463, "takeons_ok": 0.0555, "tempo": 0.3751, "transition_speed": 3.0698, "verticalidad_media": 0.299}, "Metz": {"atk_l": 44.8249, "atk_w": 33.1657, "ball_distance": 201.2189, "behind_line_ok": 0.0485, "broke_last_line": 0.03, "broke_second_last": 0.1675, "cross_pvadded_max": 0.0016, "dang_runs": 0.2032, "deep_completions": 0.3075, "def_h": 34.3242, "dribbles_box": 0.0115, "dribbles_last_third": 0.0551, "duration_s": 36.4885, "hold_max": 10.4264, "hold_mean": 5.5312, "hold_min": 3.1207, "line_breaks": 0.9057, "max_x": 65.053, "n_centros": 0.1419, "n_events": 6.7197, "n_involved": 1.973, "n_passes": 3.9208, "opt_quality_mean": -0.0469, "paredes": 0.3875, "pass_options_mean": 8.9401, "passes_behind_line": 0.1159, "pct_adentro": 0.4788, "pct_afuera": 0.4377, "pct_cortos": 0.4083, "pct_headpass": 0.0343, "pct_largos": 0.1947, "pct_launch": 0.0682, "pct_layoff": 0.0098, "pct_medios": 0.3147, "pct_switch": 0.0061, "pct_through": 0.0031, "pct_verticales": 0.4396, "pelotazos_espalda": 0.0834, "press_final": 2.4114, "press_media": 1.8011, "prog_x": 25.0822, "start_x": 41.0639, "starts_from_dispossess": 0.0487, "takeons_ok": 0.0612, "tempo": 0.3639, "transition_speed": 3.0899, "verticalidad_media": 0.2737}, "Monaco": {"atk_l": 41.3809, "atk_w": 32.0112, "ball_distance": 163.9418, "behind_line_ok": 0.0571, "broke_last_line": 0.0365, "broke_second_last": 0.1786, "cross_pvadded_max": 0.0013, "dang_runs": 0.1748, "deep_completions": 0.3682, "def_h": 31.503, "dribbles_box": 0.0112, "dribbles_last_third": 0.0561, "duration_s": 33.2173, "hold_max": 10.1433, "hold_mean": 5.6342, "hold_min": 3.3605, "line_breaks": 0.8954, "max_x": 68.6069, "n_centros": 0.1206, "n_events": 6.5235, "n_involved": 2.0293, "n_passes": 3.6734, "opt_quality_mean": 0.0742, "paredes": 0.3776, "pass_options_mean": 9.0513, "passes_behind_line": 0.1212, "pct_adentro": 0.5177, "pct_afuera": 0.3967, "pct_cortos": 0.4323, "pct_headpass": 0.0369, "pct_largos": 0.1572, "pct_launch": 0.0546, "pct_layoff": 0.0128, "pct_medios": 0.3259, "pct_switch": 0.0045, "pct_through": 0.005, "pct_verticales": 0.4634, "pelotazos_espalda": 0.0764, "press_final": 2.6456, "press_media": 1.9228, "prog_x": 23.9068, "start_x": 45.6862, "starts_from_dispossess": 0.0522, "takeons_ok": 0.045, "tempo": 0.4009, "transition_speed": 3.216, "verticalidad_media": 0.3095}, "Nantes": {"atk_l": 40.9259, "atk_w": 32.5882, "ball_distance": 111.3668, "behind_line_ok": 0.0479, "broke_last_line": 0.0266, "broke_second_last": 0.1473, "cross_pvadded_max": 0.0009, "dang_runs": 0.1465, "deep_completions": 0.2377, "def_h": 33.3832, "dribbles_box": 0.0083, "dribbles_last_third": 0.05, "duration_s": 26.7129, "hold_max": 10.9951, "hold_mean": 6.4002, "hold_min": 3.88, "line_breaks": 0.5058, "max_x": 66.2211, "n_centros": 0.1165, "n_events": 5.3797, "n_involved": 1.7914, "n_passes": 2.8877, "opt_quality_mean": -0.0307, "paredes": 0.2413, "pass_options_mean": 8.4873, "passes_behind_line": 0.1287, "pct_adentro": 0.5009, "pct_afuera": 0.3954, "pct_cortos": 0.3642, "pct_headpass": 0.0478, "pct_largos": 0.2121, "pct_launch": 0.0776, "pct_layoff": 0.0115, "pct_medios": 0.321, "pct_switch": 0.0049, "pct_through": 0.0034, "pct_verticales": 0.4936, "pelotazos_espalda": 0.0985, "press_final": 2.6137, "press_media": 1.8087, "prog_x": 25.3818, "start_x": 42.214, "starts_from_dispossess": 0.0485, "takeons_ok": 0.0471, "tempo": 0.3847, "transition_speed": 4.0786, "verticalidad_media": 0.3807}, "Nice": {"atk_l": 42.4389, "atk_w": 31.5073, "ball_distance": 151.7003, "behind_line_ok": 0.0431, "broke_last_line": 0.0347, "broke_second_last": 0.1682, "cross_pvadded_max": 0.0016, "dang_runs": 0.189, "deep_completions": 0.2903, "def_h": 33.1811, "dribbles_box": 0.0092, "dribbles_last_third": 0.0505, "duration_s": 27.3934, "hold_max": 9.8463, "hold_mean": 5.6913, "hold_min": 3.5266, "line_breaks": 0.8235, "max_x": 66.7268, "n_centros": 0.1357, "n_events": 5.7706, "n_involved": 1.9716, "n_passes": 3.387, "opt_quality_mean": 0.0122, "paredes": 0.2938, "pass_options_mean": 8.9286, "passes_behind_line": 0.1178, "pct_adentro": 0.5093, "pct_afuera": 0.404, "pct_cortos": 0.4115, "pct_headpass": 0.0385, "pct_largos": 0.178, "pct_launch": 0.0547, "pct_layoff": 0.0112, "pct_medios": 0.3255, "pct_switch": 0.0058, "pct_through": 0.0044, "pct_verticales": 0.466, "pelotazos_espalda": 0.0856, "press_final": 2.5196, "press_media": 1.8516, "prog_x": 24.4375, "start_x": 43.3424, "starts_from_dispossess": 0.0452, "takeons_ok": 0.0537, "tempo": 0.3858, "transition_speed": 3.189, "verticalidad_media": 0.3226}, "Olympique Lyonnais": {"atk_l": 43.1225, "atk_w": 31.1121, "ball_distance": 162.837, "behind_line_ok": 0.0633, "broke_last_line": 0.0445, "broke_second_last": 0.181, "cross_pvadded_max": 0.0015, "dang_runs": 0.1554, "deep_completions": 0.364, "def_h": 32.5229, "dribbles_box": 0.0161, "dribbles_last_third": 0.0641, "duration_s": 33.5601, "hold_max": 10.8341, "hold_mean": 5.9194, "hold_min": 3.4445, "line_breaks": 0.9184, "max_x": 67.9317, "n_centros": 0.1495, "n_events": 6.4978, "n_involved": 1.9781, "n_passes": 3.856, "opt_quality_mean": 0.0809, "paredes": 0.3526, "pass_options_mean": 9.0041, "passes_behind_line": 0.1375, "pct_adentro": 0.5172, "pct_afuera": 0.3973, "pct_cortos": 0.4137, "pct_headpass": 0.0387, "pct_largos": 0.1773, "pct_launch": 0.0635, "pct_layoff": 0.0129, "pct_medios": 0.3242, "pct_switch": 0.0077, "pct_through": 0.0055, "pct_verticales": 0.4348, "pelotazos_espalda": 0.0923, "press_final": 2.5963, "press_media": 1.9125, "prog_x": 24.1926, "start_x": 44.9993, "starts_from_dispossess": 0.042, "takeons_ok": 0.0483, "tempo": 0.3879, "transition_speed": 3.0383, "verticalidad_media": 0.2719}, "Olympique Marseille": {"atk_l": 44.1625, "atk_w": 31.9168, "ball_distance": 225.2369, "behind_line_ok": 0.0747, "broke_last_line": 0.0392, "broke_second_last": 0.2227, "cross_pvadded_max": 0.0011, "dang_runs": 0.1987, "deep_completions": 0.489, "def_h": 31.2048, "dribbles_box": 0.017, "dribbles_last_third": 0.0758, "duration_s": 29.3923, "hold_max": 11.2743, "hold_mean": 5.6861, "hold_min": 3.2141, "line_breaks": 1.1334, "max_x": 69.9106, "n_centros": 0.1331, "n_events": 6.8401, "n_involved": 2.1221, "n_passes": 4.5424, "opt_quality_mean": 0.1018, "paredes": 0.552, "pass_options_mean": 9.0485, "passes_behind_line": 0.1471, "pct_adentro": 0.4964, "pct_afuera": 0.4156, "pct_cortos": 0.4389, "pct_headpass": 0.0335, "pct_largos": 0.1548, "pct_launch": 0.0489, "pct_layoff": 0.0143, "pct_medios": 0.3193, "pct_switch": 0.0071, "pct_through": 0.0062, "pct_verticales": 0.4348, "pelotazos_espalda": 0.0875, "press_final": 2.6443, "press_media": 1.861, "prog_x": 24.899, "start_x": 46.2238, "starts_from_dispossess": 0.0448, "takeons_ok": 0.0535, "tempo": 0.4014, "transition_speed": 2.8849, "verticalidad_media": 0.274}, "Paris FC": {"atk_l": 43.909, "atk_w": 31.952, "ball_distance": 188.7149, "behind_line_ok": 0.0604, "broke_last_line": 0.0368, "broke_second_last": 0.1817, "cross_pvadded_max": 0.0012, "dang_runs": 0.1823, "deep_completions": 0.3376, "def_h": 33.9655, "dribbles_box": 0.0122, "dribbles_last_third": 0.0526, "duration_s": 34.5106, "hold_max": 9.9193, "hold_mean": 5.4832, "hold_min": 3.246, "line_breaks": 0.9039, "max_x": 66.3468, "n_centros": 0.1227, "n_events": 6.6245, "n_involved": 2.0651, "n_passes": 3.96, "opt_quality_mean": -0.0186, "paredes": 0.4217, "pass_options_mean": 9.0342, "passes_behind_line": 0.1483, "pct_adentro": 0.4859, "pct_afuera": 0.4358, "pct_cortos": 0.405, "pct_headpass": 0.0392, "pct_largos": 0.1844, "pct_launch": 0.0737, "pct_layoff": 0.0142, "pct_medios": 0.3333, "pct_switch": 0.0051, "pct_through": 0.0037, "pct_verticales": 0.4591, "pelotazos_espalda": 0.1067, "press_final": 2.5788, "press_media": 1.8502, "prog_x": 25.8898, "start_x": 41.6606, "starts_from_dispossess": 0.0538, "takeons_ok": 0.0453, "tempo": 0.3972, "transition_speed": 3.2321, "verticalidad_media": 0.3006}, "Paris Saint-Germain": {"atk_l": 44.8878, "atk_w": 31.9844, "ball_distance": 353.3439, "behind_line_ok": 0.1009, "broke_last_line": 0.0663, "broke_second_last": 0.2753, "cross_pvadded_max": 0.0011, "dang_runs": 0.3366, "deep_completions": 0.6551, "def_h": 30.6919, "dribbles_box": 0.0243, "dribbles_last_third": 0.1037, "duration_s": 41.1721, "hold_max": 9.6849, "hold_mean": 4.9847, "hold_min": 2.7477, "line_breaks": 1.7175, "max_x": 70.669, "n_centros": 0.1129, "n_events": 8.5448, "n_involved": 2.4021, "n_passes": 5.8169, "opt_quality_mean": 0.177, "paredes": 0.6805, "pass_options_mean": 9.2266, "passes_behind_line": 0.1584, "pct_adentro": 0.4955, "pct_afuera": 0.424, "pct_cortos": 0.4477, "pct_headpass": 0.0332, "pct_largos": 0.1263, "pct_launch": 0.0338, "pct_layoff": 0.0116, "pct_medios": 0.3461, "pct_switch": 0.0065, "pct_through": 0.0057, "pct_verticales": 0.3812, "pelotazos_espalda": 0.0759, "press_final": 2.7019, "press_media": 1.9319, "prog_x": 23.4987, "start_x": 48.3847, "starts_from_dispossess": 0.0464, "takeons_ok": 0.0739, "tempo": 0.3788, "transition_speed": 2.0987, "verticalidad_media": 0.2007}, "Rennes": {"atk_l": 43.69, "atk_w": 32.4913, "ball_distance": 149.4258, "behind_line_ok": 0.0605, "broke_last_line": 0.0376, "broke_second_last": 0.1683, "cross_pvadded_max": 0.001, "dang_runs": 0.1765, "deep_completions": 0.3897, "def_h": 32.3204, "dribbles_box": 0.0127, "dribbles_last_third": 0.0595, "duration_s": 32.1289, "hold_max": 10.0187, "hold_mean": 5.4249, "hold_min": 3.088, "line_breaks": 0.8308, "max_x": 67.5203, "n_centros": 0.1377, "n_events": 6.4362, "n_involved": 1.9552, "n_passes": 3.707, "opt_quality_mean": 0.0497, "paredes": 0.3834, "pass_options_mean": 8.9802, "passes_behind_line": 0.1263, "pct_adentro": 0.5137, "pct_afuera": 0.4028, "pct_cortos": 0.4144, "pct_headpass": 0.0416, "pct_largos": 0.165, "pct_launch": 0.0531, "pct_layoff": 0.0134, "pct_medios": 0.3381, "pct_switch": 0.0049, "pct_through": 0.003, "pct_verticales": 0.4448, "pelotazos_espalda": 0.0822, "press_final": 2.5203, "press_media": 1.8821, "prog_x": 24.2874, "start_x": 44.4804, "starts_from_dispossess": 0.0446, "takeons_ok": 0.0486, "tempo": 0.3905, "transition_speed": 3.2158, "verticalidad_media": 0.283}, "Strasbourg": {"atk_l": 44.5054, "atk_w": 32.354, "ball_distance": 209.8037, "behind_line_ok": 0.0567, "broke_last_line": 0.0379, "broke_second_last": 0.1937, "cross_pvadded_max": 0.0014, "dang_runs": 0.2389, "deep_completions": 0.3236, "def_h": 33.2153, "dribbles_box": 0.0147, "dribbles_last_third": 0.076, "duration_s": 34.6809, "hold_max": 10.1837, "hold_mean": 5.2042, "hold_min": 2.8445, "line_breaks": 1.1826, "max_x": 67.025, "n_centros": 0.1243, "n_events": 6.9686, "n_involved": 2.1912, "n_passes": 4.2465, "opt_quality_mean": 0.0165, "paredes": 0.4393, "pass_options_mean": 9.1036, "passes_behind_line": 0.1212, "pct_adentro": 0.507, "pct_afuera": 0.4009, "pct_cortos": 0.4591, "pct_headpass": 0.0372, "pct_largos": 0.1289, "pct_launch": 0.0349, "pct_layoff": 0.0154, "pct_medios": 0.321, "pct_switch": 0.0021, "pct_through": 0.0073, "pct_verticales": 0.4042, "pelotazos_espalda": 0.078, "press_final": 2.6208, "press_media": 1.8608, "prog_x": 23.9657, "start_x": 44.2956, "starts_from_dispossess": 0.0472, "takeons_ok": 0.0702, "tempo": 0.3867, "transition_speed": 2.6759, "verticalidad_media": 0.2452}, "Toulouse": {"atk_l": 40.8582, "atk_w": 31.4427, "ball_distance": 120.8363, "behind_line_ok": 0.0567, "broke_last_line": 0.0296, "broke_second_last": 0.1739, "cross_pvadded_max": 0.0013, "dang_runs": 0.1619, "deep_completions": 0.3066, "def_h": 31.5768, "dribbles_box": 0.0135, "dribbles_last_third": 0.0609, "duration_s": 29.7593, "hold_max": 10.4902, "hold_mean": 6.1589, "hold_min": 3.8141, "line_breaks": 0.6456, "max_x": 68.1893, "n_centros": 0.1091, "n_events": 5.73, "n_involved": 1.8696, "n_passes": 3.0741, "opt_quality_mean": 0.0812, "paredes": 0.2515, "pass_options_mean": 8.7199, "passes_behind_line": 0.1219, "pct_adentro": 0.5012, "pct_afuera": 0.3947, "pct_cortos": 0.3959, "pct_headpass": 0.0453, "pct_largos": 0.1934, "pct_launch": 0.0723, "pct_layoff": 0.0083, "pct_medios": 0.3089, "pct_switch": 0.006, "pct_through": 0.0025, "pct_verticales": 0.4701, "pelotazos_espalda": 0.0893, "press_final": 2.6483, "press_media": 1.8989, "prog_x": 24.3784, "start_x": 45.0708, "starts_from_dispossess": 0.0491, "takeons_ok": 0.0545, "tempo": 0.3663, "transition_speed": 3.3423, "verticalidad_media": 0.3413}}, "team_eje_norm_gen": {"Angers": {"eje_verticalidad": 0.0192, "eje_elaboracion": -0.0299, "eje_individual": -0.0278, "eje_rotura_lineas": -0.0187, "eje_amplitud_centro": -0.0191, "eje_profundidad_espalda": -0.0697, "eje_robo_alto": -0.0868, "eje_aereo_segunda": -0.0032}, "Auxerre": {"eje_verticalidad": 0.0835, "eje_elaboracion": -0.0941, "eje_individual": -0.0216, "eje_rotura_lineas": -0.0412, "eje_amplitud_centro": -0.013, "eje_profundidad_espalda": 0.0281, "eje_robo_alto": 0.0068, "eje_aereo_segunda": 0.0177}, "Brest": {"eje_verticalidad": 0.0625, "eje_elaboracion": -0.1123, "eje_individual": -0.0528, "eje_rotura_lineas": -0.0506, "eje_amplitud_centro": -0.0085, "eje_profundidad_espalda": -0.0078, "eje_robo_alto": -0.0254, "eje_aereo_segunda": 0.0909}, "Le Havre": {"eje_verticalidad": 0.0445, "eje_elaboracion": -0.0888, "eje_individual": -0.0298, "eje_rotura_lineas": -0.0565, "eje_amplitud_centro": 0.0199, "eje_profundidad_espalda": -0.0152, "eje_robo_alto": -0.025, "eje_aereo_segunda": 0.0102}, "Lens": {"eje_verticalidad": -0.0536, "eje_elaboracion": -0.0044, "eje_individual": 0.0237, "eje_rotura_lineas": 0.0117, "eje_amplitud_centro": 0.015, "eje_profundidad_espalda": 0.0092, "eje_robo_alto": 0.0372, "eje_aereo_segunda": -0.0154}, "Lille": {"eje_verticalidad": -0.0817, "eje_elaboracion": 0.0261, "eje_individual": 0.0272, "eje_rotura_lineas": 0.0242, "eje_amplitud_centro": 0.0009, "eje_profundidad_espalda": 0.03, "eje_robo_alto": 0.05, "eje_aereo_segunda": -0.0112}, "Lorient": {"eje_verticalidad": -0.0289, "eje_elaboracion": 0.0025, "eje_individual": -0.0045, "eje_rotura_lineas": -0.0151, "eje_amplitud_centro": -0.0089, "eje_profundidad_espalda": 0.0044, "eje_robo_alto": -0.0563, "eje_aereo_segunda": -0.0159}, "Metz": {"eje_verticalidad": -0.0389, "eje_elaboracion": 0.025, "eje_individual": 0.0015, "eje_rotura_lineas": -0.0173, "eje_amplitud_centro": 0.0465, "eje_profundidad_espalda": -0.0424, "eje_robo_alto": -0.058, "eje_aereo_segunda": -0.0138}, "Monaco": {"eje_verticalidad": -0.0283, "eje_elaboracion": 0.0211, "eje_individual": -0.0214, "eje_rotura_lineas": 0.0061, "eje_amplitud_centro": -0.0255, "eje_profundidad_espalda": -0.0181, "eje_robo_alto": 0.0364, "eje_aereo_segunda": -0.0127}, "Nantes": {"eje_verticalidad": 0.1054, "eje_elaboracion": -0.117, "eje_individual": -0.0373, "eje_rotura_lineas": -0.0616, "eje_amplitud_centro": -0.028, "eje_profundidad_espalda": -0.0419, "eje_robo_alto": -0.0371, "eje_aereo_segunda": 0.0406}, "Nice": {"eje_verticalidad": -0.003, "eje_elaboracion": -0.039, "eje_individual": -0.0188, "eje_rotura_lineas": -0.0102, "eje_amplitud_centro": 0.0049, "eje_profundidad_espalda": -0.0496, "eje_robo_alto": -0.0238, "eje_aereo_segunda": -0.0177}, "Olympique Lyonnais": {"eje_verticalidad": -0.0591, "eje_elaboracion": 0.0124, "eje_individual": -0.0043, "eje_rotura_lineas": 0.0224, "eje_amplitud_centro": 0.025, "eje_profundidad_espalda": 0.0118, "eje_robo_alto": -0.0004, "eje_aereo_segunda": 0.0063}, "Olympique Marseille": {"eje_verticalidad": -0.0831, "eje_elaboracion": 0.1266, "eje_individual": 0.0239, "eje_rotura_lineas": 0.0588, "eje_amplitud_centro": 0.0226, "eje_profundidad_espalda": 0.063, "eje_robo_alto": 0.029, "eje_aereo_segunda": -0.0203}, "Paris FC": {"eje_verticalidad": -0.0104, "eje_elaboracion": 0.0339, "eje_individual": -0.0208, "eje_rotura_lineas": 0.0027, "eje_amplitud_centro": 0.0187, "eje_profundidad_espalda": 0.021, "eje_robo_alto": -0.0349, "eje_aereo_segunda": 0.0308}, "Paris Saint-Germain": {"eje_verticalidad": -0.2141, "eje_elaboracion": 0.2557, "eje_individual": 0.1175, "eje_rotura_lineas": 0.1655, "eje_amplitud_centro": 0.0073, "eje_profundidad_espalda": 0.1365, "eje_robo_alto": 0.0731, "eje_aereo_segunda": -0.0605}, "Rennes": {"eje_verticalidad": -0.048, "eje_elaboracion": 0.012, "eje_individual": -0.0109, "eje_rotura_lineas": -0.0127, "eje_amplitud_centro": -0.0001, "eje_profundidad_espalda": 0.0003, "eje_robo_alto": -0.0041, "eje_aereo_segunda": -0.0008}, "Strasbourg": {"eje_verticalidad": -0.1513, "eje_elaboracion": 0.093, "eje_individual": 0.0455, "eje_rotura_lineas": 0.0494, "eje_amplitud_centro": -0.0335, "eje_profundidad_espalda": -0.0304, "eje_robo_alto": -0.0013, "eje_aereo_segunda": -0.0282}, "Toulouse": {"eje_verticalidad": 0.0211, "eje_elaboracion": -0.0792, "eje_individual": -0.0049, "eje_rotura_lineas": -0.036, "eje_amplitud_centro": -0.0282, "eje_profundidad_espalda": -0.0254, "eje_robo_alto": 0.0177, "eje_aereo_segunda": 0.0083}}, "team_eje_norm_con": {"Angers": {"eje_verticalidad": -0.1132, "eje_elaboracion": 0.0961, "eje_individual": 0.0193, "eje_rotura_lineas": 0.0364, "eje_amplitud_centro": -0.0052, "eje_profundidad_espalda": 0.0315, "eje_robo_alto": 0.0725, "eje_aereo_segunda": -0.034}, "Auxerre": {"eje_verticalidad": -0.0365, "eje_elaboracion": 0.0241, "eje_individual": -0.0132, "eje_rotura_lineas": 0.0264, "eje_amplitud_centro": -0.0178, "eje_profundidad_espalda": -0.0097, "eje_robo_alto": -0.0017, "eje_aereo_segunda": 0.0017}, "Brest": {"eje_verticalidad": -0.052, "eje_elaboracion": 0.0304, "eje_individual": 0.0192, "eje_rotura_lineas": -0.0039, "eje_amplitud_centro": 0.0012, "eje_profundidad_espalda": -0.0139, "eje_robo_alto": 0.0031, "eje_aereo_segunda": 0.0107}, "Le Havre": {"eje_verticalidad": 0.0019, "eje_elaboracion": -0.002, "eje_individual": 0.0103, "eje_rotura_lineas": -0.0123, "eje_amplitud_centro": 0.0185, "eje_profundidad_espalda": 0.0086, "eje_robo_alto": -0.0099, "eje_aereo_segunda": 0.0105}, "Lens": {"eje_verticalidad": 0.0025, "eje_elaboracion": -0.0243, "eje_individual": -0.0024, "eje_rotura_lineas": -0.0162, "eje_amplitud_centro": -0.0261, "eje_profundidad_espalda": -0.0548, "eje_robo_alto": -0.0247, "eje_aereo_segunda": 0.0026}, "Lille": {"eje_verticalidad": 0.0268, "eje_elaboracion": -0.0456, "eje_individual": -0.0257, "eje_rotura_lineas": -0.0215, "eje_amplitud_centro": -0.0195, "eje_profundidad_espalda": -0.0335, "eje_robo_alto": -0.068, "eje_aereo_segunda": 0.0404}, "Lorient": {"eje_verticalidad": -0.0584, "eje_elaboracion": 0.0994, "eje_individual": 0.0311, "eje_rotura_lineas": 0.0079, "eje_amplitud_centro": 0.045, "eje_profundidad_espalda": 0.0875, "eje_robo_alto": 0.0373, "eje_aereo_segunda": -0.009}, "Metz": {"eje_verticalidad": -0.0976, "eje_elaboracion": 0.0474, "eje_individual": 0.0359, "eje_rotura_lineas": 0.0197, "eje_amplitud_centro": -0.0266, "eje_profundidad_espalda": -0.0037, "eje_robo_alto": 0.0648, "eje_aereo_segunda": -0.0245}, "Monaco": {"eje_verticalidad": 0.0395, "eje_elaboracion": -0.0633, "eje_individual": 0.005, "eje_rotura_lineas": -0.0353, "eje_amplitud_centro": -0.0034, "eje_profundidad_espalda": -0.017, "eje_robo_alto": -0.0309, "eje_aereo_segunda": 0.0241}, "Nantes": {"eje_verticalidad": -0.0457, "eje_elaboracion": 0.0219, "eje_individual": 0.0055, "eje_rotura_lineas": 0.0352, "eje_amplitud_centro": 0.0232, "eje_profundidad_espalda": 0.0299, "eje_robo_alto": 0.0157, "eje_aereo_segunda": 0.0102}, "Nice": {"eje_verticalidad": -0.0326, "eje_elaboracion": 0.0134, "eje_individual": 0.0068, "eje_rotura_lineas": 0.011, "eje_amplitud_centro": 0.0156, "eje_profundidad_espalda": 0.0201, "eje_robo_alto": 0.0144, "eje_aereo_segunda": 0.0064}, "Olympique Lyonnais": {"eje_verticalidad": -0.0016, "eje_elaboracion": -0.0501, "eje_individual": -0.0177, "eje_rotura_lineas": -0.0236, "eje_amplitud_centro": 0.0054, "eje_profundidad_espalda": 0.0049, "eje_robo_alto": -0.0175, "eje_aereo_segunda": -0.0078}, "Olympique Marseille": {"eje_verticalidad": 0.0131, "eje_elaboracion": -0.0146, "eje_individual": -0.0095, "eje_rotura_lineas": 0.0019, "eje_amplitud_centro": -0.0118, "eje_profundidad_espalda": -0.0202, "eje_robo_alto": -0.0785, "eje_aereo_segunda": -0.0014}, "Paris FC": {"eje_verticalidad": -0.0451, "eje_elaboracion": -0.0005, "eje_individual": -0.0036, "eje_rotura_lineas": 0.0269, "eje_amplitud_centro": -0.0026, "eje_profundidad_espalda": 0.0262, "eje_robo_alto": 0.0215, "eje_aereo_segunda": -0.0146}, "Paris Saint-Germain": {"eje_verticalidad": 0.0119, "eje_elaboracion": -0.0934, "eje_individual": -0.0469, "eje_rotura_lineas": -0.0292, "eje_amplitud_centro": -0.021, "eje_profundidad_espalda": -0.0436, "eje_robo_alto": -0.0806, "eje_aereo_segunda": 0.0158}, "Rennes": {"eje_verticalidad": 0.0194, "eje_elaboracion": -0.0419, "eje_individual": -0.0072, "eje_rotura_lineas": -0.0007, "eje_amplitud_centro": 0.005, "eje_profundidad_espalda": 0.0126, "eje_robo_alto": -0.0153, "eje_aereo_segunda": -0.0072}, "Strasbourg": {"eje_verticalidad": -0.0342, "eje_elaboracion": -0.0047, "eje_individual": -0.0059, "eje_rotura_lineas": -0.0007, "eje_amplitud_centro": 0.0204, "eje_profundidad_espalda": 0.0086, "eje_robo_alto": 0.0097, "eje_aereo_segunda": -0.0088}, "Toulouse": {"eje_verticalidad": -0.0623, "eje_elaboracion": 0.0514, "eje_individual": -0.0167, "eje_rotura_lineas": -0.001, "eje_amplitud_centro": -0.004, "eje_profundidad_espalda": -0.0299, "eje_robo_alto": -0.0148, "eje_aereo_segunda": -0.01}}} \ No newline at end of file diff --git a/vendor/data/ejes/french-ligue-1/25-26/team_profiles.parquet b/vendor/data/ejes/french-ligue-1/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..460f78efb5c11efc9e05abf57501552c174cd69d --- /dev/null +++ b/vendor/data/ejes/french-ligue-1/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35baad24d45f0575e08a48633ea71bb6b84f01310b01e3685698958a252f2358 +size 9407 diff --git a/vendor/data/ejes/french-ligue-2/25-26/ejes_definition.json b/vendor/data/ejes/french-ligue-2/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/french-ligue-2/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/french-ligue-2/25-26/match_team_ejes.parquet b/vendor/data/ejes/french-ligue-2/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..f5e0732fb2a1871b73ccab905e78e24c9dc9fbef --- /dev/null +++ b/vendor/data/ejes/french-ligue-2/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:619d3b7a5875ab2c4adb3c783101eafa6627d2f1f81bb8b04608e78415a1e6da +size 73291 diff --git a/vendor/data/ejes/french-ligue-2/25-26/match_team_vars.parquet b/vendor/data/ejes/french-ligue-2/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..578b19cf1f7a094ca42eb251ef67ca48bb522e28 --- /dev/null +++ b/vendor/data/ejes/french-ligue-2/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0e078e8801dda965f6dba19567291f48d5f3773c9a8b129944d7163d6c2fa58 +size 273088 diff --git a/vendor/data/ejes/french-ligue-2/25-26/predictor.json b/vendor/data/ejes/french-ligue-2/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..f2c211d270a2f269ecbf7ab574a464764145614b --- /dev/null +++ b/vendor/data/ejes/french-ligue-2/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.9696, "con": 0.7635, "intercept": 0.0204}, "elaboracion": {"gen": -0.1587, "con": -0.1676, "intercept": 0.2421}, "individual": {"gen": -0.0737, "con": -0.1138, "intercept": 0.086}, "rotura_lineas": {"gen": 0.9342, "con": 0.792, "intercept": -0.001}, "amplitud_centro": {"gen": -0.0829, "con": -0.1616, "intercept": 0.0933}, "profundidad_espalda": {"gen": -0.0296, "con": -0.2301, "intercept": 0.0606}, "robo_alto": {"gen": 0.6492, "con": 0.6953, "intercept": 0.0025}, "aereo_segunda": {"gen": 0.9515, "con": 0.8467, "intercept": 0.0012}} \ No newline at end of file diff --git a/vendor/data/ejes/french-ligue-2/25-26/scales.json b/vendor/data/ejes/french-ligue-2/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..fb1088aa2f821a096dfed7ef0e53754d0462150f --- /dev/null +++ b/vendor/data/ejes/french-ligue-2/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 2.0586, "atk_w": 1.4934, "ball_distance": 62.3951, "behind_line_ok": 0.0278, "broke_last_line": 0.0199, "broke_second_last": 0.0486, "cross_pvadded_max": 0.0054, "dang_runs": 0.0944, "deep_completions": 2.6153, "def_h": 2.9527, "dribbles_box": 0.0566, "dribbles_last_third": 0.5402, "duration_s": 258.6613, "hold_max": 4.5178, "hold_mean": 1.0513, "hold_min": 1.0317, "line_breaks": 0.3077, "max_x": 4.459, "n_centros": 1.3905, "n_events": 74.4381, "n_involved": 0.1831, "n_passes": 37.2162, "opt_quality_mean": 0.1338, "paredes": 3.0961, "pass_options_mean": 2.0729, "passes_behind_line": 0.047, "pct_adentro": 0.0351, "pct_afuera": 0.0334, "pct_cortos": 0.0487, "pct_headpass": 0.0147, "pct_largos": 0.0503, "pct_launch": 0.0379, "pct_layoff": 0.0056, "pct_medios": 0.043, "pct_switch": 0.0041, "pct_through": 0.0034, "pct_verticales": 0.0576, "pelotazos_espalda": 0.0388, "press_final": 0.4407, "press_media": 0.2925, "prog_x": 5.0329, "start_x": 5.2295, "starts_from_dispossess": 0.0173, "takeons_ok": 0.5649, "tempo": 0.039, "transition_speed": 0.6889, "verticalidad_media": 0.0669}, "eje_sigma": {"eje_verticalidad": 0.1215, "eje_elaboracion": 3.1201, "eje_individual": 1.2569, "eje_rotura_lineas": 0.0652, "eje_amplitud_centro": 1.3017, "eje_profundidad_espalda": 0.8405, "eje_robo_alto": 0.1121, "eje_aereo_segunda": 0.0713}, "eje_match_mean": {"eje_verticalidad": -0.0279, "eje_elaboracion": 0.1825, "eje_individual": 0.0725, "eje_rotura_lineas": 0.0014, "eje_amplitud_centro": 0.075, "eje_profundidad_espalda": 0.0481, "eje_robo_alto": -0.0071, "eje_aereo_segunda": -0.0015}, "eje_match_std": {"eje_verticalidad": 0.1527, "eje_elaboracion": 3.1614, "eje_individual": 1.2749, "eje_rotura_lineas": 0.0746, "eje_amplitud_centro": 1.3202, "eje_profundidad_espalda": 0.8531, "eje_robo_alto": 0.1169, "eje_aereo_segunda": 0.0814}, "team_var_norm": {"Amiens": {"atk_l": 44.5454, "atk_w": 32.6296, "ball_distance": 131.1388, "behind_line_ok": 0.0465, "broke_last_line": 0.0365, "broke_second_last": 0.1562, "cross_pvadded_max": 0.0008, "dang_runs": 0.1706, "deep_completions": 0.2504, "def_h": 33.7581, "dribbles_box": 0.0083, "dribbles_last_third": 0.0615, "duration_s": 25.4336, "hold_max": 10.2115, "hold_mean": 5.9591, "hold_min": 3.5999, "line_breaks": 0.6737, "max_x": 65.5636, "n_centros": 0.1154, "n_events": 5.4, "n_involved": 1.9014, "n_passes": 3.0963, "opt_quality_mean": -0.0442, "paredes": 0.2351, "pass_options_mean": 8.4997, "passes_behind_line": 0.1231, "pct_adentro": 0.4907, "pct_afuera": 0.426, "pct_cortos": 0.3957, "pct_headpass": 0.0306, "pct_largos": 0.2054, "pct_launch": 0.0766, "pct_layoff": 0.0117, "pct_medios": 0.3168, "pct_switch": 0.0082, "pct_through": 0.0021, "pct_verticales": 0.4871, "pelotazos_espalda": 0.0937, "press_final": 2.5313, "press_media": 1.7855, "prog_x": 25.9576, "start_x": 40.9219, "starts_from_dispossess": 0.0503, "takeons_ok": 0.0527, "tempo": 0.3812, "transition_speed": 3.566, "verticalidad_media": 0.3521}, "Annecy": {"atk_l": 36.9893, "atk_w": 30.0648, "ball_distance": 79.9863, "behind_line_ok": 0.0409, "broke_last_line": 0.0307, "broke_second_last": 0.1635, "cross_pvadded_max": 0.0009, "dang_runs": 0.0804, "deep_completions": 0.2396, "def_h": 30.6582, "dribbles_box": 0.0104, "dribbles_last_third": 0.0566, "duration_s": 28.3719, "hold_max": 10.0987, "hold_mean": 6.3994, "hold_min": 4.396, "line_breaks": 0.502, "max_x": 68.8041, "n_centros": 0.0954, "n_events": 5.5503, "n_involved": 1.7685, "n_passes": 2.6074, "opt_quality_mean": -0.0319, "paredes": 0.1671, "pass_options_mean": 8.2964, "passes_behind_line": 0.1257, "pct_adentro": 0.535, "pct_afuera": 0.3903, "pct_cortos": 0.3718, "pct_headpass": 0.0662, "pct_largos": 0.2131, "pct_launch": 0.1075, "pct_layoff": 0.0083, "pct_medios": 0.3406, "pct_switch": 0.0029, "pct_through": 0.0021, "pct_verticales": 0.5748, "pelotazos_espalda": 0.0965, "press_final": 2.4897, "press_media": 1.7556, "prog_x": 24.953, "start_x": 45.0691, "starts_from_dispossess": 0.0353, "takeons_ok": 0.0405, "tempo": 0.3779, "transition_speed": 3.7662, "verticalidad_media": 0.4482}, "Bastia": {"atk_l": 41.1902, "atk_w": 32.4695, "ball_distance": 117.1826, "behind_line_ok": 0.0523, "broke_last_line": 0.0309, "broke_second_last": 0.1185, "cross_pvadded_max": 0.004, "dang_runs": 0.1258, "deep_completions": 1.9934, "def_h": 31.5462, "dribbles_box": 0.0417, "dribbles_last_third": 0.4545, "duration_s": 193.5794, "hold_max": 13.1092, "hold_mean": 6.5398, "hold_min": 4.199, "line_breaks": 0.5308, "max_x": 70.1184, "n_centros": 0.9641, "n_events": 53.9536, "n_involved": 1.7814, "n_passes": 26.2032, "opt_quality_mean": -0.0156, "paredes": 1.7712, "pass_options_mean": 8.3119, "passes_behind_line": 0.157, "pct_adentro": 0.4939, "pct_afuera": 0.4192, "pct_cortos": 0.3086, "pct_headpass": 0.0466, "pct_largos": 0.2498, "pct_launch": 0.1083, "pct_layoff": 0.0098, "pct_medios": 0.356, "pct_switch": 0.004, "pct_through": 0.0037, "pct_verticales": 0.5084, "pelotazos_espalda": 0.121, "press_final": 2.4255, "press_media": 1.7021, "prog_x": 28.9381, "start_x": 42.4858, "starts_from_dispossess": 0.0346, "takeons_ok": 0.3227, "tempo": 0.337, "transition_speed": 3.581, "verticalidad_media": 0.3645}, "Boulogne": {"atk_l": 40.1239, "atk_w": 31.641, "ball_distance": 100.9804, "behind_line_ok": 0.0482, "broke_last_line": 0.0316, "broke_second_last": 0.1575, "cross_pvadded_max": 0.0005, "dang_runs": 0.1237, "deep_completions": 0.2666, "def_h": 31.8621, "dribbles_box": 0.0092, "dribbles_last_third": 0.0446, "duration_s": 30.1611, "hold_max": 9.7467, "hold_mean": 6.0423, "hold_min": 3.8778, "line_breaks": 0.4918, "max_x": 67.5718, "n_centros": 0.1166, "n_events": 5.6167, "n_involved": 1.793, "n_passes": 2.7827, "opt_quality_mean": -0.0212, "paredes": 0.2218, "pass_options_mean": 8.7021, "passes_behind_line": 0.134, "pct_adentro": 0.5159, "pct_afuera": 0.3996, "pct_cortos": 0.4032, "pct_headpass": 0.0518, "pct_largos": 0.2131, "pct_launch": 0.1113, "pct_layoff": 0.0108, "pct_medios": 0.3001, "pct_switch": 0.0033, "pct_through": 0.002, "pct_verticales": 0.5244, "pelotazos_espalda": 0.1007, "press_final": 2.5678, "press_media": 1.8282, "prog_x": 25.1997, "start_x": 43.4088, "starts_from_dispossess": 0.0442, "takeons_ok": 0.039, "tempo": 0.3799, "transition_speed": 3.7006, "verticalidad_media": 0.3965}, "Clermont": {"atk_l": 44.1719, "atk_w": 31.9706, "ball_distance": 142.5323, "behind_line_ok": 0.0542, "broke_last_line": 0.0339, "broke_second_last": 0.1807, "cross_pvadded_max": 0.0009, "dang_runs": 0.1401, "deep_completions": 0.2769, "def_h": 34.3553, "dribbles_box": 0.0098, "dribbles_last_third": 0.0497, "duration_s": 30.9886, "hold_max": 10.4277, "hold_mean": 5.9216, "hold_min": 3.5029, "line_breaks": 0.8305, "max_x": 66.1066, "n_centros": 0.1153, "n_events": 6.0124, "n_involved": 1.9329, "n_passes": 3.5298, "opt_quality_mean": -0.0529, "paredes": 0.2986, "pass_options_mean": 8.5002, "passes_behind_line": 0.134, "pct_adentro": 0.4919, "pct_afuera": 0.4279, "pct_cortos": 0.3852, "pct_headpass": 0.0312, "pct_largos": 0.2005, "pct_launch": 0.0712, "pct_layoff": 0.0124, "pct_medios": 0.3351, "pct_switch": 0.0055, "pct_through": 0.0025, "pct_verticales": 0.4715, "pelotazos_espalda": 0.0948, "press_final": 2.5341, "press_media": 1.8003, "prog_x": 26.5066, "start_x": 40.8477, "starts_from_dispossess": 0.0377, "takeons_ok": 0.049, "tempo": 0.3619, "transition_speed": 3.3198, "verticalidad_media": 0.3163}, "Dunkerque": {"atk_l": 44.1952, "atk_w": 32.5266, "ball_distance": 208.0701, "behind_line_ok": 0.0631, "broke_last_line": 0.049, "broke_second_last": 0.1668, "cross_pvadded_max": 0.0008, "dang_runs": 0.1964, "deep_completions": 0.3188, "def_h": 32.8828, "dribbles_box": 0.0123, "dribbles_last_third": 0.0593, "duration_s": 33.4395, "hold_max": 11.5504, "hold_mean": 6.0994, "hold_min": 3.4952, "line_breaks": 0.9735, "max_x": 67.3013, "n_centros": 0.1196, "n_events": 6.7383, "n_involved": 2.0761, "n_passes": 4.2037, "opt_quality_mean": -0.0078, "paredes": 0.4462, "pass_options_mean": 8.8372, "passes_behind_line": 0.143, "pct_adentro": 0.5153, "pct_afuera": 0.4096, "pct_cortos": 0.3775, "pct_headpass": 0.0371, "pct_largos": 0.1738, "pct_launch": 0.0682, "pct_layoff": 0.0114, "pct_medios": 0.3745, "pct_switch": 0.0033, "pct_through": 0.0021, "pct_verticales": 0.4326, "pelotazos_espalda": 0.0933, "press_final": 2.5614, "press_media": 1.7572, "prog_x": 26.2229, "start_x": 42.1186, "starts_from_dispossess": 0.0374, "takeons_ok": 0.0516, "tempo": 0.3709, "transition_speed": 2.9862, "verticalidad_media": 0.2675}, "Grenoble": {"atk_l": 43.8533, "atk_w": 33.1884, "ball_distance": 124.288, "behind_line_ok": 0.0587, "broke_last_line": 0.0303, "broke_second_last": 0.177, "cross_pvadded_max": 0.0008, "dang_runs": 0.141, "deep_completions": 0.2947, "def_h": 33.1931, "dribbles_box": 0.0076, "dribbles_last_third": 0.0511, "duration_s": 33.3848, "hold_max": 10.3624, "hold_mean": 6.2321, "hold_min": 3.9052, "line_breaks": 0.5882, "max_x": 67.1616, "n_centros": 0.1196, "n_events": 5.9508, "n_involved": 1.8216, "n_passes": 3.0491, "opt_quality_mean": -0.0701, "paredes": 0.2445, "pass_options_mean": 8.138, "passes_behind_line": 0.1454, "pct_adentro": 0.4883, "pct_afuera": 0.4263, "pct_cortos": 0.3409, "pct_headpass": 0.0506, "pct_largos": 0.2242, "pct_launch": 0.0954, "pct_layoff": 0.0111, "pct_medios": 0.3509, "pct_switch": 0.0037, "pct_through": 0.0013, "pct_verticales": 0.5233, "pelotazos_espalda": 0.1061, "press_final": 2.4627, "press_media": 1.7765, "prog_x": 27.9725, "start_x": 40.4612, "starts_from_dispossess": 0.0407, "takeons_ok": 0.0507, "tempo": 0.3652, "transition_speed": 3.8155, "verticalidad_media": 0.382}, "Guingamp": {"atk_l": 42.0218, "atk_w": 32.2399, "ball_distance": 194.1409, "behind_line_ok": 0.0574, "broke_last_line": 0.0464, "broke_second_last": 0.1822, "cross_pvadded_max": 0.0013, "dang_runs": 0.1608, "deep_completions": 0.3355, "def_h": 31.9095, "dribbles_box": 0.0088, "dribbles_last_third": 0.0549, "duration_s": 28.5783, "hold_max": 10.3101, "hold_mean": 5.7635, "hold_min": 3.3575, "line_breaks": 0.9724, "max_x": 68.0163, "n_centros": 0.1427, "n_events": 6.1747, "n_involved": 2.1018, "n_passes": 3.8778, "opt_quality_mean": 0.0343, "paredes": 0.3898, "pass_options_mean": 8.9554, "passes_behind_line": 0.1203, "pct_adentro": 0.5189, "pct_afuera": 0.3984, "pct_cortos": 0.4096, "pct_headpass": 0.0501, "pct_largos": 0.1698, "pct_launch": 0.0715, "pct_layoff": 0.0119, "pct_medios": 0.3397, "pct_switch": 0.0035, "pct_through": 0.0027, "pct_verticales": 0.4341, "pelotazos_espalda": 0.08, "press_final": 2.4074, "press_media": 1.7568, "prog_x": 24.3163, "start_x": 44.8201, "starts_from_dispossess": 0.0402, "takeons_ok": 0.042, "tempo": 0.387, "transition_speed": 2.9005, "verticalidad_media": 0.2809}, "Laval": {"atk_l": 41.3426, "atk_w": 31.6271, "ball_distance": 120.6444, "behind_line_ok": 0.0487, "broke_last_line": 0.0262, "broke_second_last": 0.169, "cross_pvadded_max": 0.0009, "dang_runs": 0.1296, "deep_completions": 0.2713, "def_h": 31.9811, "dribbles_box": 0.007, "dribbles_last_third": 0.0507, "duration_s": 35.8669, "hold_max": 10.0448, "hold_mean": 6.0736, "hold_min": 3.8909, "line_breaks": 0.5978, "max_x": 67.5089, "n_centros": 0.1194, "n_events": 6.2619, "n_involved": 1.89, "n_passes": 3.0587, "opt_quality_mean": -0.023, "paredes": 0.2527, "pass_options_mean": 8.567, "passes_behind_line": 0.1334, "pct_adentro": 0.5103, "pct_afuera": 0.4146, "pct_cortos": 0.3509, "pct_headpass": 0.0436, "pct_largos": 0.2456, "pct_launch": 0.112, "pct_layoff": 0.0151, "pct_medios": 0.3297, "pct_switch": 0.004, "pct_through": 0.0007, "pct_verticales": 0.5256, "pelotazos_espalda": 0.0989, "press_final": 2.5519, "press_media": 1.7389, "prog_x": 26.2295, "start_x": 42.3173, "starts_from_dispossess": 0.0347, "takeons_ok": 0.0371, "tempo": 0.3821, "transition_speed": 3.6253, "verticalidad_media": 0.378}, "Le Mans": {"atk_l": 43.6652, "atk_w": 32.6943, "ball_distance": 110.1557, "behind_line_ok": 0.0565, "broke_last_line": 0.0324, "broke_second_last": 0.155, "cross_pvadded_max": 0.0014, "dang_runs": 0.1849, "deep_completions": 0.2987, "def_h": 31.7987, "dribbles_box": 0.0071, "dribbles_last_third": 0.0459, "duration_s": 24.4353, "hold_max": 9.9406, "hold_mean": 6.0582, "hold_min": 3.7622, "line_breaks": 0.5516, "max_x": 68.5858, "n_centros": 0.1384, "n_events": 5.2516, "n_involved": 1.8397, "n_passes": 2.9023, "opt_quality_mean": -0.0211, "paredes": 0.2119, "pass_options_mean": 8.7257, "passes_behind_line": 0.1399, "pct_adentro": 0.5231, "pct_afuera": 0.3971, "pct_cortos": 0.3538, "pct_headpass": 0.0506, "pct_largos": 0.2221, "pct_launch": 0.1068, "pct_layoff": 0.0122, "pct_medios": 0.3455, "pct_switch": 0.0042, "pct_through": 0.0026, "pct_verticales": 0.5124, "pelotazos_espalda": 0.1078, "press_final": 2.3362, "press_media": 1.7409, "prog_x": 26.2022, "start_x": 43.5544, "starts_from_dispossess": 0.0405, "takeons_ok": 0.0344, "tempo": 0.399, "transition_speed": 4.0549, "verticalidad_media": 0.3706}, "Montpellier": {"atk_l": 41.0423, "atk_w": 33.4709, "ball_distance": 147.3966, "behind_line_ok": 0.0453, "broke_last_line": 0.0361, "broke_second_last": 0.1717, "cross_pvadded_max": 0.0012, "dang_runs": 0.1533, "deep_completions": 0.2918, "def_h": 31.0706, "dribbles_box": 0.0079, "dribbles_last_third": 0.0514, "duration_s": 25.6324, "hold_max": 10.5294, "hold_mean": 6.116, "hold_min": 3.6525, "line_breaks": 0.6662, "max_x": 68.3923, "n_centros": 0.1336, "n_events": 5.6748, "n_involved": 1.886, "n_passes": 3.3615, "opt_quality_mean": 0.0154, "paredes": 0.3278, "pass_options_mean": 8.3296, "passes_behind_line": 0.1107, "pct_adentro": 0.5345, "pct_afuera": 0.3812, "pct_cortos": 0.4112, "pct_headpass": 0.043, "pct_largos": 0.1716, "pct_launch": 0.0732, "pct_layoff": 0.0095, "pct_medios": 0.3336, "pct_switch": 0.0026, "pct_through": 0.003, "pct_verticales": 0.459, "pelotazos_espalda": 0.0791, "press_final": 2.5019, "press_media": 1.7959, "prog_x": 24.7624, "start_x": 44.6241, "starts_from_dispossess": 0.044, "takeons_ok": 0.043, "tempo": 0.3754, "transition_speed": 3.2405, "verticalidad_media": 0.3155}, "Nancy": {"atk_l": 40.7589, "atk_w": 33.2071, "ball_distance": 83.4845, "behind_line_ok": 0.0578, "broke_last_line": 0.0236, "broke_second_last": 0.1674, "cross_pvadded_max": 0.0011, "dang_runs": 0.1033, "deep_completions": 0.2821, "def_h": 31.8375, "dribbles_box": 0.0059, "dribbles_last_third": 0.0397, "duration_s": 20.7463, "hold_max": 10.1491, "hold_mean": 6.274, "hold_min": 3.9289, "line_breaks": 0.4952, "max_x": 68.4258, "n_centros": 0.1284, "n_events": 4.631, "n_involved": 1.7243, "n_passes": 2.5641, "opt_quality_mean": -0.0089, "paredes": 0.1821, "pass_options_mean": 8.422, "passes_behind_line": 0.1529, "pct_adentro": 0.508, "pct_afuera": 0.406, "pct_cortos": 0.355, "pct_headpass": 0.051, "pct_largos": 0.2537, "pct_launch": 0.1122, "pct_layoff": 0.0092, "pct_medios": 0.3065, "pct_switch": 0.0032, "pct_through": 0.0012, "pct_verticales": 0.542, "pelotazos_espalda": 0.1185, "press_final": 2.598, "press_media": 1.8271, "prog_x": 27.1702, "start_x": 42.3764, "starts_from_dispossess": 0.0398, "takeons_ok": 0.0341, "tempo": 0.3769, "transition_speed": 4.188, "verticalidad_media": 0.4116}, "Pau": {"atk_l": 44.5064, "atk_w": 32.9133, "ball_distance": 157.2394, "behind_line_ok": 0.0565, "broke_last_line": 0.035, "broke_second_last": 0.1968, "cross_pvadded_max": 0.0013, "dang_runs": 0.1936, "deep_completions": 0.3436, "def_h": 33.3137, "dribbles_box": 0.0099, "dribbles_last_third": 0.0613, "duration_s": 24.9841, "hold_max": 10.4387, "hold_mean": 5.8141, "hold_min": 3.3733, "line_breaks": 0.7847, "max_x": 66.9002, "n_centros": 0.1419, "n_events": 5.8471, "n_involved": 2.0082, "n_passes": 3.6829, "opt_quality_mean": 0.007, "paredes": 0.3296, "pass_options_mean": 8.7835, "passes_behind_line": 0.12, "pct_adentro": 0.5085, "pct_afuera": 0.4067, "pct_cortos": 0.4103, "pct_headpass": 0.0339, "pct_largos": 0.184, "pct_launch": 0.0627, "pct_layoff": 0.0139, "pct_medios": 0.3216, "pct_switch": 0.0067, "pct_through": 0.0007, "pct_verticales": 0.4353, "pelotazos_espalda": 0.0759, "press_final": 2.5366, "press_media": 1.7464, "prog_x": 26.1144, "start_x": 42.0579, "starts_from_dispossess": 0.032, "takeons_ok": 0.0516, "tempo": 0.3708, "transition_speed": 3.0704, "verticalidad_media": 0.2759}, "Red Star": {"atk_l": 43.2651, "atk_w": 34.6231, "ball_distance": 149.4082, "behind_line_ok": 0.047, "broke_last_line": 0.0337, "broke_second_last": 0.154, "cross_pvadded_max": 0.0028, "dang_runs": 0.1691, "deep_completions": 1.2796, "def_h": 31.2572, "dribbles_box": 0.0384, "dribbles_last_third": 0.1728, "duration_s": 134.9759, "hold_max": 12.2417, "hold_mean": 5.8328, "hold_min": 3.4476, "line_breaks": 0.6607, "max_x": 68.4902, "n_centros": 0.7559, "n_events": 34.4409, "n_involved": 1.8827, "n_passes": 18.8181, "opt_quality_mean": 0.0321, "paredes": 2.027, "pass_options_mean": 8.219, "passes_behind_line": 0.1146, "pct_adentro": 0.5059, "pct_afuera": 0.4109, "pct_cortos": 0.3987, "pct_headpass": 0.0522, "pct_largos": 0.1928, "pct_launch": 0.0789, "pct_layoff": 0.011, "pct_medios": 0.3261, "pct_switch": 0.0043, "pct_through": 0.0014, "pct_verticales": 0.4684, "pelotazos_espalda": 0.0825, "press_final": 2.2131, "press_media": 1.5805, "prog_x": 27.198, "start_x": 42.5386, "starts_from_dispossess": 0.0433, "takeons_ok": 0.3689, "tempo": 0.3463, "transition_speed": 3.0786, "verticalidad_media": 0.3001}, "Reims": {"atk_l": 42.6029, "atk_w": 32.2231, "ball_distance": 167.443, "behind_line_ok": 0.0742, "broke_last_line": 0.0459, "broke_second_last": 0.2033, "cross_pvadded_max": 0.0008, "dang_runs": 0.1815, "deep_completions": 0.4784, "def_h": 31.5167, "dribbles_box": 0.0164, "dribbles_last_third": 0.0622, "duration_s": 28.2816, "hold_max": 9.5988, "hold_mean": 5.1038, "hold_min": 2.7821, "line_breaks": 0.7647, "max_x": 70.325, "n_centros": 0.1349, "n_events": 6.2142, "n_involved": 2.0344, "n_passes": 3.8616, "opt_quality_mean": 0.1039, "paredes": 0.373, "pass_options_mean": 8.9, "passes_behind_line": 0.1518, "pct_adentro": 0.5215, "pct_afuera": 0.397, "pct_cortos": 0.4201, "pct_headpass": 0.0363, "pct_largos": 0.1697, "pct_launch": 0.0655, "pct_layoff": 0.0104, "pct_medios": 0.3295, "pct_switch": 0.0058, "pct_through": 0.0029, "pct_verticales": 0.4382, "pelotazos_espalda": 0.0997, "press_final": 2.588, "press_media": 1.853, "prog_x": 26.0181, "start_x": 45.5525, "starts_from_dispossess": 0.0438, "takeons_ok": 0.0531, "tempo": 0.3901, "transition_speed": 3.2406, "verticalidad_media": 0.272}, "Rodez": {"atk_l": 45.1993, "atk_w": 34.8624, "ball_distance": 84.2973, "behind_line_ok": 0.0562, "broke_last_line": 0.0341, "broke_second_last": 0.1183, "cross_pvadded_max": 0.0015, "dang_runs": 0.1367, "deep_completions": 0.312, "def_h": 31.2538, "dribbles_box": 0.0101, "dribbles_last_third": 0.0477, "duration_s": 29.2828, "hold_max": 10.0114, "hold_mean": 6.013, "hold_min": 3.6614, "line_breaks": 0.3875, "max_x": 71.1376, "n_centros": 0.1649, "n_events": 5.2829, "n_involved": 1.6341, "n_passes": 2.5438, "opt_quality_mean": 0.0303, "paredes": 0.1544, "pass_options_mean": 8.3928, "passes_behind_line": 0.1509, "pct_adentro": 0.5167, "pct_afuera": 0.3978, "pct_cortos": 0.3002, "pct_headpass": 0.0358, "pct_largos": 0.2612, "pct_launch": 0.0878, "pct_layoff": 0.0091, "pct_medios": 0.3541, "pct_switch": 0.0067, "pct_through": 0.003, "pct_verticales": 0.5052, "pelotazos_espalda": 0.1179, "press_final": 2.1482, "press_media": 1.6316, "prog_x": 29.2593, "start_x": 43.0214, "starts_from_dispossess": 0.0345, "takeons_ok": 0.0408, "tempo": 0.3552, "transition_speed": 4.4322, "verticalidad_media": 0.3782}, "Saint-Étienne": {"atk_l": 40.7516, "atk_w": 31.9677, "ball_distance": 169.5984, "behind_line_ok": 0.0537, "broke_last_line": 0.0495, "broke_second_last": 0.1926, "cross_pvadded_max": 0.001, "dang_runs": 0.2006, "deep_completions": 0.3885, "def_h": 32.4183, "dribbles_box": 0.0117, "dribbles_last_third": 0.0632, "duration_s": 31.6838, "hold_max": 9.4075, "hold_mean": 4.9879, "hold_min": 2.755, "line_breaks": 0.9337, "max_x": 68.1718, "n_centros": 0.0895, "n_events": 6.7076, "n_involved": 2.1104, "n_passes": 4.1204, "opt_quality_mean": 0.0296, "paredes": 0.4491, "pass_options_mean": 8.4326, "passes_behind_line": 0.1158, "pct_adentro": 0.5172, "pct_afuera": 0.4003, "pct_cortos": 0.4534, "pct_headpass": 0.0268, "pct_largos": 0.1427, "pct_launch": 0.0635, "pct_layoff": 0.0121, "pct_medios": 0.3226, "pct_switch": 0.0027, "pct_through": 0.0026, "pct_verticales": 0.4405, "pelotazos_espalda": 0.0719, "press_final": 2.5838, "press_media": 1.8499, "prog_x": 25.14, "start_x": 44.1496, "starts_from_dispossess": 0.0464, "takeons_ok": 0.0543, "tempo": 0.3931, "transition_speed": 3.0048, "verticalidad_media": 0.2746}, "Troyes": {"atk_l": 43.253, "atk_w": 31.821, "ball_distance": 155.2978, "behind_line_ok": 0.0658, "broke_last_line": 0.0538, "broke_second_last": 0.1823, "cross_pvadded_max": 0.0011, "dang_runs": 0.1759, "deep_completions": 0.4299, "def_h": 30.5645, "dribbles_box": 0.0108, "dribbles_last_third": 0.0666, "duration_s": 28.3294, "hold_max": 10.1841, "hold_mean": 6.1896, "hold_min": 3.9496, "line_breaks": 0.6676, "max_x": 70.6255, "n_centros": 0.126, "n_events": 5.8927, "n_involved": 1.8929, "n_passes": 3.3107, "opt_quality_mean": 0.0953, "paredes": 0.3092, "pass_options_mean": 8.8767, "passes_behind_line": 0.1529, "pct_adentro": 0.5017, "pct_afuera": 0.4114, "pct_cortos": 0.3622, "pct_headpass": 0.0426, "pct_largos": 0.2008, "pct_launch": 0.0775, "pct_layoff": 0.0108, "pct_medios": 0.351, "pct_switch": 0.0055, "pct_through": 0.0034, "pct_verticales": 0.4761, "pelotazos_espalda": 0.1055, "press_final": 2.5422, "press_media": 1.8014, "prog_x": 26.2826, "start_x": 45.7377, "starts_from_dispossess": 0.0403, "takeons_ok": 0.0565, "tempo": 0.3508, "transition_speed": 3.0671, "verticalidad_media": 0.3377}}, "team_eje_norm_gen": {"Amiens": {"eje_verticalidad": -0.0178, "eje_elaboracion": -0.0135, "eje_individual": 0.0158, "eje_rotura_lineas": -0.0065, "eje_amplitud_centro": 0.0366, "eje_profundidad_espalda": -0.0397, "eje_robo_alto": -0.022, "eje_aereo_segunda": -0.0377}, "Annecy": {"eje_verticalidad": 0.1108, "eje_elaboracion": -0.0751, "eje_individual": -0.0222, "eje_rotura_lineas": -0.0261, "eje_amplitud_centro": -0.0548, "eje_profundidad_espalda": -0.0449, "eje_robo_alto": 0.0176, "eje_aereo_segunda": 0.0593}, "Bastia": {"eje_verticalidad": 0.0348, "eje_elaboracion": 1.7544, "eje_individual": 0.7841, "eje_rotura_lineas": -0.0404, "eje_amplitud_centro": 0.792, "eje_profundidad_espalda": 0.5792, "eje_robo_alto": -0.0326, "eje_aereo_segunda": 0.0272}, "Boulogne": {"eje_verticalidad": 0.0416, "eje_elaboracion": -0.0256, "eje_individual": -0.0271, "eje_rotura_lineas": -0.03, "eje_amplitud_centro": -0.0232, "eje_profundidad_espalda": -0.0192, "eje_robo_alto": 0.0091, "eje_aereo_segunda": 0.0479}, "Clermont": {"eje_verticalidad": -0.0595, "eje_elaboracion": 0.0268, "eje_individual": -0.0049, "eje_rotura_lineas": 0.0233, "eje_amplitud_centro": 0.0184, "eje_profundidad_espalda": -0.0146, "eje_robo_alto": -0.0557, "eje_aereo_segunda": -0.0399}, "Dunkerque": {"eje_verticalidad": -0.1447, "eje_elaboracion": 0.107, "eje_individual": 0.0291, "eje_rotura_lineas": 0.0459, "eje_amplitud_centro": -0.0109, "eje_profundidad_espalda": 0.0133, "eje_robo_alto": -0.0326, "eje_aereo_segunda": -0.0367}, "Grenoble": {"eje_verticalidad": 0.0458, "eje_elaboracion": -0.0439, "eje_individual": -0.007, "eje_rotura_lineas": -0.0152, "eje_amplitud_centro": 0.0076, "eje_profundidad_espalda": 0.0134, "eje_robo_alto": -0.0553, "eje_aereo_segunda": 0.0259}, "Guingamp": {"eje_verticalidad": -0.1438, "eje_elaboracion": 0.0896, "eje_individual": -0.0042, "eje_rotura_lineas": 0.0555, "eje_amplitud_centro": 0.0012, "eje_profundidad_espalda": -0.0142, "eje_robo_alto": 0.0254, "eje_aereo_segunda": -0.0018}, "Laval": {"eje_verticalidad": 0.0572, "eje_elaboracion": -0.0322, "eje_individual": -0.0267, "eje_rotura_lineas": -0.0283, "eje_amplitud_centro": -0.0013, "eje_profundidad_espalda": -0.019, "eje_robo_alto": -0.0356, "eje_aereo_segunda": 0.0561}, "Le Mans": {"eje_verticalidad": 0.0432, "eje_elaboracion": -0.0602, "eje_individual": -0.0195, "eje_rotura_lineas": -0.0209, "eje_amplitud_centro": 0.0014, "eje_profundidad_espalda": 0.0099, "eje_robo_alto": 0.0024, "eje_aereo_segunda": 0.0476}, "Montpellier": {"eje_verticalidad": -0.0944, "eje_elaboracion": 0.0413, "eje_individual": -0.011, "eje_rotura_lineas": 0.008, "eje_amplitud_centro": -0.0299, "eje_profundidad_espalda": -0.0484, "eje_robo_alto": 0.0314, "eje_aereo_segunda": -0.0286}, "Nancy": {"eje_verticalidad": 0.1109, "eje_elaboracion": -0.0894, "eje_individual": -0.0514, "eje_rotura_lineas": -0.0398, "eje_amplitud_centro": -0.0069, "eje_profundidad_espalda": 0.024, "eje_robo_alto": -0.0216, "eje_aereo_segunda": 0.0382}, "Pau": {"eje_verticalidad": -0.1299, "eje_elaboracion": 0.0575, "eje_individual": 0.0246, "eje_rotura_lineas": 0.0183, "eje_amplitud_centro": 0.0323, "eje_profundidad_espalda": -0.0161, "eje_robo_alto": -0.0473, "eje_aereo_segunda": -0.0366}, "Red Star": {"eje_verticalidad": -0.0866, "eje_elaboracion": 1.4734, "eje_individual": 0.551, "eje_rotura_lineas": -0.0171, "eje_amplitud_centro": 0.5916, "eje_profundidad_espalda": 0.2798, "eje_robo_alto": -0.0096, "eje_aereo_segunda": 0.0069}, "Reims": {"eje_verticalidad": -0.133, "eje_elaboracion": 0.09, "eje_individual": 0.0397, "eje_rotura_lineas": 0.0492, "eje_amplitud_centro": 0.0096, "eje_profundidad_espalda": 0.0883, "eje_robo_alto": 0.0485, "eje_aereo_segunda": -0.0477}, "Rodez": {"eje_verticalidad": 0.0837, "eje_elaboracion": -0.1302, "eje_individual": -0.0164, "eje_rotura_lineas": -0.0548, "eje_amplitud_centro": 0.0449, "eje_profundidad_espalda": 0.0301, "eje_robo_alto": -0.0229, "eje_aereo_segunda": -0.0271}, "Saint-Étienne": {"eje_verticalidad": -0.1605, "eje_elaboracion": 0.1534, "eje_individual": 0.0359, "eje_rotura_lineas": 0.0619, "eje_amplitud_centro": -0.0526, "eje_profundidad_espalda": -0.0108, "eje_robo_alto": 0.0286, "eje_aereo_segunda": -0.0609}, "Troyes": {"eje_verticalidad": -0.0558, "eje_elaboracion": 0.0015, "eje_individual": 0.0328, "eje_rotura_lineas": 0.0401, "eje_amplitud_centro": 0.0127, "eje_profundidad_espalda": 0.0694, "eje_robo_alto": 0.0431, "eje_aereo_segunda": -0.0161}}, "team_eje_norm_con": {"Amiens": {"eje_verticalidad": -0.086, "eje_elaboracion": 0.0204, "eje_individual": 0.0377, "eje_rotura_lineas": 0.0413, "eje_amplitud_centro": -0.0061, "eje_profundidad_espalda": 0.0246, "eje_robo_alto": 0.0567, "eje_aereo_segunda": -0.0131}, "Annecy": {"eje_verticalidad": 0.0161, "eje_elaboracion": -0.069, "eje_individual": -0.0397, "eje_rotura_lineas": 0.0052, "eje_amplitud_centro": 0.0233, "eje_profundidad_espalda": -0.0001, "eje_robo_alto": -0.0581, "eje_aereo_segunda": 0.0313}, "Bastia": {"eje_verticalidad": 0.0416, "eje_elaboracion": 1.4267, "eje_individual": 0.5514, "eje_rotura_lineas": -0.0375, "eje_amplitud_centro": 0.5822, "eje_profundidad_espalda": 0.2948, "eje_robo_alto": -0.0458, "eje_aereo_segunda": 0.0466}, "Boulogne": {"eje_verticalidad": -0.0504, "eje_elaboracion": 0.0158, "eje_individual": 0.0094, "eje_rotura_lineas": 0.0084, "eje_amplitud_centro": -0.0253, "eje_profundidad_espalda": -0.0036, "eje_robo_alto": -0.0025, "eje_aereo_segunda": 0.0114}, "Clermont": {"eje_verticalidad": -0.0764, "eje_elaboracion": 0.0338, "eje_individual": -0.0001, "eje_rotura_lineas": 0.0265, "eje_amplitud_centro": 0.0283, "eje_profundidad_espalda": 0.017, "eje_robo_alto": 0.059, "eje_aereo_segunda": -0.0538}, "Dunkerque": {"eje_verticalidad": -0.0409, "eje_elaboracion": 0.0025, "eje_individual": -0.0176, "eje_rotura_lineas": 0.0051, "eje_amplitud_centro": -0.0079, "eje_profundidad_espalda": -0.0056, "eje_robo_alto": -0.0059, "eje_aereo_segunda": -0.0166}, "Grenoble": {"eje_verticalidad": -0.0727, "eje_elaboracion": 0.03, "eje_individual": 0.0129, "eje_rotura_lineas": 0.0039, "eje_amplitud_centro": 0.0029, "eje_profundidad_espalda": -0.0112, "eje_robo_alto": 0.045, "eje_aereo_segunda": -0.0185}, "Guingamp": {"eje_verticalidad": -0.0083, "eje_elaboracion": 0.0233, "eje_individual": -0.0021, "eje_rotura_lineas": 0.0135, "eje_amplitud_centro": 0.0172, "eje_profundidad_espalda": 0.0036, "eje_robo_alto": -0.0307, "eje_aereo_segunda": -0.0045}, "Laval": {"eje_verticalidad": -0.042, "eje_elaboracion": 0.027, "eje_individual": 0.0189, "eje_rotura_lineas": 0.0039, "eje_amplitud_centro": -0.0034, "eje_profundidad_espalda": 0.0105, "eje_robo_alto": 0.0278, "eje_aereo_segunda": 0.01}, "Le Mans": {"eje_verticalidad": -0.0024, "eje_elaboracion": 1.7853, "eje_individual": 0.7565, "eje_rotura_lineas": -0.0349, "eje_amplitud_centro": 0.7548, "eje_profundidad_espalda": 0.5161, "eje_robo_alto": -0.0472, "eje_aereo_segunda": 0.0285}, "Montpellier": {"eje_verticalidad": -0.0082, "eje_elaboracion": -0.0151, "eje_individual": -0.0036, "eje_rotura_lineas": -0.0107, "eje_amplitud_centro": -0.0068, "eje_profundidad_espalda": -0.027, "eje_robo_alto": -0.0169, "eje_aereo_segunda": 0.0066}, "Nancy": {"eje_verticalidad": -0.0748, "eje_elaboracion": 0.0438, "eje_individual": 0.011, "eje_rotura_lineas": 0.0325, "eje_amplitud_centro": 0.0072, "eje_profundidad_espalda": 0.0032, "eje_robo_alto": -0.0024, "eje_aereo_segunda": -0.0002}, "Pau": {"eje_verticalidad": -0.0904, "eje_elaboracion": 0.0626, "eje_individual": 0.0245, "eje_rotura_lineas": 0.0328, "eje_amplitud_centro": 0.0064, "eje_profundidad_espalda": 0.0221, "eje_robo_alto": 0.0192, "eje_aereo_segunda": -0.0467}, "Red Star": {"eje_verticalidad": 0.0048, "eje_elaboracion": -0.0382, "eje_individual": -0.0161, "eje_rotura_lineas": -0.0289, "eje_amplitud_centro": -0.014, "eje_profundidad_espalda": -0.0211, "eje_robo_alto": -0.0326, "eje_aereo_segunda": 0.0067}, "Reims": {"eje_verticalidad": 0.0326, "eje_elaboracion": -0.045, "eje_individual": -0.0197, "eje_rotura_lineas": -0.0153, "eje_amplitud_centro": -0.0155, "eje_profundidad_espalda": -0.0026, "eje_robo_alto": -0.033, "eje_aereo_segunda": 0.0134}, "Rodez": {"eje_verticalidad": -0.06, "eje_elaboracion": 0.0502, "eje_individual": 0.0133, "eje_rotura_lineas": -0.0029, "eje_amplitud_centro": 0.0232, "eje_profundidad_espalda": 0.041, "eje_robo_alto": -0.0173, "eje_aereo_segunda": -0.0234}, "Saint-Étienne": {"eje_verticalidad": 0.0133, "eje_elaboracion": -0.0388, "eje_individual": -0.0017, "eje_rotura_lineas": -0.0165, "eje_amplitud_centro": 0.0032, "eje_profundidad_espalda": -0.006, "eje_robo_alto": -0.0019, "eje_aereo_segunda": -0.0007}, "Troyes": {"eje_verticalidad": 0.0052, "eje_elaboracion": 0.0008, "eje_individual": -0.0194, "eje_rotura_lineas": -0.0034, "eje_amplitud_centro": -0.0076, "eje_profundidad_espalda": 0.0156, "eje_robo_alto": -0.0437, "eje_aereo_segunda": -0.0016}}} \ No newline at end of file diff --git a/vendor/data/ejes/french-ligue-2/25-26/team_profiles.parquet b/vendor/data/ejes/french-ligue-2/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..40a266b8d460def9db825123e749d03e472b5401 --- /dev/null +++ b/vendor/data/ejes/french-ligue-2/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccd999f11a5c0811d51d8d6ef91df39e6dcec6eff4b68d8667acbe55a20ab22d +size 9481 diff --git a/vendor/data/ejes/german-bundesliga-zwei/25-26/ejes_definition.json b/vendor/data/ejes/german-bundesliga-zwei/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/german-bundesliga-zwei/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/german-bundesliga-zwei/25-26/match_team_ejes.parquet b/vendor/data/ejes/german-bundesliga-zwei/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..56989ff8de366a2ee820719537329092cb475cb0 --- /dev/null +++ b/vendor/data/ejes/german-bundesliga-zwei/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53ba21eed9c690e5f94d88f0f22c8f6aea6728439d4d985543cf7470c4200c9f +size 73829 diff --git a/vendor/data/ejes/german-bundesliga-zwei/25-26/match_team_vars.parquet b/vendor/data/ejes/german-bundesliga-zwei/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..66d53dc9982da573e8c285117268a70f7fb75227 --- /dev/null +++ b/vendor/data/ejes/german-bundesliga-zwei/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85c54b4d12cc3f42c2586d0b1a64a07e63cb0a50427c5545976a154d26e66fa1 +size 273204 diff --git a/vendor/data/ejes/german-bundesliga-zwei/25-26/predictor.json b/vendor/data/ejes/german-bundesliga-zwei/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..cf4d5f32048deb1b6823555f70e9dc1854200291 --- /dev/null +++ b/vendor/data/ejes/german-bundesliga-zwei/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.9141, "con": 0.7642, "intercept": 0.017}, "elaboracion": {"gen": 0.8999, "con": 0.7248, "intercept": -0.0012}, "individual": {"gen": 0.8712, "con": 0.4089, "intercept": 0.0001}, "rotura_lineas": {"gen": 0.8262, "con": 0.6203, "intercept": -0.0004}, "amplitud_centro": {"gen": 0.848, "con": 0.6884, "intercept": 0.0001}, "profundidad_espalda": {"gen": 0.7066, "con": 0.055, "intercept": 0.0003}, "robo_alto": {"gen": 0.7104, "con": 0.7262, "intercept": 0.002}, "aereo_segunda": {"gen": 0.9338, "con": 0.7678, "intercept": -0.0002}} \ No newline at end of file diff --git a/vendor/data/ejes/german-bundesliga-zwei/25-26/scales.json b/vendor/data/ejes/german-bundesliga-zwei/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..1350d30d658a314d4c3676bcd6d53976249b2ea3 --- /dev/null +++ b/vendor/data/ejes/german-bundesliga-zwei/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 1.869, "atk_w": 1.4049, "ball_distance": 55.7729, "behind_line_ok": 0.0234, "broke_last_line": 0.0167, "broke_second_last": 0.0418, "cross_pvadded_max": 0.0015, "dang_runs": 0.0755, "deep_completions": 0.1038, "def_h": 2.8037, "dribbles_box": 0.0101, "dribbles_last_third": 0.0242, "duration_s": 19.7555, "hold_max": 1.3394, "hold_mean": 1.0159, "hold_min": 0.9954, "line_breaks": 0.2943, "max_x": 3.6501, "n_centros": 0.0439, "n_events": 1.8609, "n_involved": 0.1734, "n_passes": 0.6162, "opt_quality_mean": 0.1403, "paredes": 0.1167, "pass_options_mean": 1.512, "passes_behind_line": 0.0398, "pct_adentro": 0.0343, "pct_afuera": 0.0333, "pct_cortos": 0.0453, "pct_headpass": 0.0147, "pct_largos": 0.0456, "pct_launch": 0.0321, "pct_layoff": 0.005, "pct_medios": 0.0377, "pct_switch": 0.0047, "pct_through": 0.0038, "pct_verticales": 0.0534, "pelotazos_espalda": 0.0345, "press_final": 0.2905, "press_media": 0.1683, "prog_x": 2.3854, "start_x": 4.5061, "starts_from_dispossess": 0.017, "takeons_ok": 0.0206, "tempo": 0.0387, "transition_speed": 0.7024, "verticalidad_media": 0.0633}, "eje_sigma": {"eje_verticalidad": 0.1126, "eje_elaboracion": 0.1026, "eje_individual": 0.0627, "eje_rotura_lineas": 0.0614, "eje_amplitud_centro": 0.0538, "eje_profundidad_espalda": 0.0843, "eje_robo_alto": 0.0981, "eje_aereo_segunda": 0.0656}, "eje_match_mean": {"eje_verticalidad": -0.025, "eje_elaboracion": 0.0019, "eje_individual": -0.0003, "eje_rotura_lineas": 0.001, "eje_amplitud_centro": -0.0001, "eje_profundidad_espalda": 0.0011, "eje_robo_alto": -0.0046, "eje_aereo_segunda": 0.0003}, "eje_match_std": {"eje_verticalidad": 0.1266, "eje_elaboracion": 0.1146, "eje_individual": 0.0695, "eje_rotura_lineas": 0.0663, "eje_amplitud_centro": 0.0585, "eje_profundidad_espalda": 0.0886, "eje_robo_alto": 0.1032, "eje_aereo_segunda": 0.0752}, "team_var_norm": {"Arminia Bielefeld": {"atk_l": 37.1429, "atk_w": 31.3504, "ball_distance": 114.5285, "behind_line_ok": 0.0477, "broke_last_line": 0.0238, "broke_second_last": 0.1481, "cross_pvadded_max": 0.0018, "dang_runs": 0.155, "deep_completions": 0.3144, "def_h": 28.6678, "dribbles_box": 0.0132, "dribbles_last_third": 0.0587, "duration_s": 23.4661, "hold_max": 10.4167, "hold_mean": 6.6162, "hold_min": 4.3994, "line_breaks": 0.4659, "max_x": 71.1428, "n_centros": 0.1436, "n_events": 5.1468, "n_involved": 1.8479, "n_passes": 2.8157, "opt_quality_mean": 0.1533, "paredes": 0.221, "pass_options_mean": 8.8132, "passes_behind_line": 0.1272, "pct_adentro": 0.5312, "pct_afuera": 0.377, "pct_cortos": 0.3557, "pct_headpass": 0.0608, "pct_largos": 0.2289, "pct_launch": 0.1001, "pct_layoff": 0.0096, "pct_medios": 0.325, "pct_switch": 0.006, "pct_through": 0.0016, "pct_verticales": 0.5039, "pelotazos_espalda": 0.0944, "press_final": 2.5736, "press_media": 1.8873, "prog_x": 24.3105, "start_x": 48.2408, "starts_from_dispossess": 0.0423, "takeons_ok": 0.0425, "tempo": 0.3797, "transition_speed": 3.7735, "verticalidad_media": 0.3788}, "Bochum": {"atk_l": 39.6026, "atk_w": 31.2196, "ball_distance": 118.1636, "behind_line_ok": 0.0641, "broke_last_line": 0.028, "broke_second_last": 0.1557, "cross_pvadded_max": 0.0013, "dang_runs": 0.1475, "deep_completions": 0.3097, "def_h": 31.1198, "dribbles_box": 0.0091, "dribbles_last_third": 0.0468, "duration_s": 23.8177, "hold_max": 10.1316, "hold_mean": 5.9915, "hold_min": 3.6695, "line_breaks": 0.5155, "max_x": 68.8025, "n_centros": 0.1308, "n_events": 5.3058, "n_involved": 1.8897, "n_passes": 2.9138, "opt_quality_mean": 0.0597, "paredes": 0.2274, "pass_options_mean": 8.9942, "passes_behind_line": 0.1423, "pct_adentro": 0.517, "pct_afuera": 0.4011, "pct_cortos": 0.3594, "pct_headpass": 0.0588, "pct_largos": 0.2267, "pct_launch": 0.1024, "pct_layoff": 0.0117, "pct_medios": 0.333, "pct_switch": 0.0042, "pct_through": 0.0015, "pct_verticales": 0.4831, "pelotazos_espalda": 0.102, "press_final": 2.5682, "press_media": 1.9325, "prog_x": 24.5017, "start_x": 45.6225, "starts_from_dispossess": 0.036, "takeons_ok": 0.0432, "tempo": 0.4032, "transition_speed": 3.7674, "verticalidad_media": 0.3387}, "Darmstadt 98": {"atk_l": 42.7397, "atk_w": 33.7005, "ball_distance": 156.3055, "behind_line_ok": 0.0587, "broke_last_line": 0.0412, "broke_second_last": 0.1814, "cross_pvadded_max": 0.0015, "dang_runs": 0.1321, "deep_completions": 0.3399, "def_h": 31.5262, "dribbles_box": 0.0098, "dribbles_last_third": 0.0455, "duration_s": 34.2288, "hold_max": 10.7922, "hold_mean": 6.0979, "hold_min": 3.6742, "line_breaks": 0.7705, "max_x": 68.3526, "n_centros": 0.1311, "n_events": 6.5197, "n_involved": 1.9862, "n_passes": 3.5513, "opt_quality_mean": 0.0142, "paredes": 0.3266, "pass_options_mean": 8.4132, "passes_behind_line": 0.1357, "pct_adentro": 0.5134, "pct_afuera": 0.3994, "pct_cortos": 0.3672, "pct_headpass": 0.0497, "pct_largos": 0.2231, "pct_launch": 0.0846, "pct_layoff": 0.0123, "pct_medios": 0.3234, "pct_switch": 0.0088, "pct_through": 0.0032, "pct_verticales": 0.4519, "pelotazos_espalda": 0.1057, "press_final": 2.5044, "press_media": 1.8078, "prog_x": 25.5877, "start_x": 44.0746, "starts_from_dispossess": 0.0367, "takeons_ok": 0.0411, "tempo": 0.381, "transition_speed": 3.4664, "verticalidad_media": 0.304}, "Dynamo Dresden": {"atk_l": 38.9591, "atk_w": 31.8209, "ball_distance": 143.1336, "behind_line_ok": 0.0463, "broke_last_line": 0.0283, "broke_second_last": 0.1579, "cross_pvadded_max": 0.0011, "dang_runs": 0.149, "deep_completions": 0.29, "def_h": 32.3864, "dribbles_box": 0.0088, "dribbles_last_third": 0.0457, "duration_s": 31.537, "hold_max": 10.4109, "hold_mean": 5.9541, "hold_min": 3.5165, "line_breaks": 0.599, "max_x": 67.356, "n_centros": 0.1319, "n_events": 6.1542, "n_involved": 1.9763, "n_passes": 3.2861, "opt_quality_mean": 0.0438, "paredes": 0.2978, "pass_options_mean": 8.4112, "passes_behind_line": 0.1243, "pct_adentro": 0.5192, "pct_afuera": 0.3953, "pct_cortos": 0.3831, "pct_headpass": 0.0547, "pct_largos": 0.1933, "pct_launch": 0.1029, "pct_layoff": 0.0093, "pct_medios": 0.3396, "pct_switch": 0.0016, "pct_through": 0.0024, "pct_verticales": 0.4666, "pelotazos_espalda": 0.084, "press_final": 2.4891, "press_media": 1.8233, "prog_x": 23.78, "start_x": 44.7735, "starts_from_dispossess": 0.0401, "takeons_ok": 0.0435, "tempo": 0.4093, "transition_speed": 3.5965, "verticalidad_media": 0.3098}, "Eintracht Braunschweig": {"atk_l": 38.3617, "atk_w": 30.4668, "ball_distance": 94.728, "behind_line_ok": 0.042, "broke_last_line": 0.0241, "broke_second_last": 0.1521, "cross_pvadded_max": 0.0005, "dang_runs": 0.1023, "deep_completions": 0.2331, "def_h": 31.3278, "dribbles_box": 0.0115, "dribbles_last_third": 0.0634, "duration_s": 25.4265, "hold_max": 10.6537, "hold_mean": 6.5252, "hold_min": 4.1979, "line_breaks": 0.5054, "max_x": 68.0048, "n_centros": 0.0981, "n_events": 5.2846, "n_involved": 1.7761, "n_passes": 2.6646, "opt_quality_mean": 0.0385, "paredes": 0.18, "pass_options_mean": 8.4926, "passes_behind_line": 0.1179, "pct_adentro": 0.5196, "pct_afuera": 0.3877, "pct_cortos": 0.3857, "pct_headpass": 0.0555, "pct_largos": 0.2243, "pct_launch": 0.1045, "pct_layoff": 0.0105, "pct_medios": 0.2983, "pct_switch": 0.0066, "pct_through": 0.0025, "pct_verticales": 0.4917, "pelotazos_espalda": 0.0867, "press_final": 2.6125, "press_media": 1.8889, "prog_x": 23.9465, "start_x": 45.4853, "starts_from_dispossess": 0.042, "takeons_ok": 0.0493, "tempo": 0.3828, "transition_speed": 3.8021, "verticalidad_media": 0.3553}, "Elversberg": {"atk_l": 42.2601, "atk_w": 32.8606, "ball_distance": 128.5079, "behind_line_ok": 0.0478, "broke_last_line": 0.0331, "broke_second_last": 0.1449, "cross_pvadded_max": 0.0013, "dang_runs": 0.1344, "deep_completions": 0.3968, "def_h": 30.8709, "dribbles_box": 0.0151, "dribbles_last_third": 0.0751, "duration_s": 30.3559, "hold_max": 10.4389, "hold_mean": 5.9569, "hold_min": 3.4933, "line_breaks": 0.5864, "max_x": 68.1961, "n_centros": 0.1233, "n_events": 5.9513, "n_involved": 1.8847, "n_passes": 3.2082, "opt_quality_mean": 0.1418, "paredes": 0.2566, "pass_options_mean": 8.7288, "passes_behind_line": 0.1062, "pct_adentro": 0.5289, "pct_afuera": 0.3752, "pct_cortos": 0.3797, "pct_headpass": 0.0352, "pct_largos": 0.1658, "pct_launch": 0.0706, "pct_layoff": 0.0083, "pct_medios": 0.3595, "pct_switch": 0.0037, "pct_through": 0.0042, "pct_verticales": 0.4468, "pelotazos_espalda": 0.0685, "press_final": 2.6157, "press_media": 1.9073, "prog_x": 23.1975, "start_x": 46.1961, "starts_from_dispossess": 0.0438, "takeons_ok": 0.0613, "tempo": 0.3606, "transition_speed": 3.1181, "verticalidad_media": 0.3118}, "Fortuna Düsseldorf": {"atk_l": 41.4883, "atk_w": 33.0539, "ball_distance": 127.1879, "behind_line_ok": 0.0524, "broke_last_line": 0.0253, "broke_second_last": 0.1804, "cross_pvadded_max": 0.002, "dang_runs": 0.1241, "deep_completions": 0.3557, "def_h": 31.5943, "dribbles_box": 0.0139, "dribbles_last_third": 0.0667, "duration_s": 29.6826, "hold_max": 9.9158, "hold_mean": 5.6959, "hold_min": 3.3105, "line_breaks": 0.6489, "max_x": 68.7364, "n_centros": 0.1431, "n_events": 5.8499, "n_involved": 1.8361, "n_passes": 3.1882, "opt_quality_mean": 0.0251, "paredes": 0.257, "pass_options_mean": 8.6913, "passes_behind_line": 0.1273, "pct_adentro": 0.5006, "pct_afuera": 0.4124, "pct_cortos": 0.3732, "pct_headpass": 0.0442, "pct_largos": 0.2222, "pct_launch": 0.0963, "pct_layoff": 0.0098, "pct_medios": 0.3184, "pct_switch": 0.0058, "pct_through": 0.0018, "pct_verticales": 0.4851, "pelotazos_espalda": 0.092, "press_final": 2.5976, "press_media": 1.8699, "prog_x": 26.0583, "start_x": 43.9114, "starts_from_dispossess": 0.0389, "takeons_ok": 0.0582, "tempo": 0.3707, "transition_speed": 3.6717, "verticalidad_media": 0.336}, "Greuther Fürth": {"atk_l": 41.0142, "atk_w": 31.647, "ball_distance": 128.9018, "behind_line_ok": 0.0446, "broke_last_line": 0.0227, "broke_second_last": 0.1525, "cross_pvadded_max": 0.0007, "dang_runs": 0.1386, "deep_completions": 0.2903, "def_h": 32.4186, "dribbles_box": 0.0132, "dribbles_last_third": 0.0567, "duration_s": 19.5582, "hold_max": 10.9049, "hold_mean": 6.6818, "hold_min": 4.3345, "line_breaks": 0.6063, "max_x": 66.1426, "n_centros": 0.1035, "n_events": 4.9748, "n_involved": 1.8699, "n_passes": 3.0795, "opt_quality_mean": -0.0043, "paredes": 0.2588, "pass_options_mean": 8.7254, "passes_behind_line": 0.1238, "pct_adentro": 0.5054, "pct_afuera": 0.4044, "pct_cortos": 0.3706, "pct_headpass": 0.0372, "pct_largos": 0.2226, "pct_launch": 0.1062, "pct_layoff": 0.0096, "pct_medios": 0.318, "pct_switch": 0.0049, "pct_through": 0.0025, "pct_verticales": 0.4953, "pelotazos_espalda": 0.0923, "press_final": 2.6028, "press_media": 1.8636, "prog_x": 24.389, "start_x": 43.0187, "starts_from_dispossess": 0.0402, "takeons_ok": 0.049, "tempo": 0.3767, "transition_speed": 3.3677, "verticalidad_media": 0.3491}, "Hannover 96": {"atk_l": 43.5944, "atk_w": 33.0654, "ball_distance": 167.3603, "behind_line_ok": 0.0545, "broke_last_line": 0.0422, "broke_second_last": 0.1666, "cross_pvadded_max": 0.0014, "dang_runs": 0.1249, "deep_completions": 0.4158, "def_h": 31.0427, "dribbles_box": 0.0222, "dribbles_last_third": 0.0911, "duration_s": 28.5011, "hold_max": 10.0871, "hold_mean": 5.4656, "hold_min": 3.0628, "line_breaks": 0.7362, "max_x": 69.0177, "n_centros": 0.1146, "n_events": 6.2094, "n_involved": 2.0023, "n_passes": 3.7208, "opt_quality_mean": 0.0811, "paredes": 0.4103, "pass_options_mean": 8.8407, "passes_behind_line": 0.1281, "pct_adentro": 0.5083, "pct_afuera": 0.4002, "pct_cortos": 0.4087, "pct_headpass": 0.0379, "pct_largos": 0.161, "pct_launch": 0.0546, "pct_layoff": 0.0097, "pct_medios": 0.3398, "pct_switch": 0.0046, "pct_through": 0.0049, "pct_verticales": 0.4394, "pelotazos_espalda": 0.088, "press_final": 2.6076, "press_media": 1.8696, "prog_x": 24.0169, "start_x": 46.2645, "starts_from_dispossess": 0.0442, "takeons_ok": 0.0719, "tempo": 0.3642, "transition_speed": 2.8729, "verticalidad_media": 0.2649}, "Hertha BSC": {"atk_l": 41.1699, "atk_w": 32.5118, "ball_distance": 121.2373, "behind_line_ok": 0.0474, "broke_last_line": 0.0284, "broke_second_last": 0.1641, "cross_pvadded_max": 0.0013, "dang_runs": 0.1924, "deep_completions": 0.2983, "def_h": 32.1379, "dribbles_box": 0.0133, "dribbles_last_third": 0.0653, "duration_s": 23.361, "hold_max": 10.2536, "hold_mean": 6.1936, "hold_min": 3.9386, "line_breaks": 0.6218, "max_x": 67.176, "n_centros": 0.1326, "n_events": 5.2637, "n_involved": 1.8764, "n_passes": 3.0999, "opt_quality_mean": 0.0274, "paredes": 0.2335, "pass_options_mean": 8.9111, "passes_behind_line": 0.1116, "pct_adentro": 0.5026, "pct_afuera": 0.4095, "pct_cortos": 0.3805, "pct_headpass": 0.0494, "pct_largos": 0.203, "pct_launch": 0.0856, "pct_layoff": 0.0103, "pct_medios": 0.3299, "pct_switch": 0.0046, "pct_through": 0.0028, "pct_verticales": 0.4725, "pelotazos_espalda": 0.0852, "press_final": 2.5122, "press_media": 1.8324, "prog_x": 24.4522, "start_x": 44.0341, "starts_from_dispossess": 0.0365, "takeons_ok": 0.0594, "tempo": 0.3684, "transition_speed": 3.4249, "verticalidad_media": 0.3318}, "Holstein Kiel": {"atk_l": 41.372, "atk_w": 32.5048, "ball_distance": 128.5162, "behind_line_ok": 0.0479, "broke_last_line": 0.0244, "broke_second_last": 0.1383, "cross_pvadded_max": 0.0012, "dang_runs": 0.134, "deep_completions": 0.2834, "def_h": 32.9167, "dribbles_box": 0.0127, "dribbles_last_third": 0.0596, "duration_s": 24.8384, "hold_max": 10.3015, "hold_mean": 5.7631, "hold_min": 3.3559, "line_breaks": 0.6027, "max_x": 65.2835, "n_centros": 0.116, "n_events": 5.6438, "n_involved": 1.8953, "n_passes": 3.2285, "opt_quality_mean": -0.0023, "paredes": 0.3124, "pass_options_mean": 8.8987, "passes_behind_line": 0.1198, "pct_adentro": 0.5025, "pct_afuera": 0.4067, "pct_cortos": 0.3885, "pct_headpass": 0.048, "pct_largos": 0.1793, "pct_launch": 0.0811, "pct_layoff": 0.0063, "pct_medios": 0.343, "pct_switch": 0.0032, "pct_through": 0.0029, "pct_verticales": 0.4774, "pelotazos_espalda": 0.0849, "press_final": 2.5179, "press_media": 1.84, "prog_x": 23.8137, "start_x": 42.7479, "starts_from_dispossess": 0.0422, "takeons_ok": 0.0521, "tempo": 0.3876, "transition_speed": 3.5268, "verticalidad_media": 0.3417}, "Kaiserslautern": {"atk_l": 39.9052, "atk_w": 33.2465, "ball_distance": 103.574, "behind_line_ok": 0.0448, "broke_last_line": 0.0277, "broke_second_last": 0.1373, "cross_pvadded_max": 0.0011, "dang_runs": 0.1217, "deep_completions": 0.2996, "def_h": 31.6983, "dribbles_box": 0.0091, "dribbles_last_third": 0.0463, "duration_s": 20.1757, "hold_max": 9.5974, "hold_mean": 5.7924, "hold_min": 3.4769, "line_breaks": 0.5261, "max_x": 68.2298, "n_centros": 0.1317, "n_events": 4.8473, "n_involved": 1.837, "n_passes": 2.8092, "opt_quality_mean": 0.0127, "paredes": 0.233, "pass_options_mean": 8.8801, "passes_behind_line": 0.1262, "pct_adentro": 0.5157, "pct_afuera": 0.3979, "pct_cortos": 0.3727, "pct_headpass": 0.0479, "pct_largos": 0.2257, "pct_launch": 0.0991, "pct_layoff": 0.0099, "pct_medios": 0.3162, "pct_switch": 0.0049, "pct_through": 0.0038, "pct_verticales": 0.5054, "pelotazos_espalda": 0.0997, "press_final": 2.6067, "press_media": 1.8479, "prog_x": 25.4698, "start_x": 43.8925, "starts_from_dispossess": 0.0419, "takeons_ok": 0.0398, "tempo": 0.4055, "transition_speed": 4.1601, "verticalidad_media": 0.3729}, "Karlsruher SC": {"atk_l": 44.0129, "atk_w": 31.9615, "ball_distance": 140.2989, "behind_line_ok": 0.0498, "broke_last_line": 0.0303, "broke_second_last": 0.1613, "cross_pvadded_max": 0.0011, "dang_runs": 0.1397, "deep_completions": 0.3682, "def_h": 32.0549, "dribbles_box": 0.0111, "dribbles_last_third": 0.0433, "duration_s": 33.3745, "hold_max": 10.2289, "hold_mean": 5.7871, "hold_min": 3.4293, "line_breaks": 0.6791, "max_x": 67.4837, "n_centros": 0.127, "n_events": 6.2862, "n_involved": 1.9856, "n_passes": 3.4638, "opt_quality_mean": 0.0271, "paredes": 0.3211, "pass_options_mean": 8.7176, "passes_behind_line": 0.1327, "pct_adentro": 0.5022, "pct_afuera": 0.427, "pct_cortos": 0.3949, "pct_headpass": 0.0447, "pct_largos": 0.2175, "pct_launch": 0.0954, "pct_layoff": 0.0119, "pct_medios": 0.3173, "pct_switch": 0.005, "pct_through": 0.0022, "pct_verticales": 0.4831, "pelotazos_espalda": 0.0957, "press_final": 2.4885, "press_media": 1.837, "prog_x": 25.5078, "start_x": 43.1293, "starts_from_dispossess": 0.0327, "takeons_ok": 0.0379, "tempo": 0.4054, "transition_speed": 3.5703, "verticalidad_media": 0.3247}, "Magdeburg": {"atk_l": 43.7838, "atk_w": 33.2549, "ball_distance": 155.4824, "behind_line_ok": 0.0587, "broke_last_line": 0.0366, "broke_second_last": 0.1581, "cross_pvadded_max": 0.0009, "dang_runs": 0.1328, "deep_completions": 0.3656, "def_h": 31.348, "dribbles_box": 0.0134, "dribbles_last_third": 0.0644, "duration_s": 36.4342, "hold_max": 10.4812, "hold_mean": 5.3595, "hold_min": 3.0188, "line_breaks": 0.6826, "max_x": 68.703, "n_centros": 0.1199, "n_events": 6.5007, "n_involved": 1.8988, "n_passes": 3.372, "opt_quality_mean": 0.0679, "paredes": 0.297, "pass_options_mean": 9.1308, "passes_behind_line": 0.1368, "pct_adentro": 0.5096, "pct_afuera": 0.403, "pct_cortos": 0.3396, "pct_headpass": 0.0445, "pct_largos": 0.206, "pct_launch": 0.0765, "pct_layoff": 0.0091, "pct_medios": 0.3683, "pct_switch": 0.0096, "pct_through": 0.0029, "pct_verticales": 0.4562, "pelotazos_espalda": 0.0993, "press_final": 2.6303, "press_media": 1.8374, "prog_x": 25.1576, "start_x": 44.6944, "starts_from_dispossess": 0.042, "takeons_ok": 0.0522, "tempo": 0.3624, "transition_speed": 3.3255, "verticalidad_media": 0.2975}, "Nürnberg": {"atk_l": 40.8974, "atk_w": 33.1606, "ball_distance": 117.1177, "behind_line_ok": 0.046, "broke_last_line": 0.0284, "broke_second_last": 0.1618, "cross_pvadded_max": 0.0014, "dang_runs": 0.1353, "deep_completions": 0.2999, "def_h": 32.4955, "dribbles_box": 0.0164, "dribbles_last_third": 0.0694, "duration_s": 28.8249, "hold_max": 10.4787, "hold_mean": 6.0431, "hold_min": 3.6411, "line_breaks": 0.6331, "max_x": 66.3588, "n_centros": 0.126, "n_events": 5.7294, "n_involved": 1.8054, "n_passes": 3.023, "opt_quality_mean": 0.0174, "paredes": 0.2456, "pass_options_mean": 8.9543, "passes_behind_line": 0.1105, "pct_adentro": 0.5104, "pct_afuera": 0.3925, "pct_cortos": 0.3694, "pct_headpass": 0.0396, "pct_largos": 0.1951, "pct_launch": 0.0826, "pct_layoff": 0.0096, "pct_medios": 0.3396, "pct_switch": 0.0046, "pct_through": 0.0021, "pct_verticales": 0.4725, "pelotazos_espalda": 0.0749, "press_final": 2.6417, "press_media": 1.9471, "prog_x": 23.9305, "start_x": 43.6495, "starts_from_dispossess": 0.0514, "takeons_ok": 0.0654, "tempo": 0.3599, "transition_speed": 3.3846, "verticalidad_media": 0.3339}, "Paderborn": {"atk_l": 40.6939, "atk_w": 31.9089, "ball_distance": 135.3965, "behind_line_ok": 0.0517, "broke_last_line": 0.0258, "broke_second_last": 0.1711, "cross_pvadded_max": 0.0019, "dang_runs": 0.1504, "deep_completions": 0.319, "def_h": 31.0728, "dribbles_box": 0.0131, "dribbles_last_third": 0.0557, "duration_s": 34.5568, "hold_max": 10.1406, "hold_mean": 5.8057, "hold_min": 3.4968, "line_breaks": 0.6314, "max_x": 68.7928, "n_centros": 0.1228, "n_events": 6.4393, "n_involved": 1.9567, "n_passes": 3.2843, "opt_quality_mean": 0.0779, "paredes": 0.2561, "pass_options_mean": 8.9619, "passes_behind_line": 0.1272, "pct_adentro": 0.5272, "pct_afuera": 0.3805, "pct_cortos": 0.4076, "pct_headpass": 0.0603, "pct_largos": 0.1837, "pct_launch": 0.0831, "pct_layoff": 0.0078, "pct_medios": 0.3178, "pct_switch": 0.0065, "pct_through": 0.0024, "pct_verticales": 0.4614, "pelotazos_espalda": 0.0944, "press_final": 2.6473, "press_media": 1.9657, "prog_x": 24.3066, "start_x": 45.8526, "starts_from_dispossess": 0.0431, "takeons_ok": 0.0437, "tempo": 0.3877, "transition_speed": 3.491, "verticalidad_media": 0.3119}, "Preußen Münster": {"atk_l": 37.5962, "atk_w": 31.9772, "ball_distance": 152.426, "behind_line_ok": 0.0491, "broke_last_line": 0.0185, "broke_second_last": 0.1827, "cross_pvadded_max": 0.0008, "dang_runs": 0.1359, "deep_completions": 0.2484, "def_h": 33.2917, "dribbles_box": 0.0101, "dribbles_last_third": 0.0455, "duration_s": 36.222, "hold_max": 10.8566, "hold_mean": 6.14, "hold_min": 3.7671, "line_breaks": 0.9309, "max_x": 65.1346, "n_centros": 0.1022, "n_events": 6.8702, "n_involved": 2.0699, "n_passes": 3.4671, "opt_quality_mean": -0.0033, "paredes": 0.3445, "pass_options_mean": 8.536, "passes_behind_line": 0.1203, "pct_adentro": 0.5103, "pct_afuera": 0.4051, "pct_cortos": 0.4242, "pct_headpass": 0.0436, "pct_largos": 0.1949, "pct_launch": 0.0833, "pct_layoff": 0.0128, "pct_medios": 0.2971, "pct_switch": 0.0022, "pct_through": 0.0024, "pct_verticales": 0.4827, "pelotazos_espalda": 0.0864, "press_final": 2.6352, "press_media": 1.9185, "prog_x": 23.8744, "start_x": 42.6022, "starts_from_dispossess": 0.0425, "takeons_ok": 0.0478, "tempo": 0.4072, "transition_speed": 3.5886, "verticalidad_media": 0.3449}, "Schalke 04": {"atk_l": 35.4719, "atk_w": 29.9089, "ball_distance": 81.1373, "behind_line_ok": 0.0395, "broke_last_line": 0.0252, "broke_second_last": 0.146, "cross_pvadded_max": 0.001, "dang_runs": 0.1026, "deep_completions": 0.3085, "def_h": 29.0127, "dribbles_box": 0.0105, "dribbles_last_third": 0.0386, "duration_s": 20.3989, "hold_max": 10.8156, "hold_mean": 7.0121, "hold_min": 4.7333, "line_breaks": 0.4482, "max_x": 70.691, "n_centros": 0.118, "n_events": 4.8122, "n_involved": 1.7373, "n_passes": 2.5744, "opt_quality_mean": 0.0967, "paredes": 0.1859, "pass_options_mean": 8.8991, "passes_behind_line": 0.1186, "pct_adentro": 0.5385, "pct_afuera": 0.3775, "pct_cortos": 0.3552, "pct_headpass": 0.0648, "pct_largos": 0.2299, "pct_launch": 0.1277, "pct_layoff": 0.0092, "pct_medios": 0.3323, "pct_switch": 0.0032, "pct_through": 0.0017, "pct_verticales": 0.5472, "pelotazos_espalda": 0.0885, "press_final": 2.5756, "press_media": 1.8597, "prog_x": 24.3467, "start_x": 47.6771, "starts_from_dispossess": 0.0373, "takeons_ok": 0.0372, "tempo": 0.3726, "transition_speed": 3.8798, "verticalidad_media": 0.4325}}, "team_eje_norm_gen": {"Arminia Bielefeld": {"eje_verticalidad": 0.0412, "eje_elaboracion": -0.0573, "eje_individual": -0.0001, "eje_rotura_lineas": -0.0354, "eje_amplitud_centro": 0.0073, "eje_profundidad_espalda": 0.0034, "eje_robo_alto": 0.0636, "eje_aereo_segunda": 0.0358}, "Bochum": {"eje_verticalidad": 0.0072, "eje_elaboracion": -0.0455, "eje_individual": -0.0222, "eje_rotura_lineas": -0.0199, "eje_amplitud_centro": 0.0061, "eje_profundidad_espalda": 0.0374, "eje_robo_alto": -0.0008, "eje_aereo_segunda": 0.0473}, "Darmstadt 98": {"eje_verticalidad": -0.0499, "eje_elaboracion": 0.0461, "eje_individual": -0.0287, "eje_rotura_lineas": 0.0529, "eje_amplitud_centro": 0.0338, "eje_profundidad_espalda": 0.0401, "eje_robo_alto": -0.0278, "eje_aereo_segunda": 0.0085}, "Dynamo Dresden": {"eje_verticalidad": -0.0542, "eje_elaboracion": 0.0263, "eje_individual": -0.0232, "eje_rotura_lineas": -0.0042, "eje_amplitud_centro": -0.0149, "eje_profundidad_espalda": -0.0175, "eje_robo_alto": -0.0061, "eje_aereo_segunda": 0.0251}, "Eintracht Braunschweig": {"eje_verticalidad": 0.0169, "eje_elaboracion": -0.0605, "eje_individual": -0.0073, "eje_rotura_lineas": -0.0228, "eje_amplitud_centro": -0.0239, "eje_profundidad_espalda": -0.0436, "eje_robo_alto": 0.0118, "eje_aereo_segunda": 0.0361}, "Elversberg": {"eje_verticalidad": -0.108, "eje_elaboracion": 0.0035, "eje_individual": 0.0342, "eje_rotura_lineas": 0.0047, "eje_amplitud_centro": -0.0291, "eje_profundidad_espalda": -0.0067, "eje_robo_alto": 0.0296, "eje_aereo_segunda": -0.0638}, "Fortuna Düsseldorf": {"eje_verticalidad": -0.0036, "eje_elaboracion": -0.0027, "eje_individual": 0.017, "eje_rotura_lineas": 0.0071, "eje_amplitud_centro": 0.0391, "eje_profundidad_espalda": 0.0205, "eje_robo_alto": -0.0252, "eje_aereo_segunda": -0.0021}, "Greuther Fürth": {"eje_verticalidad": -0.0022, "eje_elaboracion": -0.0188, "eje_individual": -0.0, "eje_rotura_lineas": -0.0144, "eje_amplitud_centro": -0.014, "eje_profundidad_espalda": -0.0124, "eje_robo_alto": -0.0386, "eje_aereo_segunda": -0.0044}, "Hannover 96": {"eje_verticalidad": -0.1498, "eje_elaboracion": 0.1104, "eje_individual": 0.0737, "eje_rotura_lineas": 0.0517, "eje_amplitud_centro": -0.0087, "eje_profundidad_espalda": 0.04, "eje_robo_alto": 0.0319, "eje_aereo_segunda": -0.0711}, "Hertha BSC": {"eje_verticalidad": -0.0378, "eje_elaboracion": -0.0167, "eje_individual": 0.0357, "eje_rotura_lineas": 0.005, "eje_amplitud_centro": 0.0183, "eje_profundidad_espalda": -0.0216, "eje_robo_alto": -0.0292, "eje_aereo_segunda": -0.0031}, "Holstein Kiel": {"eje_verticalidad": -0.0454, "eje_elaboracion": 0.026, "eje_individual": 0.0037, "eje_rotura_lineas": -0.0185, "eje_amplitud_centro": -0.0097, "eje_profundidad_espalda": -0.0204, "eje_robo_alto": -0.0386, "eje_aereo_segunda": -0.0359}, "Kaiserslautern": {"eje_verticalidad": 0.0511, "eje_elaboracion": -0.0446, "eje_individual": -0.0339, "eje_rotura_lineas": -0.0166, "eje_amplitud_centro": 0.0081, "eje_profundidad_espalda": -0.0009, "eje_robo_alto": -0.018, "eje_aereo_segunda": 0.0097}, "Karlsruher SC": {"eje_verticalidad": -0.0129, "eje_elaboracion": 0.056, "eje_individual": -0.0295, "eje_rotura_lineas": 0.0082, "eje_amplitud_centro": 0.0317, "eje_profundidad_espalda": 0.0289, "eje_robo_alto": -0.0555, "eje_aereo_segunda": 0.01}, "Magdeburg": {"eje_verticalidad": -0.0691, "eje_elaboracion": 0.0065, "eje_individual": 0.0097, "eje_rotura_lineas": 0.0201, "eje_amplitud_centro": 0.0316, "eje_profundidad_espalda": 0.0439, "eje_robo_alto": -0.0029, "eje_aereo_segunda": -0.0322}, "Nürnberg": {"eje_verticalidad": -0.0484, "eje_elaboracion": -0.0213, "eje_individual": 0.0358, "eje_rotura_lineas": 0.0005, "eje_amplitud_centro": -0.0047, "eje_profundidad_espalda": -0.0325, "eje_robo_alto": 0.0014, "eje_aereo_segunda": -0.0308}, "Paderborn": {"eje_verticalidad": -0.0685, "eje_elaboracion": 0.0303, "eje_individual": -0.0034, "eje_rotura_lineas": 0.0038, "eje_amplitud_centro": -0.0065, "eje_profundidad_espalda": 0.0093, "eje_robo_alto": 0.0214, "eje_aereo_segunda": 0.0009}, "Preußen Münster": {"eje_verticalidad": -0.0227, "eje_elaboracion": 0.0859, "eje_individual": -0.0199, "eje_rotura_lineas": 0.0311, "eje_amplitud_centro": -0.0315, "eje_profundidad_espalda": -0.0292, "eje_robo_alto": -0.0406, "eje_aereo_segunda": -0.0025}, "Schalke 04": {"eje_verticalidad": 0.1063, "eje_elaboracion": -0.0888, "eje_individual": -0.047, "eje_rotura_lineas": -0.0357, "eje_amplitud_centro": -0.0352, "eje_profundidad_espalda": -0.0189, "eje_robo_alto": 0.0406, "eje_aereo_segunda": 0.0784}}, "team_eje_norm_con": {"Arminia Bielefeld": {"eje_verticalidad": 0.0591, "eje_elaboracion": -0.0498, "eje_individual": -0.0036, "eje_rotura_lineas": -0.0087, "eje_amplitud_centro": -0.0061, "eje_profundidad_espalda": 0.0072, "eje_robo_alto": -0.0636, "eje_aereo_segunda": 0.0586}, "Bochum": {"eje_verticalidad": -0.0656, "eje_elaboracion": 0.0517, "eje_individual": 0.0271, "eje_rotura_lineas": 0.0269, "eje_amplitud_centro": -0.0006, "eje_profundidad_espalda": 0.0055, "eje_robo_alto": 0.0117, "eje_aereo_segunda": -0.0171}, "Darmstadt 98": {"eje_verticalidad": -0.0681, "eje_elaboracion": 0.0201, "eje_individual": 0.008, "eje_rotura_lineas": -0.0071, "eje_amplitud_centro": -0.0002, "eje_profundidad_espalda": -0.021, "eje_robo_alto": 0.0025, "eje_aereo_segunda": -0.0282}, "Dynamo Dresden": {"eje_verticalidad": -0.0527, "eje_elaboracion": 0.0089, "eje_individual": -0.026, "eje_rotura_lineas": 0.0097, "eje_amplitud_centro": 0.0264, "eje_profundidad_espalda": -0.0024, "eje_robo_alto": 0.0051, "eje_aereo_segunda": 0.0064}, "Eintracht Braunschweig": {"eje_verticalidad": -0.0416, "eje_elaboracion": 0.0232, "eje_individual": 0.0034, "eje_rotura_lineas": 0.0209, "eje_amplitud_centro": -0.0003, "eje_profundidad_espalda": 0.0029, "eje_robo_alto": -0.0133, "eje_aereo_segunda": -0.0025}, "Elversberg": {"eje_verticalidad": 0.0084, "eje_elaboracion": -0.0043, "eje_individual": -0.0072, "eje_rotura_lineas": -0.0155, "eje_amplitud_centro": -0.0118, "eje_profundidad_espalda": -0.0156, "eje_robo_alto": -0.0121, "eje_aereo_segunda": 0.0084}, "Fortuna Düsseldorf": {"eje_verticalidad": -0.0419, "eje_elaboracion": 0.0282, "eje_individual": 0.0189, "eje_rotura_lineas": -0.0038, "eje_amplitud_centro": -0.0167, "eje_profundidad_espalda": -0.0116, "eje_robo_alto": -0.0113, "eje_aereo_segunda": -0.0062}, "Greuther Fürth": {"eje_verticalidad": -0.0686, "eje_elaboracion": 0.0414, "eje_individual": -0.0025, "eje_rotura_lineas": 0.0412, "eje_amplitud_centro": 0.0034, "eje_profundidad_espalda": 0.0193, "eje_robo_alto": 0.0368, "eje_aereo_segunda": 0.002}, "Hannover 96": {"eje_verticalidad": -0.0018, "eje_elaboracion": -0.0385, "eje_individual": -0.0203, "eje_rotura_lineas": -0.0288, "eje_amplitud_centro": -0.0099, "eje_profundidad_espalda": -0.0317, "eje_robo_alto": -0.0279, "eje_aereo_segunda": 0.0145}, "Hertha BSC": {"eje_verticalidad": -0.0404, "eje_elaboracion": 0.0279, "eje_individual": -0.0075, "eje_rotura_lineas": -0.0035, "eje_amplitud_centro": 0.0258, "eje_profundidad_espalda": 0.0048, "eje_robo_alto": -0.0137, "eje_aereo_segunda": -0.0117}, "Holstein Kiel": {"eje_verticalidad": -0.021, "eje_elaboracion": -0.0252, "eje_individual": -0.0082, "eje_rotura_lineas": -0.0126, "eje_amplitud_centro": 0.0224, "eje_profundidad_espalda": 0.0357, "eje_robo_alto": 0.0382, "eje_aereo_segunda": -0.0077}, "Kaiserslautern": {"eje_verticalidad": 0.0069, "eje_elaboracion": 0.0043, "eje_individual": 0.0035, "eje_rotura_lineas": -0.0073, "eje_amplitud_centro": 0.0011, "eje_profundidad_espalda": 0.0034, "eje_robo_alto": -0.025, "eje_aereo_segunda": 0.0271}, "Karlsruher SC": {"eje_verticalidad": -0.0665, "eje_elaboracion": 0.0567, "eje_individual": -0.0001, "eje_rotura_lineas": 0.0186, "eje_amplitud_centro": -0.022, "eje_profundidad_espalda": 0.0092, "eje_robo_alto": -0.0006, "eje_aereo_segunda": -0.0167}, "Magdeburg": {"eje_verticalidad": 0.0299, "eje_elaboracion": -0.0446, "eje_individual": -0.0229, "eje_rotura_lineas": -0.0071, "eje_amplitud_centro": -0.0011, "eje_profundidad_espalda": 0.0036, "eje_robo_alto": -0.0152, "eje_aereo_segunda": 0.0095}, "Nürnberg": {"eje_verticalidad": -0.0324, "eje_elaboracion": 0.0129, "eje_individual": -0.0117, "eje_rotura_lineas": 0.0159, "eje_amplitud_centro": -0.0296, "eje_profundidad_espalda": 0.0187, "eje_robo_alto": 0.0201, "eje_aereo_segunda": -0.0052}, "Paderborn": {"eje_verticalidad": -0.0013, "eje_elaboracion": -0.0338, "eje_individual": 0.009, "eje_rotura_lineas": -0.0189, "eje_amplitud_centro": -0.0205, "eje_profundidad_espalda": 0.0001, "eje_robo_alto": -0.0175, "eje_aereo_segunda": -0.0172}, "Preußen Münster": {"eje_verticalidad": -0.0633, "eje_elaboracion": -0.017, "eje_individual": 0.0221, "eje_rotura_lineas": -0.0085, "eje_amplitud_centro": 0.0175, "eje_profundidad_espalda": -0.0133, "eje_robo_alto": 0.0702, "eje_aereo_segunda": -0.0335}, "Schalke 04": {"eje_verticalidad": 0.0111, "eje_elaboracion": -0.0276, "eje_individual": 0.0128, "eje_rotura_lineas": 0.0059, "eje_amplitud_centro": 0.0198, "eje_profundidad_espalda": 0.0051, "eje_robo_alto": -0.0674, "eje_aereo_segunda": 0.0255}}} \ No newline at end of file diff --git a/vendor/data/ejes/german-bundesliga-zwei/25-26/team_profiles.parquet b/vendor/data/ejes/german-bundesliga-zwei/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..2c8a667b49f803d8b27fd3da932811f0e0dc33ee --- /dev/null +++ b/vendor/data/ejes/german-bundesliga-zwei/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a86cb3b652f3490919a140928775e2c229213b369eea9b8be218146a2232bb4 +size 9672 diff --git a/vendor/data/ejes/german-bundesliga/25-26/ejes_definition.json b/vendor/data/ejes/german-bundesliga/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/german-bundesliga/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/german-bundesliga/25-26/match_team_ejes.parquet b/vendor/data/ejes/german-bundesliga/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..1f4d237344c2b286e07488e14f6ba01035366fb1 --- /dev/null +++ b/vendor/data/ejes/german-bundesliga/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:915d4a79564e9834bbeeda33237713b4c7e93346a2278932f4d7159ef1821ac9 +size 73761 diff --git a/vendor/data/ejes/german-bundesliga/25-26/match_team_vars.parquet b/vendor/data/ejes/german-bundesliga/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..0d55414535adfbfd0f6f4e5ee60a57e2e8524622 --- /dev/null +++ b/vendor/data/ejes/german-bundesliga/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf48557c466b9a3a796fa36874e82bdaafb8d059ace96d45ff5fc4205d711ba8 +size 276442 diff --git a/vendor/data/ejes/german-bundesliga/25-26/predictor.json b/vendor/data/ejes/german-bundesliga/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..357cdc99da0d7776da6ca07df395e066c9eca5bd --- /dev/null +++ b/vendor/data/ejes/german-bundesliga/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.9644, "con": 0.7628, "intercept": 0.0173}, "elaboracion": {"gen": 0.9858, "con": 0.8608, "intercept": -0.0011}, "individual": {"gen": 0.9537, "con": 0.7473, "intercept": -0.0}, "rotura_lineas": {"gen": 0.9772, "con": 0.661, "intercept": -0.0005}, "amplitud_centro": {"gen": 0.315, "con": 0.6541, "intercept": -0.0}, "profundidad_espalda": {"gen": 0.8641, "con": 0.4641, "intercept": -0.0003}, "robo_alto": {"gen": 0.7531, "con": 0.8009, "intercept": 0.0025}, "aereo_segunda": {"gen": 0.9389, "con": 0.5504, "intercept": 0.0005}} \ No newline at end of file diff --git a/vendor/data/ejes/german-bundesliga/25-26/scales.json b/vendor/data/ejes/german-bundesliga/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..299066494f858ad375e99705ef557ddf9feafbdf --- /dev/null +++ b/vendor/data/ejes/german-bundesliga/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 1.9009, "atk_w": 1.3634, "ball_distance": 62.6096, "behind_line_ok": 0.026, "broke_last_line": 0.0172, "broke_second_last": 0.0464, "cross_pvadded_max": 0.0016, "dang_runs": 0.0926, "deep_completions": 0.129, "def_h": 3.1254, "dribbles_box": 0.0095, "dribbles_last_third": 0.0229, "duration_s": 20.4392, "hold_max": 1.8885, "hold_mean": 0.9864, "hold_min": 0.9688, "line_breaks": 0.3619, "max_x": 3.971, "n_centros": 0.0489, "n_events": 1.8144, "n_involved": 0.1891, "n_passes": 0.6615, "opt_quality_mean": 0.1477, "paredes": 0.1193, "pass_options_mean": 1.0747, "passes_behind_line": 0.0382, "pct_adentro": 0.0355, "pct_afuera": 0.0351, "pct_cortos": 0.0468, "pct_headpass": 0.0161, "pct_largos": 0.0428, "pct_launch": 0.032, "pct_layoff": 0.0053, "pct_medios": 0.0409, "pct_switch": 0.0041, "pct_through": 0.005, "pct_verticales": 0.0502, "pelotazos_espalda": 0.0321, "press_final": 0.2747, "press_media": 0.1532, "prog_x": 2.3948, "start_x": 4.594, "starts_from_dispossess": 0.0174, "takeons_ok": 0.02, "tempo": 0.0381, "transition_speed": 0.7395, "verticalidad_media": 0.0576}, "eje_sigma": {"eje_verticalidad": 0.1071, "eje_elaboracion": 0.0959, "eje_individual": 0.0632, "eje_rotura_lineas": 0.0624, "eje_amplitud_centro": 0.0577, "eje_profundidad_espalda": 0.0847, "eje_robo_alto": 0.0967, "eje_aereo_segunda": 0.069}, "eje_match_mean": {"eje_verticalidad": -0.0239, "eje_elaboracion": 0.0013, "eje_individual": 0.0, "eje_rotura_lineas": 0.0007, "eje_amplitud_centro": -0.0, "eje_profundidad_espalda": 0.0008, "eje_robo_alto": -0.0045, "eje_aereo_segunda": -0.001}, "eje_match_std": {"eje_verticalidad": 0.1333, "eje_elaboracion": 0.1349, "eje_individual": 0.0764, "eje_rotura_lineas": 0.0842, "eje_amplitud_centro": 0.0589, "eje_profundidad_espalda": 0.093, "eje_robo_alto": 0.1026, "eje_aereo_segunda": 0.0806}, "team_var_norm": {"Augsburg": {"atk_l": 41.5419, "atk_w": 30.7436, "ball_distance": 110.299, "behind_line_ok": 0.0451, "broke_last_line": 0.0326, "broke_second_last": 0.1672, "cross_pvadded_max": 0.0011, "dang_runs": 0.1461, "deep_completions": 0.2896, "def_h": 32.0246, "dribbles_box": 0.0102, "dribbles_last_third": 0.0521, "duration_s": 21.361, "hold_max": 9.9842, "hold_mean": 5.914, "hold_min": 3.6231, "line_breaks": 0.602, "max_x": 68.1226, "n_centros": 0.1274, "n_events": 5.0209, "n_involved": 1.8837, "n_passes": 2.9556, "opt_quality_mean": 0.0514, "paredes": 0.2461, "pass_options_mean": 8.7122, "passes_behind_line": 0.125, "pct_adentro": 0.5044, "pct_afuera": 0.3996, "pct_cortos": 0.3854, "pct_headpass": 0.0449, "pct_largos": 0.1952, "pct_launch": 0.0802, "pct_layoff": 0.0108, "pct_medios": 0.3246, "pct_switch": 0.0033, "pct_through": 0.0017, "pct_verticales": 0.4791, "pelotazos_espalda": 0.0937, "press_final": 2.6252, "press_media": 1.8851, "prog_x": 24.6577, "start_x": 44.69, "starts_from_dispossess": 0.0402, "takeons_ok": 0.0479, "tempo": 0.3973, "transition_speed": 3.6399, "verticalidad_media": 0.345}, "Bayer Leverkusen": {"atk_l": 42.8479, "atk_w": 31.8441, "ball_distance": 249.8955, "behind_line_ok": 0.0724, "broke_last_line": 0.0446, "broke_second_last": 0.2325, "cross_pvadded_max": 0.0021, "dang_runs": 0.2266, "deep_completions": 0.4528, "def_h": 32.0047, "dribbles_box": 0.013, "dribbles_last_third": 0.0628, "duration_s": 29.285, "hold_max": 9.9523, "hold_mean": 5.4629, "hold_min": 3.2249, "line_breaks": 1.5644, "max_x": 68.5315, "n_centros": 0.1302, "n_events": 6.9927, "n_involved": 2.2175, "n_passes": 4.7725, "opt_quality_mean": 0.1084, "paredes": 0.5538, "pass_options_mean": 9.2018, "passes_behind_line": 0.1408, "pct_adentro": 0.505, "pct_afuera": 0.4129, "pct_cortos": 0.4555, "pct_headpass": 0.0349, "pct_largos": 0.1681, "pct_launch": 0.0565, "pct_layoff": 0.0142, "pct_medios": 0.2957, "pct_switch": 0.0058, "pct_through": 0.0049, "pct_verticales": 0.4196, "pelotazos_espalda": 0.0857, "press_final": 2.5325, "press_media": 1.9502, "prog_x": 24.3997, "start_x": 45.3971, "starts_from_dispossess": 0.0448, "takeons_ok": 0.0514, "tempo": 0.3981, "transition_speed": 2.7624, "verticalidad_media": 0.243}, "Bayern München": {"atk_l": 41.9868, "atk_w": 29.9401, "ball_distance": 253.1255, "behind_line_ok": 0.0864, "broke_last_line": 0.0576, "broke_second_last": 0.2599, "cross_pvadded_max": 0.0011, "dang_runs": 0.2338, "deep_completions": 0.6622, "def_h": 29.6012, "dribbles_box": 0.0226, "dribbles_last_third": 0.101, "duration_s": 38.2951, "hold_max": 9.3748, "hold_mean": 5.1281, "hold_min": 3.0117, "line_breaks": 1.357, "max_x": 71.9752, "n_centros": 0.111, "n_events": 7.9858, "n_involved": 2.3227, "n_passes": 5.2052, "opt_quality_mean": 0.2288, "paredes": 0.5655, "pass_options_mean": 9.0036, "passes_behind_line": 0.1372, "pct_adentro": 0.5177, "pct_afuera": 0.405, "pct_cortos": 0.4774, "pct_headpass": 0.0344, "pct_largos": 0.136, "pct_launch": 0.0381, "pct_layoff": 0.0143, "pct_medios": 0.311, "pct_switch": 0.0067, "pct_through": 0.0086, "pct_verticales": 0.4098, "pelotazos_espalda": 0.0673, "press_final": 2.7282, "press_media": 1.9695, "prog_x": 24.4677, "start_x": 48.8072, "starts_from_dispossess": 0.0435, "takeons_ok": 0.0667, "tempo": 0.4024, "transition_speed": 2.6293, "verticalidad_media": 0.2313}, "Borussia Dortmund": {"atk_l": 41.473, "atk_w": 31.1983, "ball_distance": 173.2478, "behind_line_ok": 0.0667, "broke_last_line": 0.0404, "broke_second_last": 0.2098, "cross_pvadded_max": 0.0021, "dang_runs": 0.1707, "deep_completions": 0.4382, "def_h": 30.1755, "dribbles_box": 0.0116, "dribbles_last_third": 0.0646, "duration_s": 33.1377, "hold_max": 10.6871, "hold_mean": 6.0768, "hold_min": 3.6529, "line_breaks": 0.9569, "max_x": 70.4386, "n_centros": 0.1354, "n_events": 6.5174, "n_involved": 2.0692, "n_passes": 3.7603, "opt_quality_mean": 0.1204, "paredes": 0.3493, "pass_options_mean": 9.0948, "passes_behind_line": 0.143, "pct_adentro": 0.5244, "pct_afuera": 0.3946, "pct_cortos": 0.393, "pct_headpass": 0.0463, "pct_largos": 0.1754, "pct_launch": 0.0682, "pct_layoff": 0.0137, "pct_medios": 0.3517, "pct_switch": 0.0047, "pct_through": 0.003, "pct_verticales": 0.4481, "pelotazos_espalda": 0.0931, "press_final": 2.5325, "press_media": 1.8749, "prog_x": 24.8048, "start_x": 46.6265, "starts_from_dispossess": 0.0393, "takeons_ok": 0.0522, "tempo": 0.4035, "transition_speed": 3.336, "verticalidad_media": 0.2962}, "Borussia M'gladbach": {"atk_l": 39.6943, "atk_w": 32.1713, "ball_distance": 154.8242, "behind_line_ok": 0.0482, "broke_last_line": 0.0273, "broke_second_last": 0.1623, "cross_pvadded_max": 0.0014, "dang_runs": 0.1766, "deep_completions": 0.2777, "def_h": 34.2831, "dribbles_box": 0.007, "dribbles_last_third": 0.041, "duration_s": 28.5453, "hold_max": 10.8275, "hold_mean": 5.5867, "hold_min": 3.1611, "line_breaks": 0.8232, "max_x": 65.0656, "n_centros": 0.1114, "n_events": 5.9255, "n_involved": 2.0067, "n_passes": 3.5025, "opt_quality_mean": -0.019, "paredes": 0.3331, "pass_options_mean": 9.1324, "passes_behind_line": 0.1219, "pct_adentro": 0.4905, "pct_afuera": 0.419, "pct_cortos": 0.4242, "pct_headpass": 0.0492, "pct_largos": 0.1802, "pct_launch": 0.0864, "pct_layoff": 0.0144, "pct_medios": 0.3061, "pct_switch": 0.0021, "pct_through": 0.0036, "pct_verticales": 0.4741, "pelotazos_espalda": 0.0864, "press_final": 2.6426, "press_media": 1.9457, "prog_x": 24.5476, "start_x": 41.6111, "starts_from_dispossess": 0.0484, "takeons_ok": 0.0365, "tempo": 0.3997, "transition_speed": 3.5091, "verticalidad_media": 0.3246}, "Eintracht Frankfurt": {"atk_l": 42.3949, "atk_w": 32.3055, "ball_distance": 196.0109, "behind_line_ok": 0.0578, "broke_last_line": 0.0339, "broke_second_last": 0.182, "cross_pvadded_max": 0.0009, "dang_runs": 0.211, "deep_completions": 0.3547, "def_h": 32.0977, "dribbles_box": 0.0118, "dribbles_last_third": 0.0589, "duration_s": 25.6633, "hold_max": 10.4634, "hold_mean": 5.6537, "hold_min": 3.2258, "line_breaks": 1.0029, "max_x": 67.3608, "n_centros": 0.107, "n_events": 6.0624, "n_involved": 2.0823, "n_passes": 3.8929, "opt_quality_mean": 0.0475, "paredes": 0.3844, "pass_options_mean": 9.1312, "passes_behind_line": 0.1328, "pct_adentro": 0.513, "pct_afuera": 0.4139, "pct_cortos": 0.4079, "pct_headpass": 0.0361, "pct_largos": 0.1858, "pct_launch": 0.083, "pct_layoff": 0.0089, "pct_medios": 0.3347, "pct_switch": 0.005, "pct_through": 0.0027, "pct_verticales": 0.4556, "pelotazos_espalda": 0.0864, "press_final": 2.6509, "press_media": 1.9315, "prog_x": 24.5061, "start_x": 43.9234, "starts_from_dispossess": 0.0469, "takeons_ok": 0.0527, "tempo": 0.3954, "transition_speed": 3.1728, "verticalidad_media": 0.2901}, "Freiburg": {"atk_l": 37.4701, "atk_w": 29.8268, "ball_distance": 131.962, "behind_line_ok": 0.0447, "broke_last_line": 0.0256, "broke_second_last": 0.146, "cross_pvadded_max": 0.0016, "dang_runs": 0.1624, "deep_completions": 0.2815, "def_h": 31.8051, "dribbles_box": 0.0095, "dribbles_last_third": 0.0469, "duration_s": 30.9671, "hold_max": 11.3967, "hold_mean": 7.0113, "hold_min": 4.4782, "line_breaks": 0.5715, "max_x": 67.3348, "n_centros": 0.1214, "n_events": 5.8151, "n_involved": 1.8351, "n_passes": 3.1546, "opt_quality_mean": 0.0712, "paredes": 0.2901, "pass_options_mean": 8.8251, "passes_behind_line": 0.1161, "pct_adentro": 0.5098, "pct_afuera": 0.4007, "pct_cortos": 0.3782, "pct_headpass": 0.0526, "pct_largos": 0.2082, "pct_launch": 0.102, "pct_layoff": 0.0097, "pct_medios": 0.3255, "pct_switch": 0.0029, "pct_through": 0.0019, "pct_verticales": 0.4612, "pelotazos_espalda": 0.0807, "press_final": 2.649, "press_media": 1.8381, "prog_x": 23.9203, "start_x": 44.3772, "starts_from_dispossess": 0.0389, "takeons_ok": 0.0432, "tempo": 0.3642, "transition_speed": 3.1496, "verticalidad_media": 0.3244}, "Hamburger SV": {"atk_l": 42.8185, "atk_w": 31.7643, "ball_distance": 133.7584, "behind_line_ok": 0.0493, "broke_last_line": 0.0297, "broke_second_last": 0.1373, "cross_pvadded_max": 0.0012, "dang_runs": 0.1468, "deep_completions": 0.264, "def_h": 33.2767, "dribbles_box": 0.0104, "dribbles_last_third": 0.0482, "duration_s": 35.1873, "hold_max": 10.9994, "hold_mean": 6.1287, "hold_min": 3.4828, "line_breaks": 0.617, "max_x": 66.3773, "n_centros": 0.1169, "n_events": 6.248, "n_involved": 1.8411, "n_passes": 3.1702, "opt_quality_mean": -0.01, "paredes": 0.3075, "pass_options_mean": 8.9284, "passes_behind_line": 0.1263, "pct_adentro": 0.4943, "pct_afuera": 0.4099, "pct_cortos": 0.3611, "pct_headpass": 0.0502, "pct_largos": 0.2274, "pct_launch": 0.0939, "pct_layoff": 0.0089, "pct_medios": 0.3164, "pct_switch": 0.0059, "pct_through": 0.0044, "pct_verticales": 0.4795, "pelotazos_espalda": 0.0941, "press_final": 2.5249, "press_media": 1.8237, "prog_x": 25.7246, "start_x": 41.8254, "starts_from_dispossess": 0.042, "takeons_ok": 0.0528, "tempo": 0.3855, "transition_speed": 3.989, "verticalidad_media": 0.3369}, "Heidenheim": {"atk_l": 40.5676, "atk_w": 31.9457, "ball_distance": 117.8657, "behind_line_ok": 0.0513, "broke_last_line": 0.024, "broke_second_last": 0.1436, "cross_pvadded_max": 0.0016, "dang_runs": 0.1169, "deep_completions": 0.2615, "def_h": 32.3597, "dribbles_box": 0.0089, "dribbles_last_third": 0.0423, "duration_s": 25.0921, "hold_max": 10.409, "hold_mean": 6.2116, "hold_min": 3.7566, "line_breaks": 0.435, "max_x": 68.2664, "n_centros": 0.1175, "n_events": 5.1508, "n_involved": 1.7861, "n_passes": 2.8231, "opt_quality_mean": 0.0012, "paredes": 0.2109, "pass_options_mean": 8.8589, "passes_behind_line": 0.1532, "pct_adentro": 0.502, "pct_afuera": 0.4087, "pct_cortos": 0.3213, "pct_headpass": 0.0489, "pct_largos": 0.2548, "pct_launch": 0.1023, "pct_layoff": 0.0105, "pct_medios": 0.3353, "pct_switch": 0.0063, "pct_through": 0.0025, "pct_verticales": 0.4944, "pelotazos_espalda": 0.1186, "press_final": 2.4667, "press_media": 1.7284, "prog_x": 27.1389, "start_x": 42.1301, "starts_from_dispossess": 0.0393, "takeons_ok": 0.0367, "tempo": 0.393, "transition_speed": 4.2982, "verticalidad_media": 0.3631}, "Hoffenheim": {"atk_l": 38.6549, "atk_w": 30.9625, "ball_distance": 139.4241, "behind_line_ok": 0.0635, "broke_last_line": 0.0388, "broke_second_last": 0.1786, "cross_pvadded_max": 0.0017, "dang_runs": 0.1899, "deep_completions": 0.379, "def_h": 30.1729, "dribbles_box": 0.0111, "dribbles_last_third": 0.0513, "duration_s": 27.6837, "hold_max": 9.9046, "hold_mean": 5.4378, "hold_min": 3.2855, "line_breaks": 0.7446, "max_x": 70.7242, "n_centros": 0.1306, "n_events": 5.9882, "n_involved": 2.0065, "n_passes": 3.3812, "opt_quality_mean": 0.0999, "paredes": 0.3049, "pass_options_mean": 8.9812, "passes_behind_line": 0.1477, "pct_adentro": 0.5247, "pct_afuera": 0.3983, "pct_cortos": 0.4006, "pct_headpass": 0.0546, "pct_largos": 0.2025, "pct_launch": 0.0994, "pct_layoff": 0.0152, "pct_medios": 0.3211, "pct_switch": 0.004, "pct_through": 0.0039, "pct_verticales": 0.4699, "pelotazos_espalda": 0.1096, "press_final": 2.5711, "press_media": 1.9011, "prog_x": 24.6408, "start_x": 47.1491, "starts_from_dispossess": 0.0421, "takeons_ok": 0.0372, "tempo": 0.4274, "transition_speed": 3.7393, "verticalidad_media": 0.3187}, "Köln": {"atk_l": 39.1943, "atk_w": 31.2763, "ball_distance": 139.8686, "behind_line_ok": 0.0507, "broke_last_line": 0.0296, "broke_second_last": 0.1508, "cross_pvadded_max": 0.0017, "dang_runs": 0.1437, "deep_completions": 0.3201, "def_h": 30.8589, "dribbles_box": 0.0109, "dribbles_last_third": 0.0537, "duration_s": 30.6527, "hold_max": 11.6303, "hold_mean": 6.6855, "hold_min": 4.2671, "line_breaks": 0.5506, "max_x": 69.1841, "n_centros": 0.1332, "n_events": 5.843, "n_involved": 1.8372, "n_passes": 3.2516, "opt_quality_mean": 0.0608, "paredes": 0.2814, "pass_options_mean": 8.9214, "passes_behind_line": 0.1368, "pct_adentro": 0.5016, "pct_afuera": 0.4054, "pct_cortos": 0.3473, "pct_headpass": 0.0546, "pct_largos": 0.2288, "pct_launch": 0.0995, "pct_layoff": 0.0099, "pct_medios": 0.3316, "pct_switch": 0.0033, "pct_through": 0.0047, "pct_verticales": 0.4738, "pelotazos_espalda": 0.1044, "press_final": 2.5288, "press_media": 1.8148, "prog_x": 25.9062, "start_x": 44.6105, "starts_from_dispossess": 0.0368, "takeons_ok": 0.0384, "tempo": 0.3744, "transition_speed": 3.7954, "verticalidad_media": 0.3403}, "Mainz 05": {"atk_l": 38.7593, "atk_w": 31.5526, "ball_distance": 97.2369, "behind_line_ok": 0.0507, "broke_last_line": 0.0304, "broke_second_last": 0.1607, "cross_pvadded_max": 0.0015, "dang_runs": 0.1653, "deep_completions": 0.345, "def_h": 30.3878, "dribbles_box": 0.0099, "dribbles_last_third": 0.0435, "duration_s": 28.3595, "hold_max": 10.3234, "hold_mean": 6.1944, "hold_min": 3.7892, "line_breaks": 0.531, "max_x": 69.9521, "n_centros": 0.1321, "n_events": 5.579, "n_involved": 1.81, "n_passes": 2.7736, "opt_quality_mean": 0.0854, "paredes": 0.2077, "pass_options_mean": 8.9238, "passes_behind_line": 0.1342, "pct_adentro": 0.514, "pct_afuera": 0.4042, "pct_cortos": 0.3769, "pct_headpass": 0.0599, "pct_largos": 0.2339, "pct_launch": 0.1201, "pct_layoff": 0.0107, "pct_medios": 0.3084, "pct_switch": 0.0027, "pct_through": 0.0028, "pct_verticales": 0.5164, "pelotazos_espalda": 0.1032, "press_final": 2.6483, "press_media": 1.9502, "prog_x": 25.2518, "start_x": 45.6687, "starts_from_dispossess": 0.0339, "takeons_ok": 0.0361, "tempo": 0.3917, "transition_speed": 3.9945, "verticalidad_media": 0.3728}, "RB Leipzig": {"atk_l": 41.745, "atk_w": 32.0808, "ball_distance": 165.4316, "behind_line_ok": 0.0507, "broke_last_line": 0.0371, "broke_second_last": 0.1806, "cross_pvadded_max": 0.0019, "dang_runs": 0.193, "deep_completions": 0.3731, "def_h": 31.7671, "dribbles_box": 0.0206, "dribbles_last_third": 0.0832, "duration_s": 31.7316, "hold_max": 9.9637, "hold_mean": 5.5772, "hold_min": 3.2049, "line_breaks": 0.7975, "max_x": 68.3194, "n_centros": 0.1127, "n_events": 6.3307, "n_involved": 2.0715, "n_passes": 3.6534, "opt_quality_mean": 0.1111, "paredes": 0.3359, "pass_options_mean": 9.0517, "passes_behind_line": 0.1143, "pct_adentro": 0.5186, "pct_afuera": 0.3926, "pct_cortos": 0.3954, "pct_headpass": 0.0414, "pct_largos": 0.1647, "pct_launch": 0.0595, "pct_layoff": 0.0112, "pct_medios": 0.3518, "pct_switch": 0.0038, "pct_through": 0.0055, "pct_verticales": 0.4419, "pelotazos_espalda": 0.0743, "press_final": 2.8156, "press_media": 1.9801, "prog_x": 23.466, "start_x": 45.9039, "starts_from_dispossess": 0.0514, "takeons_ok": 0.0738, "tempo": 0.378, "transition_speed": 3.1945, "verticalidad_media": 0.2971}, "St. Pauli": {"atk_l": 40.1588, "atk_w": 31.1676, "ball_distance": 116.9086, "behind_line_ok": 0.0453, "broke_last_line": 0.0287, "broke_second_last": 0.1645, "cross_pvadded_max": 0.0007, "dang_runs": 0.1215, "deep_completions": 0.2993, "def_h": 32.0843, "dribbles_box": 0.0074, "dribbles_last_third": 0.0364, "duration_s": 25.5593, "hold_max": 9.7657, "hold_mean": 5.6014, "hold_min": 3.3287, "line_breaks": 0.6551, "max_x": 67.4492, "n_centros": 0.1157, "n_events": 5.5052, "n_involved": 2.0082, "n_passes": 3.1536, "opt_quality_mean": 0.0019, "paredes": 0.2598, "pass_options_mean": 9.0562, "passes_behind_line": 0.1277, "pct_adentro": 0.5242, "pct_afuera": 0.413, "pct_cortos": 0.4257, "pct_headpass": 0.0499, "pct_largos": 0.2003, "pct_launch": 0.1039, "pct_layoff": 0.0145, "pct_medios": 0.3123, "pct_switch": 0.0038, "pct_through": 0.0033, "pct_verticales": 0.5009, "pelotazos_espalda": 0.0954, "press_final": 2.5594, "press_media": 1.8991, "prog_x": 24.1037, "start_x": 44.2322, "starts_from_dispossess": 0.0377, "takeons_ok": 0.0338, "tempo": 0.4588, "transition_speed": 3.9975, "verticalidad_media": 0.3407}, "Stuttgart": {"atk_l": 41.4077, "atk_w": 31.5895, "ball_distance": 168.8969, "behind_line_ok": 0.0594, "broke_last_line": 0.0347, "broke_second_last": 0.1992, "cross_pvadded_max": 0.002, "dang_runs": 0.1692, "deep_completions": 0.4124, "def_h": 30.4717, "dribbles_box": 0.0112, "dribbles_last_third": 0.0435, "duration_s": 31.982, "hold_max": 10.4185, "hold_mean": 5.767, "hold_min": 3.3488, "line_breaks": 0.8997, "max_x": 69.9844, "n_centros": 0.1362, "n_events": 6.5145, "n_involved": 2.0542, "n_passes": 3.8401, "opt_quality_mean": 0.1224, "paredes": 0.3615, "pass_options_mean": 9.1383, "passes_behind_line": 0.1272, "pct_adentro": 0.5167, "pct_afuera": 0.4116, "pct_cortos": 0.4413, "pct_headpass": 0.0495, "pct_largos": 0.1684, "pct_launch": 0.0857, "pct_layoff": 0.0104, "pct_medios": 0.3197, "pct_switch": 0.0032, "pct_through": 0.0047, "pct_verticales": 0.4575, "pelotazos_espalda": 0.0829, "press_final": 2.589, "press_media": 1.9327, "prog_x": 24.4706, "start_x": 46.4392, "starts_from_dispossess": 0.0377, "takeons_ok": 0.0417, "tempo": 0.4047, "transition_speed": 3.2705, "verticalidad_media": 0.3}, "Union Berlin": {"atk_l": 37.5581, "atk_w": 31.0099, "ball_distance": 98.1477, "behind_line_ok": 0.0514, "broke_last_line": 0.0239, "broke_second_last": 0.1412, "cross_pvadded_max": 0.002, "dang_runs": 0.0917, "deep_completions": 0.2788, "def_h": 30.2752, "dribbles_box": 0.0069, "dribbles_last_third": 0.0439, "duration_s": 25.7302, "hold_max": 11.0071, "hold_mean": 7.0328, "hold_min": 4.7535, "line_breaks": 0.4352, "max_x": 69.8223, "n_centros": 0.1332, "n_events": 5.1144, "n_involved": 1.7471, "n_passes": 2.556, "opt_quality_mean": 0.0654, "paredes": 0.1616, "pass_options_mean": 8.7794, "passes_behind_line": 0.1363, "pct_adentro": 0.5103, "pct_afuera": 0.4046, "pct_cortos": 0.359, "pct_headpass": 0.0689, "pct_largos": 0.2603, "pct_launch": 0.1272, "pct_layoff": 0.008, "pct_medios": 0.2968, "pct_switch": 0.0039, "pct_through": 0.003, "pct_verticales": 0.52, "pelotazos_espalda": 0.1074, "press_final": 2.6098, "press_media": 1.9142, "prog_x": 25.3978, "start_x": 45.6911, "starts_from_dispossess": 0.0388, "takeons_ok": 0.0307, "tempo": 0.3988, "transition_speed": 4.1471, "verticalidad_media": 0.3855}, "Werder Bremen": {"atk_l": 41.8746, "atk_w": 32.4289, "ball_distance": 161.2587, "behind_line_ok": 0.0541, "broke_last_line": 0.0318, "broke_second_last": 0.1734, "cross_pvadded_max": 0.0009, "dang_runs": 0.1771, "deep_completions": 0.3725, "def_h": 33.0043, "dribbles_box": 0.0095, "dribbles_last_third": 0.0521, "duration_s": 28.2533, "hold_max": 9.7927, "hold_mean": 5.2586, "hold_min": 2.9169, "line_breaks": 0.7714, "max_x": 67.1976, "n_centros": 0.1229, "n_events": 6.1, "n_involved": 2.0597, "n_passes": 3.6307, "opt_quality_mean": 0.0431, "paredes": 0.2998, "pass_options_mean": 9.0877, "passes_behind_line": 0.1262, "pct_adentro": 0.5132, "pct_afuera": 0.4075, "pct_cortos": 0.407, "pct_headpass": 0.0419, "pct_largos": 0.1827, "pct_launch": 0.0705, "pct_layoff": 0.0142, "pct_medios": 0.3323, "pct_switch": 0.0058, "pct_through": 0.0038, "pct_verticales": 0.4634, "pelotazos_espalda": 0.0897, "press_final": 2.5289, "press_media": 1.9077, "prog_x": 24.492, "start_x": 43.9177, "starts_from_dispossess": 0.0462, "takeons_ok": 0.0417, "tempo": 0.4237, "transition_speed": 3.5522, "verticalidad_media": 0.3091}, "Wolfsburg": {"atk_l": 39.51, "atk_w": 31.5697, "ball_distance": 145.0715, "behind_line_ok": 0.0573, "broke_last_line": 0.0313, "broke_second_last": 0.1527, "cross_pvadded_max": 0.0015, "dang_runs": 0.1748, "deep_completions": 0.284, "def_h": 33.1257, "dribbles_box": 0.0107, "dribbles_last_third": 0.05, "duration_s": 23.9555, "hold_max": 10.3621, "hold_mean": 6.3476, "hold_min": 4.071, "line_breaks": 0.7359, "max_x": 66.7016, "n_centros": 0.1097, "n_events": 5.3881, "n_involved": 1.9651, "n_passes": 3.2001, "opt_quality_mean": -0.0351, "paredes": 0.2576, "pass_options_mean": 8.9963, "passes_behind_line": 0.1498, "pct_adentro": 0.5101, "pct_afuera": 0.4077, "pct_cortos": 0.3873, "pct_headpass": 0.0471, "pct_largos": 0.2229, "pct_launch": 0.1121, "pct_layoff": 0.0094, "pct_medios": 0.3081, "pct_switch": 0.0048, "pct_through": 0.0043, "pct_verticales": 0.4994, "pelotazos_espalda": 0.1108, "press_final": 2.645, "press_media": 1.8773, "prog_x": 24.7296, "start_x": 43.0609, "starts_from_dispossess": 0.0562, "takeons_ok": 0.0386, "tempo": 0.4087, "transition_speed": 3.7107, "verticalidad_media": 0.3524}}, "team_eje_norm_gen": {"Augsburg": {"eje_verticalidad": -0.0094, "eje_elaboracion": -0.0665, "eje_individual": -0.0068, "eje_rotura_lineas": -0.0299, "eje_amplitud_centro": -0.0083, "eje_profundidad_espalda": -0.0347, "eje_robo_alto": -0.0117, "eje_aereo_segunda": -0.0232}, "Bayer Leverkusen": {"eje_verticalidad": -0.1543, "eje_elaboracion": 0.194, "eje_individual": 0.0344, "eje_rotura_lineas": 0.1173, "eje_amplitud_centro": 0.0247, "eje_profundidad_espalda": 0.0466, "eje_robo_alto": 0.0127, "eje_aereo_segunda": -0.0563}, "Bayern München": {"eje_verticalidad": -0.1956, "eje_elaboracion": 0.2454, "eje_individual": 0.1145, "eje_rotura_lineas": 0.154, "eje_amplitud_centro": 0.0039, "eje_profundidad_espalda": 0.1064, "eje_robo_alto": 0.0734, "eje_aereo_segunda": -0.0816}, "Borussia Dortmund": {"eje_verticalidad": -0.0781, "eje_elaboracion": 0.0288, "eje_individual": 0.0203, "eje_rotura_lineas": 0.0408, "eje_amplitud_centro": 0.0045, "eje_profundidad_espalda": 0.0444, "eje_robo_alto": 0.0223, "eje_aereo_segunda": -0.0197}, "Borussia M'gladbach": {"eje_verticalidad": -0.0372, "eje_elaboracion": 0.0255, "eje_individual": -0.0309, "eje_rotura_lineas": -0.0131, "eje_amplitud_centro": -0.0141, "eje_profundidad_espalda": -0.0437, "eje_robo_alto": -0.0488, "eje_aereo_segunda": 0.0149}, "Eintracht Frankfurt": {"eje_verticalidad": -0.0724, "eje_elaboracion": 0.0524, "eje_individual": 0.0252, "eje_rotura_lineas": 0.0172, "eje_amplitud_centro": -0.0034, "eje_profundidad_espalda": -0.003, "eje_robo_alto": -0.0095, "eje_aereo_segunda": -0.0485}, "Freiburg": {"eje_verticalidad": -0.0379, "eje_elaboracion": -0.0384, "eje_individual": -0.015, "eje_rotura_lineas": -0.0534, "eje_amplitud_centro": -0.0166, "eje_profundidad_espalda": -0.055, "eje_robo_alto": -0.0207, "eje_aereo_segunda": 0.0161}, "Hamburger SV": {"eje_verticalidad": 0.0225, "eje_elaboracion": -0.0403, "eje_individual": -0.0048, "eje_rotura_lineas": -0.0369, "eje_amplitud_centro": 0.0091, "eje_profundidad_espalda": -0.0371, "eje_robo_alto": -0.0608, "eje_aereo_segunda": -0.0045}, "Heidenheim": {"eje_verticalidad": 0.0839, "eje_elaboracion": -0.1259, "eje_individual": -0.0395, "eje_rotura_lineas": -0.0649, "eje_amplitud_centro": 0.0114, "eje_profundidad_espalda": 0.0039, "eje_robo_alto": -0.0619, "eje_aereo_segunda": 0.0129}, "Hoffenheim": {"eje_verticalidad": -0.0143, "eje_elaboracion": -0.0072, "eje_individual": -0.0067, "eje_rotura_lineas": 0.0079, "eje_amplitud_centro": -0.0016, "eje_profundidad_espalda": 0.0405, "eje_robo_alto": 0.0387, "eje_aereo_segunda": 0.0487}, "Köln": {"eje_verticalidad": 0.017, "eje_elaboracion": -0.0561, "eje_individual": -0.0148, "eje_rotura_lineas": -0.0325, "eje_amplitud_centro": 0.0031, "eje_profundidad_espalda": -0.0025, "eje_robo_alto": -0.0217, "eje_aereo_segunda": 0.0179}, "Mainz 05": {"eje_verticalidad": 0.0791, "eje_elaboracion": -0.0904, "eje_individual": -0.0249, "eje_rotura_lineas": -0.0364, "eje_amplitud_centro": -0.0037, "eje_profundidad_espalda": 0.0024, "eje_robo_alto": -0.0091, "eje_aereo_segunda": 0.0614}, "RB Leipzig": {"eje_verticalidad": -0.0974, "eje_elaboracion": 0.0187, "eje_individual": 0.0897, "eje_rotura_lineas": 0.0192, "eje_amplitud_centro": -0.0267, "eje_profundidad_espalda": -0.0277, "eje_robo_alto": 0.0388, "eje_aereo_segunda": -0.056}, "St. Pauli": {"eje_verticalidad": 0.033, "eje_elaboracion": -0.0201, "eje_individual": -0.0513, "eje_rotura_lineas": -0.0243, "eje_amplitud_centro": -0.0036, "eje_profundidad_espalda": -0.0283, "eje_robo_alto": -0.0266, "eje_aereo_segunda": 0.0412}, "Stuttgart": {"eje_verticalidad": -0.0741, "eje_elaboracion": 0.069, "eje_individual": -0.0147, "eje_rotura_lineas": 0.0309, "eje_amplitud_centro": 0.0109, "eje_profundidad_espalda": 0.0094, "eje_robo_alto": 0.0147, "eje_aereo_segunda": -0.0089}, "Union Berlin": {"eje_verticalidad": 0.1146, "eje_elaboracion": -0.1321, "eje_individual": -0.0555, "eje_rotura_lineas": -0.0635, "eje_amplitud_centro": 0.0063, "eje_profundidad_espalda": -0.0121, "eje_robo_alto": 0.0035, "eje_aereo_segunda": 0.0737}, "Werder Bremen": {"eje_verticalidad": -0.0461, "eje_elaboracion": 0.0111, "eje_individual": -0.0077, "eje_rotura_lineas": -0.0034, "eje_amplitud_centro": 0.012, "eje_profundidad_espalda": -0.003, "eje_robo_alto": -0.0112, "eje_aereo_segunda": -0.0225}, "Wolfsburg": {"eje_verticalidad": 0.0372, "eje_elaboracion": -0.0448, "eje_individual": -0.0113, "eje_rotura_lineas": -0.0163, "eje_amplitud_centro": -0.0079, "eje_profundidad_espalda": 0.0078, "eje_robo_alto": -0.0024, "eje_aereo_segunda": 0.0164}}, "team_eje_norm_con": {"Augsburg": {"eje_verticalidad": -0.0724, "eje_elaboracion": 0.039, "eje_individual": 0.0023, "eje_rotura_lineas": 0.0248, "eje_amplitud_centro": -0.013, "eje_profundidad_espalda": 0.0111, "eje_robo_alto": 0.0175, "eje_aereo_segunda": -0.0127}, "Bayer Leverkusen": {"eje_verticalidad": -0.037, "eje_elaboracion": 0.0015, "eje_individual": -0.0223, "eje_rotura_lineas": -0.0014, "eje_amplitud_centro": -0.0053, "eje_profundidad_espalda": 0.012, "eje_robo_alto": -0.0087, "eje_aereo_segunda": -0.0088}, "Bayern München": {"eje_verticalidad": 0.0175, "eje_elaboracion": -0.0796, "eje_individual": -0.0033, "eje_rotura_lineas": -0.0278, "eje_amplitud_centro": 0.0007, "eje_profundidad_espalda": -0.0024, "eje_robo_alto": -0.1037, "eje_aereo_segunda": -0.0146}, "Borussia Dortmund": {"eje_verticalidad": 0.0012, "eje_elaboracion": -0.0044, "eje_individual": -0.0235, "eje_rotura_lineas": 0.0062, "eje_amplitud_centro": 0.0169, "eje_profundidad_espalda": -0.0112, "eje_robo_alto": -0.0522, "eje_aereo_segunda": 0.0085}, "Borussia M'gladbach": {"eje_verticalidad": -0.0779, "eje_elaboracion": 0.0749, "eje_individual": 0.0231, "eje_rotura_lineas": 0.018, "eje_amplitud_centro": 0.0087, "eje_profundidad_espalda": 0.014, "eje_robo_alto": 0.0482, "eje_aereo_segunda": -0.018}, "Eintracht Frankfurt": {"eje_verticalidad": -0.02, "eje_elaboracion": -0.0273, "eje_individual": 0.0023, "eje_rotura_lineas": -0.0033, "eje_amplitud_centro": 0.0132, "eje_profundidad_espalda": -0.0132, "eje_robo_alto": 0.015, "eje_aereo_segunda": -0.0078}, "Freiburg": {"eje_verticalidad": -0.0344, "eje_elaboracion": 0.0092, "eje_individual": -0.0234, "eje_rotura_lineas": 0.0115, "eje_amplitud_centro": 0.0045, "eje_profundidad_espalda": -0.0012, "eje_robo_alto": 0.006, "eje_aereo_segunda": 0.0097}, "Hamburger SV": {"eje_verticalidad": -0.0523, "eje_elaboracion": 0.0151, "eje_individual": 0.0085, "eje_rotura_lineas": -0.0027, "eje_amplitud_centro": 0.0087, "eje_profundidad_espalda": 0.0165, "eje_robo_alto": 0.0494, "eje_aereo_segunda": -0.027}, "Heidenheim": {"eje_verticalidad": -0.0215, "eje_elaboracion": 0.0306, "eje_individual": 0.0593, "eje_rotura_lineas": 0.0134, "eje_amplitud_centro": -0.0194, "eje_profundidad_espalda": 0.0142, "eje_robo_alto": 0.0128, "eje_aereo_segunda": -0.001}, "Hoffenheim": {"eje_verticalidad": 0.0612, "eje_elaboracion": -0.0971, "eje_individual": -0.0135, "eje_rotura_lineas": -0.0349, "eje_amplitud_centro": 0.0154, "eje_profundidad_espalda": -0.0088, "eje_robo_alto": -0.0492, "eje_aereo_segunda": 0.0049}, "Köln": {"eje_verticalidad": -0.0273, "eje_elaboracion": 0.0324, "eje_individual": 0.0027, "eje_rotura_lineas": 0.032, "eje_amplitud_centro": 0.0098, "eje_profundidad_espalda": 0.0174, "eje_robo_alto": 0.0175, "eje_aereo_segunda": 0.0071}, "Mainz 05": {"eje_verticalidad": -0.001, "eje_elaboracion": 0.0214, "eje_individual": 0.0051, "eje_rotura_lineas": -0.017, "eje_amplitud_centro": -0.0245, "eje_profundidad_espalda": 0.0011, "eje_robo_alto": -0.0167, "eje_aereo_segunda": 0.0062}, "RB Leipzig": {"eje_verticalidad": -0.0162, "eje_elaboracion": -0.0266, "eje_individual": -0.0059, "eje_rotura_lineas": 0.0033, "eje_amplitud_centro": -0.0106, "eje_profundidad_espalda": -0.0521, "eje_robo_alto": -0.0136, "eje_aereo_segunda": -0.0021}, "St. Pauli": {"eje_verticalidad": -0.0567, "eje_elaboracion": 0.0591, "eje_individual": -0.0092, "eje_rotura_lineas": 0.0327, "eje_amplitud_centro": -0.0249, "eje_profundidad_espalda": 0.0048, "eje_robo_alto": -0.0102, "eje_aereo_segunda": 0.0092}, "Stuttgart": {"eje_verticalidad": 0.0482, "eje_elaboracion": -0.0888, "eje_individual": -0.0369, "eje_rotura_lineas": -0.0376, "eje_amplitud_centro": -0.0096, "eje_profundidad_espalda": -0.0229, "eje_robo_alto": -0.037, "eje_aereo_segunda": 0.0357}, "Union Berlin": {"eje_verticalidad": -0.0278, "eje_elaboracion": 0.0421, "eje_individual": -0.0005, "eje_rotura_lineas": 0.0053, "eje_amplitud_centro": -0.0035, "eje_profundidad_espalda": 0.0117, "eje_robo_alto": -0.0111, "eje_aereo_segunda": 0.0306}, "Werder Bremen": {"eje_verticalidad": -0.0387, "eje_elaboracion": 0.0056, "eje_individual": 0.0063, "eje_rotura_lineas": -0.0043, "eje_amplitud_centro": -0.0106, "eje_profundidad_espalda": -0.0183, "eje_robo_alto": 0.0169, "eje_aereo_segunda": -0.0175}, "Wolfsburg": {"eje_verticalidad": -0.0741, "eje_elaboracion": 0.0162, "eje_individual": 0.029, "eje_rotura_lineas": -0.0053, "eje_amplitud_centro": 0.0435, "eje_profundidad_espalda": 0.042, "eje_robo_alto": 0.0388, "eje_aereo_segunda": -0.0204}}} \ No newline at end of file diff --git a/vendor/data/ejes/german-bundesliga/25-26/team_profiles.parquet b/vendor/data/ejes/german-bundesliga/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..6302ce3a19e99f2904c5b3514c2db226c1f997b8 --- /dev/null +++ b/vendor/data/ejes/german-bundesliga/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dab920d1c9bc93aec479cc42bcdacf821677494305df88756b0118ed95e552a9 +size 9552 diff --git a/vendor/data/ejes/italian-serie-a/25-26/ejes_definition.json b/vendor/data/ejes/italian-serie-a/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/italian-serie-a/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/italian-serie-a/25-26/match_team_ejes.parquet b/vendor/data/ejes/italian-serie-a/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..ee6dc03fb80e6eb4535d69581765fcb8dea95ffd --- /dev/null +++ b/vendor/data/ejes/italian-serie-a/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a96dfd24bd922680e838e4fff9d45f3f370e7342dd6b19b623d55fbf1cae1b1d +size 88759 diff --git a/vendor/data/ejes/italian-serie-a/25-26/match_team_vars.parquet b/vendor/data/ejes/italian-serie-a/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..d54661de780bcdce5039922d1b9de95cf8ef9c7b --- /dev/null +++ b/vendor/data/ejes/italian-serie-a/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86073db8cd058d40440ba8d230066f6a8cf640e7dd1c9ba5972881851fdc5555 +size 326554 diff --git a/vendor/data/ejes/italian-serie-a/25-26/predictor.json b/vendor/data/ejes/italian-serie-a/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..f92aa05942f07fbdfe4f14863916bd3e929e9279 --- /dev/null +++ b/vendor/data/ejes/italian-serie-a/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.9723, "con": 0.8554, "intercept": 0.0225}, "elaboracion": {"gen": 0.9846, "con": 0.9106, "intercept": -0.0033}, "individual": {"gen": 0.8703, "con": 0.7789, "intercept": -0.0}, "rotura_lineas": {"gen": 0.9587, "con": 0.8226, "intercept": -0.0014}, "amplitud_centro": {"gen": 0.5976, "con": 0.7987, "intercept": -0.0001}, "profundidad_espalda": {"gen": 0.8289, "con": 0.7858, "intercept": -0.0005}, "robo_alto": {"gen": 0.8501, "con": 0.7818, "intercept": 0.0035}, "aereo_segunda": {"gen": 0.9357, "con": 0.8342, "intercept": 0.0006}} \ No newline at end of file diff --git a/vendor/data/ejes/italian-serie-a/25-26/scales.json b/vendor/data/ejes/italian-serie-a/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..49af61c52d4b57f275ebf59c4fe6fa235b1e24e6 --- /dev/null +++ b/vendor/data/ejes/italian-serie-a/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 1.8586, "atk_w": 1.455, "ball_distance": 71.3455, "behind_line_ok": 0.0251, "broke_last_line": 0.0166, "broke_second_last": 0.0461, "cross_pvadded_max": 0.0015, "dang_runs": 0.11, "deep_completions": 0.1382, "def_h": 3.3021, "dribbles_box": 0.0109, "dribbles_last_third": 0.027, "duration_s": 30.2956, "hold_max": 21.2454, "hold_mean": 1.0273, "hold_min": 0.9951, "line_breaks": 0.3589, "max_x": 4.1779, "n_centros": 0.0532, "n_events": 1.8572, "n_involved": 0.1985, "n_passes": 0.7251, "opt_quality_mean": 0.1533, "paredes": 0.1255, "pass_options_mean": 1.2789, "passes_behind_line": 0.0377, "pct_adentro": 0.036, "pct_afuera": 0.0349, "pct_cortos": 0.0485, "pct_headpass": 0.0158, "pct_largos": 0.0469, "pct_launch": 0.0312, "pct_layoff": 0.0053, "pct_medios": 0.0409, "pct_switch": 0.0046, "pct_through": 0.0042, "pct_verticales": 0.0542, "pelotazos_espalda": 0.032, "press_final": 0.2904, "press_media": 0.1449, "prog_x": 2.6227, "start_x": 4.7834, "starts_from_dispossess": 0.0185, "takeons_ok": 0.0215, "tempo": 0.0384, "transition_speed": 0.677, "verticalidad_media": 0.0632}, "eje_sigma": {"eje_verticalidad": 0.1155, "eje_elaboracion": 0.103, "eje_individual": 0.0708, "eje_rotura_lineas": 0.0658, "eje_amplitud_centro": 0.0604, "eje_profundidad_espalda": 0.0855, "eje_robo_alto": 0.1019, "eje_aereo_segunda": 0.0681}, "eje_match_mean": {"eje_verticalidad": -0.0272, "eje_elaboracion": 0.0036, "eje_individual": 0.0001, "eje_rotura_lineas": 0.0018, "eje_amplitud_centro": 0.0002, "eje_profundidad_espalda": 0.0007, "eje_robo_alto": -0.0056, "eje_aereo_segunda": -0.0008}, "eje_match_std": {"eje_verticalidad": 0.1454, "eje_elaboracion": 0.1333, "eje_individual": 0.0774, "eje_rotura_lineas": 0.0791, "eje_amplitud_centro": 0.0622, "eje_profundidad_espalda": 0.0915, "eje_robo_alto": 0.1107, "eje_aereo_segunda": 0.0772}, "team_var_norm": {"Atalanta": {"atk_l": 43.8942, "atk_w": 32.075, "ball_distance": 174.953, "behind_line_ok": 0.0525, "broke_last_line": 0.0394, "broke_second_last": 0.2103, "cross_pvadded_max": 0.0017, "dang_runs": 0.1849, "deep_completions": 0.4583, "def_h": 30.843, "dribbles_box": 0.0134, "dribbles_last_third": 0.0683, "duration_s": 28.6995, "hold_max": 9.6084, "hold_mean": 5.5769, "hold_min": 3.4507, "line_breaks": 0.876, "max_x": 69.4441, "n_centros": 0.1327, "n_events": 6.1679, "n_involved": 2.0104, "n_passes": 3.8305, "opt_quality_mean": 0.0963, "paredes": 0.3064, "pass_options_mean": 8.8416, "passes_behind_line": 0.1189, "pct_adentro": 0.4987, "pct_afuera": 0.4167, "pct_cortos": 0.401, "pct_headpass": 0.0491, "pct_largos": 0.1891, "pct_launch": 0.0724, "pct_layoff": 0.0096, "pct_medios": 0.3263, "pct_switch": 0.0041, "pct_through": 0.003, "pct_verticales": 0.4534, "pelotazos_espalda": 0.0825, "press_final": 2.6911, "press_media": 1.8933, "prog_x": 25.188, "start_x": 45.2905, "starts_from_dispossess": 0.0481, "takeons_ok": 0.0548, "tempo": 0.371, "transition_speed": 3.0857, "verticalidad_media": 0.319}, "Bologna": {"atk_l": 42.9033, "atk_w": 32.9427, "ball_distance": 156.5833, "behind_line_ok": 0.0555, "broke_last_line": 0.0331, "broke_second_last": 0.1665, "cross_pvadded_max": 0.0013, "dang_runs": 0.1566, "deep_completions": 0.3489, "def_h": 30.9614, "dribbles_box": 0.0127, "dribbles_last_third": 0.0616, "duration_s": 27.1681, "hold_max": 10.8238, "hold_mean": 5.6547, "hold_min": 3.1917, "line_breaks": 0.6224, "max_x": 68.0264, "n_centros": 0.1268, "n_events": 5.811, "n_involved": 1.8964, "n_passes": 3.5422, "opt_quality_mean": 0.0215, "paredes": 0.3149, "pass_options_mean": 9.1327, "passes_behind_line": 0.128, "pct_adentro": 0.4846, "pct_afuera": 0.4249, "pct_cortos": 0.3366, "pct_headpass": 0.0421, "pct_largos": 0.2173, "pct_launch": 0.088, "pct_layoff": 0.0092, "pct_medios": 0.3564, "pct_switch": 0.0081, "pct_through": 0.0019, "pct_verticales": 0.4719, "pelotazos_espalda": 0.0924, "press_final": 2.4636, "press_media": 1.7501, "prog_x": 24.344, "start_x": 44.9852, "starts_from_dispossess": 0.0384, "takeons_ok": 0.0473, "tempo": 0.3534, "transition_speed": 3.1443, "verticalidad_media": 0.3166}, "Cagliari": {"atk_l": 43.4453, "atk_w": 32.6245, "ball_distance": 150.6873, "behind_line_ok": 0.0383, "broke_last_line": 0.02, "broke_second_last": 0.148, "cross_pvadded_max": 0.0011, "dang_runs": 0.1586, "deep_completions": 0.2308, "def_h": 34.1509, "dribbles_box": 0.0082, "dribbles_last_third": 0.0488, "duration_s": 35.7999, "hold_max": 11.3396, "hold_mean": 6.2639, "hold_min": 3.7455, "line_breaks": 0.7159, "max_x": 64.8353, "n_centros": 0.1065, "n_events": 6.3416, "n_involved": 1.9786, "n_passes": 3.2643, "opt_quality_mean": -0.0548, "paredes": 0.2639, "pass_options_mean": 8.865, "passes_behind_line": 0.1187, "pct_adentro": 0.501, "pct_afuera": 0.4143, "pct_cortos": 0.3883, "pct_headpass": 0.0451, "pct_largos": 0.2015, "pct_launch": 0.0875, "pct_layoff": 0.0121, "pct_medios": 0.3265, "pct_switch": 0.0058, "pct_through": 0.0023, "pct_verticales": 0.493, "pelotazos_espalda": 0.0915, "press_final": 2.5734, "press_media": 1.7419, "prog_x": 25.4149, "start_x": 40.4725, "starts_from_dispossess": 0.0442, "takeons_ok": 0.0464, "tempo": 0.3827, "transition_speed": 3.514, "verticalidad_media": 0.3641}, "Como": {"atk_l": 43.4423, "atk_w": 32.3282, "ball_distance": 195.6779, "behind_line_ok": 0.0516, "broke_last_line": 0.0267, "broke_second_last": 0.2061, "cross_pvadded_max": 0.0012, "dang_runs": 0.2087, "deep_completions": 0.3788, "def_h": 31.4317, "dribbles_box": 0.0167, "dribbles_last_third": 0.0744, "duration_s": 30.0697, "hold_max": 10.543, "hold_mean": 5.472, "hold_min": 2.9926, "line_breaks": 1.1053, "max_x": 67.8695, "n_centros": 0.121, "n_events": 6.6351, "n_involved": 2.1271, "n_passes": 4.2243, "opt_quality_mean": 0.0936, "paredes": 0.4142, "pass_options_mean": 8.7555, "passes_behind_line": 0.1204, "pct_adentro": 0.5143, "pct_afuera": 0.4012, "pct_cortos": 0.4285, "pct_headpass": 0.0392, "pct_largos": 0.1535, "pct_launch": 0.0495, "pct_layoff": 0.0124, "pct_medios": 0.3358, "pct_switch": 0.0044, "pct_through": 0.0045, "pct_verticales": 0.4322, "pelotazos_espalda": 0.0763, "press_final": 2.6662, "press_media": 1.8579, "prog_x": 24.0137, "start_x": 45.006, "starts_from_dispossess": 0.0505, "takeons_ok": 0.0565, "tempo": 0.3799, "transition_speed": 2.791, "verticalidad_media": 0.2736}, "Cremonese": {"atk_l": 40.9334, "atk_w": 32.2253, "ball_distance": 137.1645, "behind_line_ok": 0.0491, "broke_last_line": 0.024, "broke_second_last": 0.1428, "cross_pvadded_max": 0.0009, "dang_runs": 0.1394, "deep_completions": 0.2453, "def_h": 32.9982, "dribbles_box": 0.0054, "dribbles_last_third": 0.037, "duration_s": 34.2821, "hold_max": 11.0075, "hold_mean": 6.2927, "hold_min": 3.8126, "line_breaks": 0.64, "max_x": 66.4097, "n_centros": 0.1339, "n_events": 6.1546, "n_involved": 1.8588, "n_passes": 3.2571, "opt_quality_mean": -0.0413, "paredes": 0.2651, "pass_options_mean": 8.9249, "passes_behind_line": 0.1364, "pct_adentro": 0.4996, "pct_afuera": 0.4206, "pct_cortos": 0.3709, "pct_headpass": 0.0554, "pct_largos": 0.2245, "pct_launch": 0.1004, "pct_layoff": 0.0117, "pct_medios": 0.3257, "pct_switch": 0.0047, "pct_through": 0.0017, "pct_verticales": 0.4986, "pelotazos_espalda": 0.1016, "press_final": 2.4676, "press_media": 1.7608, "prog_x": 25.88, "start_x": 41.6536, "starts_from_dispossess": 0.0332, "takeons_ok": 0.0317, "tempo": 0.3871, "transition_speed": 3.732, "verticalidad_media": 0.3555}, "Fiorentina": {"atk_l": 41.2923, "atk_w": 32.7242, "ball_distance": 164.5493, "behind_line_ok": 0.0458, "broke_last_line": 0.0235, "broke_second_last": 0.1693, "cross_pvadded_max": 0.0015, "dang_runs": 0.1841, "deep_completions": 0.3144, "def_h": 31.3361, "dribbles_box": 0.0118, "dribbles_last_third": 0.0579, "duration_s": 27.3448, "hold_max": 11.2839, "hold_mean": 6.3761, "hold_min": 3.8761, "line_breaks": 0.7946, "max_x": 68.3051, "n_centros": 0.1448, "n_events": 5.8881, "n_involved": 1.9255, "n_passes": 3.6094, "opt_quality_mean": 0.0813, "paredes": 0.3208, "pass_options_mean": 9.0316, "passes_behind_line": 0.1216, "pct_adentro": 0.4978, "pct_afuera": 0.4045, "pct_cortos": 0.3548, "pct_headpass": 0.0386, "pct_largos": 0.2, "pct_launch": 0.0749, "pct_layoff": 0.0111, "pct_medios": 0.3485, "pct_switch": 0.003, "pct_through": 0.0038, "pct_verticales": 0.4476, "pelotazos_espalda": 0.091, "press_final": 2.5195, "press_media": 1.7721, "prog_x": 25.5582, "start_x": 44.147, "starts_from_dispossess": 0.0394, "takeons_ok": 0.0546, "tempo": 0.3644, "transition_speed": 3.2142, "verticalidad_media": 0.3067}, "Genoa": {"atk_l": 42.8093, "atk_w": 32.9105, "ball_distance": 131.0776, "behind_line_ok": 0.0423, "broke_last_line": 0.0209, "broke_second_last": 0.1544, "cross_pvadded_max": 0.0012, "dang_runs": 0.1224, "deep_completions": 0.2598, "def_h": 31.4004, "dribbles_box": 0.0098, "dribbles_last_third": 0.0526, "duration_s": 39.5043, "hold_max": 26.829, "hold_mean": 6.7735, "hold_min": 4.1679, "line_breaks": 0.5136, "max_x": 66.7521, "n_centros": 0.1232, "n_events": 5.3118, "n_involved": 1.8583, "n_passes": 3.0913, "opt_quality_mean": -0.0231, "paredes": 0.276, "pass_options_mean": 8.9893, "passes_behind_line": 0.1073, "pct_adentro": 0.4967, "pct_afuera": 0.4048, "pct_cortos": 0.3627, "pct_headpass": 0.0516, "pct_largos": 0.2066, "pct_launch": 0.0967, "pct_layoff": 0.0088, "pct_medios": 0.3329, "pct_switch": 0.0038, "pct_through": 0.0022, "pct_verticales": 0.4754, "pelotazos_espalda": 0.0807, "press_final": 2.5536, "press_media": 1.8556, "prog_x": 23.2158, "start_x": 44.6256, "starts_from_dispossess": 0.0531, "takeons_ok": 0.0416, "tempo": 0.363, "transition_speed": 3.3941, "verticalidad_media": 0.3434}, "Hellas Verona": {"atk_l": 40.2343, "atk_w": 31.0422, "ball_distance": 100.0877, "behind_line_ok": 0.0428, "broke_last_line": 0.0194, "broke_second_last": 0.1526, "cross_pvadded_max": 0.0012, "dang_runs": 0.129, "deep_completions": 0.2527, "def_h": 31.724, "dribbles_box": 0.0068, "dribbles_last_third": 0.0475, "duration_s": 24.1532, "hold_max": 10.5897, "hold_mean": 6.4757, "hold_min": 4.2867, "line_breaks": 0.4483, "max_x": 68.575, "n_centros": 0.1128, "n_events": 5.0685, "n_involved": 1.7716, "n_passes": 2.6719, "opt_quality_mean": -0.0052, "paredes": 0.1759, "pass_options_mean": 8.2917, "passes_behind_line": 0.1306, "pct_adentro": 0.4897, "pct_afuera": 0.4169, "pct_cortos": 0.3689, "pct_headpass": 0.0523, "pct_largos": 0.2541, "pct_launch": 0.108, "pct_layoff": 0.0092, "pct_medios": 0.2846, "pct_switch": 0.005, "pct_through": 0.0029, "pct_verticales": 0.5294, "pelotazos_espalda": 0.1033, "press_final": 2.6071, "press_media": 1.8507, "prog_x": 25.872, "start_x": 43.8886, "starts_from_dispossess": 0.0504, "takeons_ok": 0.0433, "tempo": 0.3705, "transition_speed": 3.7829, "verticalidad_media": 0.4044}, "Internazionale": {"atk_l": 42.8699, "atk_w": 31.9434, "ball_distance": 216.7667, "behind_line_ok": 0.0662, "broke_last_line": 0.0332, "broke_second_last": 0.2334, "cross_pvadded_max": 0.0021, "dang_runs": 0.2299, "deep_completions": 0.5585, "def_h": 29.508, "dribbles_box": 0.0121, "dribbles_last_third": 0.046, "duration_s": 46.7056, "hold_max": 10.1185, "hold_mean": 5.4038, "hold_min": 3.1556, "line_breaks": 0.9951, "max_x": 71.0616, "n_centros": 0.1677, "n_events": 7.8916, "n_involved": 2.1451, "n_passes": 4.4798, "opt_quality_mean": 0.2012, "paredes": 0.4759, "pass_options_mean": 9.2646, "passes_behind_line": 0.1197, "pct_adentro": 0.5374, "pct_afuera": 0.3817, "pct_cortos": 0.4159, "pct_headpass": 0.0432, "pct_largos": 0.1543, "pct_launch": 0.0557, "pct_layoff": 0.0113, "pct_medios": 0.3497, "pct_switch": 0.005, "pct_through": 0.0019, "pct_verticales": 0.4174, "pelotazos_espalda": 0.071, "press_final": 2.4258, "press_media": 1.8576, "prog_x": 23.7566, "start_x": 48.2833, "starts_from_dispossess": 0.0462, "takeons_ok": 0.0393, "tempo": 0.3941, "transition_speed": 2.781, "verticalidad_media": 0.2702}, "Juventus": {"atk_l": 42.4999, "atk_w": 31.9955, "ball_distance": 187.2433, "behind_line_ok": 0.063, "broke_last_line": 0.0357, "broke_second_last": 0.2146, "cross_pvadded_max": 0.0015, "dang_runs": 0.232, "deep_completions": 0.5129, "def_h": 30.0952, "dribbles_box": 0.0208, "dribbles_last_third": 0.076, "duration_s": 37.5999, "hold_max": 9.8533, "hold_mean": 5.2577, "hold_min": 2.9171, "line_breaks": 0.9376, "max_x": 70.6291, "n_centros": 0.1405, "n_events": 7.0961, "n_involved": 2.0742, "n_passes": 4.138, "opt_quality_mean": 0.1835, "paredes": 0.3822, "pass_options_mean": 9.2498, "passes_behind_line": 0.1258, "pct_adentro": 0.5132, "pct_afuera": 0.4024, "pct_cortos": 0.4287, "pct_headpass": 0.0392, "pct_largos": 0.1503, "pct_launch": 0.0483, "pct_layoff": 0.0129, "pct_medios": 0.3374, "pct_switch": 0.0047, "pct_through": 0.0043, "pct_verticales": 0.4182, "pelotazos_espalda": 0.0752, "press_final": 2.622, "press_media": 1.8986, "prog_x": 24.4797, "start_x": 47.3046, "starts_from_dispossess": 0.0462, "takeons_ok": 0.0578, "tempo": 0.39, "transition_speed": 2.9786, "verticalidad_media": 0.267}, "Lazio": {"atk_l": 44.0339, "atk_w": 31.6896, "ball_distance": 206.6175, "behind_line_ok": 0.0552, "broke_last_line": 0.0356, "broke_second_last": 0.1785, "cross_pvadded_max": 0.001, "dang_runs": 0.2166, "deep_completions": 0.3247, "def_h": 33.4536, "dribbles_box": 0.0119, "dribbles_last_third": 0.06, "duration_s": 34.5387, "hold_max": 11.1702, "hold_mean": 5.831, "hold_min": 3.2281, "line_breaks": 1.0801, "max_x": 65.106, "n_centros": 0.1082, "n_events": 6.8742, "n_involved": 2.211, "n_passes": 4.2717, "opt_quality_mean": -0.0239, "paredes": 0.4351, "pass_options_mean": 9.1012, "passes_behind_line": 0.1168, "pct_adentro": 0.4931, "pct_afuera": 0.4195, "pct_cortos": 0.4395, "pct_headpass": 0.0372, "pct_largos": 0.1548, "pct_launch": 0.0584, "pct_layoff": 0.0194, "pct_medios": 0.3193, "pct_switch": 0.0047, "pct_through": 0.0031, "pct_verticales": 0.4382, "pelotazos_espalda": 0.073, "press_final": 2.6176, "press_media": 1.7566, "prog_x": 23.4648, "start_x": 42.8257, "starts_from_dispossess": 0.0417, "takeons_ok": 0.0459, "tempo": 0.4062, "transition_speed": 2.8619, "verticalidad_media": 0.2707}, "Lecce": {"atk_l": 41.511, "atk_w": 31.8062, "ball_distance": 89.6617, "behind_line_ok": 0.0402, "broke_last_line": 0.0209, "broke_second_last": 0.1451, "cross_pvadded_max": 0.0011, "dang_runs": 0.1231, "deep_completions": 0.27, "def_h": 30.5998, "dribbles_box": 0.0124, "dribbles_last_third": 0.0694, "duration_s": 30.2981, "hold_max": 11.3961, "hold_mean": 6.8181, "hold_min": 4.3634, "line_breaks": 0.4227, "max_x": 68.2521, "n_centros": 0.1174, "n_events": 5.5139, "n_involved": 1.7008, "n_passes": 2.5578, "opt_quality_mean": -0.0008, "paredes": 0.1619, "pass_options_mean": 8.7887, "passes_behind_line": 0.1237, "pct_adentro": 0.5021, "pct_afuera": 0.4056, "pct_cortos": 0.343, "pct_headpass": 0.0539, "pct_largos": 0.2449, "pct_launch": 0.1201, "pct_layoff": 0.0103, "pct_medios": 0.3207, "pct_switch": 0.0051, "pct_through": 0.0012, "pct_verticales": 0.5193, "pelotazos_espalda": 0.0916, "press_final": 2.6175, "press_media": 1.7626, "prog_x": 24.8096, "start_x": 44.3659, "starts_from_dispossess": 0.0491, "takeons_ok": 0.0433, "tempo": 0.3577, "transition_speed": 3.6625, "verticalidad_media": 0.3938}, "Milan": {"atk_l": 43.8093, "atk_w": 32.3059, "ball_distance": 231.3223, "behind_line_ok": 0.0608, "broke_last_line": 0.0286, "broke_second_last": 0.1894, "cross_pvadded_max": 0.002, "dang_runs": 0.1985, "deep_completions": 0.4276, "def_h": 31.9528, "dribbles_box": 0.0133, "dribbles_last_third": 0.0739, "duration_s": 38.8009, "hold_max": 10.5539, "hold_mean": 5.757, "hold_min": 3.4353, "line_breaks": 1.0952, "max_x": 68.502, "n_centros": 0.1336, "n_events": 7.0931, "n_involved": 2.1082, "n_passes": 4.2107, "opt_quality_mean": 0.0875, "paredes": 0.4211, "pass_options_mean": 9.1767, "passes_behind_line": 0.1321, "pct_adentro": 0.5066, "pct_afuera": 0.401, "pct_cortos": 0.394, "pct_headpass": 0.0385, "pct_largos": 0.1588, "pct_launch": 0.0486, "pct_layoff": 0.0105, "pct_medios": 0.3568, "pct_switch": 0.0041, "pct_through": 0.0049, "pct_verticales": 0.4345, "pelotazos_espalda": 0.085, "press_final": 2.6394, "press_media": 1.8044, "prog_x": 25.7931, "start_x": 44.0857, "starts_from_dispossess": 0.0475, "takeons_ok": 0.0523, "tempo": 0.3559, "transition_speed": 2.7943, "verticalidad_media": 0.2919}, "Napoli": {"atk_l": 44.1126, "atk_w": 32.011, "ball_distance": 228.1781, "behind_line_ok": 0.057, "broke_last_line": 0.0324, "broke_second_last": 0.1934, "cross_pvadded_max": 0.0017, "dang_runs": 0.2242, "deep_completions": 0.4278, "def_h": 31.2263, "dribbles_box": 0.0133, "dribbles_last_third": 0.0726, "duration_s": 28.4591, "hold_max": 10.5085, "hold_mean": 5.3867, "hold_min": 2.9224, "line_breaks": 1.1777, "max_x": 69.2161, "n_centros": 0.133, "n_events": 6.6014, "n_involved": 2.2311, "n_passes": 4.5416, "opt_quality_mean": 0.1142, "paredes": 0.4581, "pass_options_mean": 9.3138, "passes_behind_line": 0.1278, "pct_adentro": 0.5046, "pct_afuera": 0.4153, "pct_cortos": 0.4427, "pct_headpass": 0.0373, "pct_largos": 0.142, "pct_launch": 0.0546, "pct_layoff": 0.0119, "pct_medios": 0.3362, "pct_switch": 0.0034, "pct_through": 0.0035, "pct_verticales": 0.4092, "pelotazos_espalda": 0.0841, "press_final": 2.6974, "press_media": 1.88, "prog_x": 23.7256, "start_x": 46.5281, "starts_from_dispossess": 0.0413, "takeons_ok": 0.0487, "tempo": 0.3891, "transition_speed": 2.6933, "verticalidad_media": 0.2513}, "Parma": {"atk_l": 41.4462, "atk_w": 31.5768, "ball_distance": 138.9218, "behind_line_ok": 0.0539, "broke_last_line": 0.0238, "broke_second_last": 0.156, "cross_pvadded_max": 0.0011, "dang_runs": 0.1399, "deep_completions": 0.2705, "def_h": 31.9795, "dribbles_box": 0.0053, "dribbles_last_third": 0.0461, "duration_s": 20.5221, "hold_max": 12.0877, "hold_mean": 7.4245, "hold_min": 4.8523, "line_breaks": 0.6554, "max_x": 67.8775, "n_centros": 0.1283, "n_events": 4.9366, "n_involved": 1.8082, "n_passes": 3.1007, "opt_quality_mean": 0.0205, "paredes": 0.2718, "pass_options_mean": 8.8349, "passes_behind_line": 0.1384, "pct_adentro": 0.4955, "pct_afuera": 0.407, "pct_cortos": 0.3388, "pct_headpass": 0.0502, "pct_largos": 0.2397, "pct_launch": 0.09, "pct_layoff": 0.0071, "pct_medios": 0.3248, "pct_switch": 0.0045, "pct_through": 0.001, "pct_verticales": 0.4976, "pelotazos_espalda": 0.1083, "press_final": 2.529, "press_media": 1.6747, "prog_x": 26.9031, "start_x": 41.9853, "starts_from_dispossess": 0.038, "takeons_ok": 0.0409, "tempo": 0.3416, "transition_speed": 3.5056, "verticalidad_media": 0.3782}, "Pisa": {"atk_l": 39.6277, "atk_w": 32.6954, "ball_distance": 115.5409, "behind_line_ok": 0.0479, "broke_last_line": 0.0229, "broke_second_last": 0.1457, "cross_pvadded_max": 0.0015, "dang_runs": 0.1297, "deep_completions": 0.2498, "def_h": 32.1274, "dribbles_box": 0.0062, "dribbles_last_third": 0.0477, "duration_s": 32.0507, "hold_max": 11.2752, "hold_mean": 6.6677, "hold_min": 4.0977, "line_breaks": 0.5306, "max_x": 67.5912, "n_centros": 0.1299, "n_events": 5.8114, "n_involved": 1.7848, "n_passes": 2.8422, "opt_quality_mean": 0.0028, "paredes": 0.2358, "pass_options_mean": 8.9417, "passes_behind_line": 0.1307, "pct_adentro": 0.4998, "pct_afuera": 0.4129, "pct_cortos": 0.3507, "pct_headpass": 0.0643, "pct_largos": 0.2435, "pct_launch": 0.107, "pct_layoff": 0.0073, "pct_medios": 0.3201, "pct_switch": 0.0042, "pct_through": 0.0028, "pct_verticales": 0.5229, "pelotazos_espalda": 0.0991, "press_final": 2.4558, "press_media": 1.7227, "prog_x": 26.3815, "start_x": 42.2262, "starts_from_dispossess": 0.0464, "takeons_ok": 0.0384, "tempo": 0.3706, "transition_speed": 4.1484, "verticalidad_media": 0.4002}, "Roma": {"atk_l": 43.3226, "atk_w": 31.4899, "ball_distance": 155.1233, "behind_line_ok": 0.0509, "broke_last_line": 0.0312, "broke_second_last": 0.1842, "cross_pvadded_max": 0.0015, "dang_runs": 0.1821, "deep_completions": 0.435, "def_h": 30.4996, "dribbles_box": 0.01, "dribbles_last_third": 0.0613, "duration_s": 30.6729, "hold_max": 10.0996, "hold_mean": 5.8012, "hold_min": 3.5234, "line_breaks": 0.7263, "max_x": 69.5649, "n_centros": 0.1275, "n_events": 6.357, "n_involved": 2.0548, "n_passes": 3.7065, "opt_quality_mean": 0.0871, "paredes": 0.3056, "pass_options_mean": 8.8168, "passes_behind_line": 0.1247, "pct_adentro": 0.5084, "pct_afuera": 0.4096, "pct_cortos": 0.3994, "pct_headpass": 0.0475, "pct_largos": 0.1753, "pct_launch": 0.0778, "pct_layoff": 0.0106, "pct_medios": 0.344, "pct_switch": 0.0047, "pct_through": 0.0031, "pct_verticales": 0.4654, "pelotazos_espalda": 0.0805, "press_final": 2.6152, "press_media": 1.8772, "prog_x": 24.0975, "start_x": 46.6209, "starts_from_dispossess": 0.0479, "takeons_ok": 0.0392, "tempo": 0.4051, "transition_speed": 3.241, "verticalidad_media": 0.3273}, "Sassuolo": {"atk_l": 41.6696, "atk_w": 31.7027, "ball_distance": 150.8048, "behind_line_ok": 0.0469, "broke_last_line": 0.0331, "broke_second_last": 0.1887, "cross_pvadded_max": 0.0012, "dang_runs": 0.1804, "deep_completions": 0.3249, "def_h": 32.8944, "dribbles_box": 0.0106, "dribbles_last_third": 0.0579, "duration_s": 28.4027, "hold_max": 11.5427, "hold_mean": 6.8409, "hold_min": 4.3088, "line_breaks": 0.8158, "max_x": 66.6534, "n_centros": 0.0936, "n_events": 5.8441, "n_involved": 1.9405, "n_passes": 3.4654, "opt_quality_mean": -0.0175, "paredes": 0.3176, "pass_options_mean": 8.9218, "passes_behind_line": 0.1246, "pct_adentro": 0.482, "pct_afuera": 0.4291, "pct_cortos": 0.4049, "pct_headpass": 0.0482, "pct_largos": 0.2057, "pct_launch": 0.0839, "pct_layoff": 0.0125, "pct_medios": 0.3023, "pct_switch": 0.005, "pct_through": 0.0032, "pct_verticales": 0.4862, "pelotazos_espalda": 0.0907, "press_final": 2.7226, "press_media": 1.8722, "prog_x": 26.2197, "start_x": 41.6097, "starts_from_dispossess": 0.0396, "takeons_ok": 0.045, "tempo": 0.3699, "transition_speed": 3.2864, "verticalidad_media": 0.3457}, "Torino": {"atk_l": 42.0152, "atk_w": 32.4862, "ball_distance": 126.5441, "behind_line_ok": 0.05, "broke_last_line": 0.0251, "broke_second_last": 0.1757, "cross_pvadded_max": 0.0015, "dang_runs": 0.1552, "deep_completions": 0.2904, "def_h": 31.8079, "dribbles_box": 0.0086, "dribbles_last_third": 0.0523, "duration_s": 30.6205, "hold_max": 11.0694, "hold_mean": 6.1394, "hold_min": 3.6054, "line_breaks": 0.5684, "max_x": 68.198, "n_centros": 0.1329, "n_events": 5.8166, "n_involved": 1.8812, "n_passes": 3.1839, "opt_quality_mean": 0.0247, "paredes": 0.2329, "pass_options_mean": 8.9543, "passes_behind_line": 0.1274, "pct_adentro": 0.5023, "pct_afuera": 0.4104, "pct_cortos": 0.3644, "pct_headpass": 0.0483, "pct_largos": 0.214, "pct_launch": 0.0996, "pct_layoff": 0.0105, "pct_medios": 0.3348, "pct_switch": 0.0056, "pct_through": 0.0017, "pct_verticales": 0.479, "pelotazos_espalda": 0.0998, "press_final": 2.5796, "press_media": 1.8177, "prog_x": 25.4456, "start_x": 43.9677, "starts_from_dispossess": 0.0467, "takeons_ok": 0.0423, "tempo": 0.3875, "transition_speed": 3.8901, "verticalidad_media": 0.3468}, "Udinese": {"atk_l": 40.2169, "atk_w": 32.5627, "ball_distance": 122.5154, "behind_line_ok": 0.0414, "broke_last_line": 0.0227, "broke_second_last": 0.1629, "cross_pvadded_max": 0.0008, "dang_runs": 0.1494, "deep_completions": 0.2756, "def_h": 32.0124, "dribbles_box": 0.0105, "dribbles_last_third": 0.06, "duration_s": 26.1057, "hold_max": 11.101, "hold_mean": 6.4771, "hold_min": 3.9069, "line_breaks": 0.5909, "max_x": 67.355, "n_centros": 0.1122, "n_events": 5.376, "n_involved": 1.7732, "n_passes": 3.0618, "opt_quality_mean": 0.0253, "paredes": 0.2498, "pass_options_mean": 8.9921, "passes_behind_line": 0.108, "pct_adentro": 0.4974, "pct_afuera": 0.4013, "pct_cortos": 0.3782, "pct_headpass": 0.0451, "pct_largos": 0.2071, "pct_launch": 0.0918, "pct_layoff": 0.0081, "pct_medios": 0.3146, "pct_switch": 0.0027, "pct_through": 0.0016, "pct_verticales": 0.4762, "pelotazos_espalda": 0.0783, "press_final": 2.7154, "press_media": 1.878, "prog_x": 24.3818, "start_x": 44.1666, "starts_from_dispossess": 0.0491, "takeons_ok": 0.0576, "tempo": 0.3479, "transition_speed": 3.4046, "verticalidad_media": 0.3477}}, "team_eje_norm_gen": {"Atalanta": {"eje_verticalidad": -0.0543, "eje_elaboracion": 0.027, "eje_individual": 0.0274, "eje_rotura_lineas": 0.0508, "eje_amplitud_centro": 0.0096, "eje_profundidad_espalda": 0.0299, "eje_robo_alto": 0.0227, "eje_aereo_segunda": -0.014}, "Bologna": {"eje_verticalidad": -0.0222, "eje_elaboracion": -0.0326, "eje_individual": 0.0044, "eje_rotura_lineas": -0.0124, "eje_amplitud_centro": 0.0389, "eje_profundidad_espalda": 0.0148, "eje_robo_alto": -0.0063, "eje_aereo_segunda": -0.009}, "Cagliari": {"eje_verticalidad": 0.0222, "eje_elaboracion": -0.0261, "eje_individual": -0.0191, "eje_rotura_lineas": -0.0331, "eje_amplitud_centro": -0.0071, "eje_profundidad_espalda": -0.0473, "eje_robo_alto": -0.0774, "eje_aereo_segunda": 0.0139}, "Como": {"eje_verticalidad": -0.1341, "eje_elaboracion": 0.1054, "eje_individual": 0.0487, "eje_rotura_lineas": 0.0576, "eje_amplitud_centro": -0.0148, "eje_profundidad_espalda": 0.0001, "eje_robo_alto": 0.0232, "eje_aereo_segunda": -0.0491}, "Cremonese": {"eje_verticalidad": 0.0505, "eje_elaboracion": -0.0388, "eje_individual": -0.058, "eje_rotura_lineas": -0.0401, "eje_amplitud_centro": 0.0185, "eje_profundidad_espalda": -0.0096, "eje_robo_alto": -0.0816, "eje_aereo_segunda": 0.0506}, "Fiorentina": {"eje_verticalidad": -0.0569, "eje_elaboracion": -0.0141, "eje_individual": 0.0132, "eje_rotura_lineas": 0.0006, "eje_amplitud_centro": 0.0021, "eje_profundidad_espalda": -0.012, "eje_robo_alto": -0.0198, "eje_aereo_segunda": -0.0231}, "Genoa": {"eje_verticalidad": -0.0064, "eje_elaboracion": -0.0481, "eje_individual": -0.0257, "eje_rotura_lineas": -0.0459, "eje_amplitud_centro": -0.0134, "eje_profundidad_espalda": -0.052, "eje_robo_alto": 0.0224, "eje_aereo_segunda": 0.02}, "Hellas Verona": {"eje_verticalidad": 0.1164, "eje_elaboracion": -0.1106, "eje_individual": -0.0342, "eje_rotura_lineas": -0.0501, "eje_amplitud_centro": -0.0037, "eje_profundidad_espalda": -0.0169, "eje_robo_alto": 0.0019, "eje_aereo_segunda": 0.0393}, "Internazionale": {"eje_verticalidad": -0.1426, "eje_elaboracion": 0.1418, "eje_individual": -0.0041, "eje_rotura_lineas": 0.0589, "eje_amplitud_centro": 0.0163, "eje_profundidad_espalda": 0.0655, "eje_robo_alto": 0.0744, "eje_aereo_segunda": -0.0392}, "Juventus": {"eje_verticalidad": -0.1402, "eje_elaboracion": 0.0942, "eje_individual": 0.0665, "eje_rotura_lineas": 0.0612, "eje_amplitud_centro": 0.0075, "eje_profundidad_espalda": 0.0564, "eje_robo_alto": 0.056, "eje_aereo_segunda": -0.0477}, "Lazio": {"eje_verticalidad": -0.1288, "eje_elaboracion": 0.125, "eje_individual": 0.0135, "eje_rotura_lineas": 0.0441, "eje_amplitud_centro": -0.008, "eje_profundidad_espalda": -0.0183, "eje_robo_alto": -0.039, "eje_aereo_segunda": 0.001}, "Lecce": {"eje_verticalidad": 0.0921, "eje_elaboracion": -0.1362, "eje_individual": -0.0009, "eje_rotura_lineas": -0.0647, "eje_amplitud_centro": -0.0098, "eje_profundidad_espalda": -0.0295, "eje_robo_alto": 0.0077, "eje_aereo_segunda": 0.0666}, "Milan": {"eje_verticalidad": -0.1198, "eje_elaboracion": 0.0883, "eje_individual": 0.0334, "eje_rotura_lineas": 0.0521, "eje_amplitud_centro": -0.0049, "eje_profundidad_espalda": 0.0411, "eje_robo_alto": -0.0013, "eje_aereo_segunda": -0.0635}, "Napoli": {"eje_verticalidad": -0.1732, "eje_elaboracion": 0.1478, "eje_individual": 0.0342, "eje_rotura_lineas": 0.0589, "eje_amplitud_centro": 0.0031, "eje_profundidad_espalda": 0.0331, "eje_robo_alto": 0.0296, "eje_aereo_segunda": -0.0491}, "Parma": {"eje_verticalidad": 0.0565, "eje_elaboracion": -0.0758, "eje_individual": -0.0389, "eje_rotura_lineas": -0.0358, "eje_amplitud_centro": -0.0019, "eje_profundidad_espalda": 0.0106, "eje_robo_alto": -0.0639, "eje_aereo_segunda": -0.0023}, "Pisa": {"eje_verticalidad": 0.1179, "eje_elaboracion": -0.0887, "eje_individual": -0.0405, "eje_rotura_lineas": -0.0429, "eje_amplitud_centro": 0.0037, "eje_profundidad_espalda": -0.0159, "eje_robo_alto": -0.0391, "eje_aereo_segunda": 0.0514}, "Roma": {"eje_verticalidad": -0.0458, "eje_elaboracion": 0.0192, "eje_individual": -0.005, "eje_rotura_lineas": 0.0112, "eje_amplitud_centro": 0.0012, "eje_profundidad_espalda": 0.0234, "eje_robo_alto": 0.0474, "eje_aereo_segunda": -0.0038}, "Sassuolo": {"eje_verticalidad": -0.0001, "eje_elaboracion": 0.0107, "eje_individual": -0.001, "eje_rotura_lineas": 0.0249, "eje_amplitud_centro": -0.0116, "eje_profundidad_espalda": -0.0057, "eje_robo_alto": -0.067, "eje_aereo_segunda": 0.0179}, "Torino": {"eje_verticalidad": 0.0283, "eje_elaboracion": -0.0602, "eje_individual": -0.02, "eje_rotura_lineas": -0.0247, "eje_amplitud_centro": 0.0134, "eje_profundidad_espalda": -0.0029, "eje_robo_alto": -0.0056, "eje_aereo_segunda": 0.0278}, "Udinese": {"eje_verticalidad": -0.0029, "eje_elaboracion": -0.0554, "eje_individual": 0.0073, "eje_rotura_lineas": -0.0348, "eje_amplitud_centro": -0.0354, "eje_profundidad_espalda": -0.0497, "eje_robo_alto": 0.0041, "eje_aereo_segunda": -0.0041}}, "team_eje_norm_con": {"Atalanta": {"eje_verticalidad": 0.0143, "eje_elaboracion": -0.04, "eje_individual": -0.0101, "eje_rotura_lineas": 0.0015, "eje_amplitud_centro": -0.0215, "eje_profundidad_espalda": -0.0319, "eje_robo_alto": -0.0389, "eje_aereo_segunda": 0.0064}, "Bologna": {"eje_verticalidad": 0.018, "eje_elaboracion": -0.0764, "eje_individual": -0.023, "eje_rotura_lineas": -0.003, "eje_amplitud_centro": -0.0255, "eje_profundidad_espalda": -0.0332, "eje_robo_alto": -0.0301, "eje_aereo_segunda": 0.0343}, "Cagliari": {"eje_verticalidad": -0.0635, "eje_elaboracion": 0.0335, "eje_individual": 0.0408, "eje_rotura_lineas": -0.0112, "eje_amplitud_centro": -0.012, "eje_profundidad_espalda": 0.0127, "eje_robo_alto": 0.0513, "eje_aereo_segunda": -0.0204}, "Como": {"eje_verticalidad": 0.0708, "eje_elaboracion": -0.0829, "eje_individual": -0.0109, "eje_rotura_lineas": -0.0343, "eje_amplitud_centro": -0.012, "eje_profundidad_espalda": -0.0239, "eje_robo_alto": -0.0516, "eje_aereo_segunda": -0.0062}, "Cremonese": {"eje_verticalidad": -0.0494, "eje_elaboracion": -0.009, "eje_individual": 0.0083, "eje_rotura_lineas": 0.0208, "eje_amplitud_centro": 0.0005, "eje_profundidad_espalda": 0.0533, "eje_robo_alto": 0.0335, "eje_aereo_segunda": -0.007}, "Fiorentina": {"eje_verticalidad": -0.0058, "eje_elaboracion": 0.0114, "eje_individual": -0.0093, "eje_rotura_lineas": 0.0063, "eje_amplitud_centro": 0.0261, "eje_profundidad_espalda": 0.02, "eje_robo_alto": -0.022, "eje_aereo_segunda": 0.0113}, "Genoa": {"eje_verticalidad": -0.0225, "eje_elaboracion": -0.023, "eje_individual": -0.0239, "eje_rotura_lineas": -0.0306, "eje_amplitud_centro": -0.0052, "eje_profundidad_espalda": -0.0098, "eje_robo_alto": 0.015, "eje_aereo_segunda": 0.0307}, "Hellas Verona": {"eje_verticalidad": -0.0422, "eje_elaboracion": 0.0324, "eje_individual": 0.0001, "eje_rotura_lineas": -0.0224, "eje_amplitud_centro": -0.0197, "eje_profundidad_espalda": -0.0095, "eje_robo_alto": -0.0003, "eje_aereo_segunda": -0.0085}, "Internazionale": {"eje_verticalidad": 0.0073, "eje_elaboracion": -0.0356, "eje_individual": -0.0324, "eje_rotura_lineas": -0.002, "eje_amplitud_centro": 0.0016, "eje_profundidad_espalda": -0.009, "eje_robo_alto": -0.0565, "eje_aereo_segunda": -0.0028}, "Juventus": {"eje_verticalidad": 0.0027, "eje_elaboracion": -0.0415, "eje_individual": -0.0283, "eje_rotura_lineas": -0.0399, "eje_amplitud_centro": -0.0088, "eje_profundidad_espalda": -0.0409, "eje_robo_alto": -0.0761, "eje_aereo_segunda": 0.0013}, "Lazio": {"eje_verticalidad": -0.134, "eje_elaboracion": 0.0865, "eje_individual": -0.0032, "eje_rotura_lineas": 0.0353, "eje_amplitud_centro": 0.031, "eje_profundidad_espalda": -0.0015, "eje_robo_alto": 0.0122, "eje_aereo_segunda": -0.0569}, "Lecce": {"eje_verticalidad": -0.0356, "eje_elaboracion": 0.0035, "eje_individual": 0.0119, "eje_rotura_lineas": 0.0436, "eje_amplitud_centro": -0.0234, "eje_profundidad_espalda": 0.0142, "eje_robo_alto": 0.0181, "eje_aereo_segunda": 0.0199}, "Milan": {"eje_verticalidad": -0.0678, "eje_elaboracion": 0.0616, "eje_individual": 0.01, "eje_rotura_lineas": 0.0079, "eje_amplitud_centro": 0.0438, "eje_profundidad_espalda": 0.0008, "eje_robo_alto": -0.0058, "eje_aereo_segunda": -0.0427}, "Napoli": {"eje_verticalidad": 0.0299, "eje_elaboracion": -0.011, "eje_individual": -0.0317, "eje_rotura_lineas": -0.0106, "eje_amplitud_centro": 0.0008, "eje_profundidad_espalda": -0.0271, "eje_robo_alto": -0.0522, "eje_aereo_segunda": 0.0304}, "Parma": {"eje_verticalidad": -0.0523, "eje_elaboracion": 0.0631, "eje_individual": 0.0482, "eje_rotura_lineas": 0.015, "eje_amplitud_centro": 0.0334, "eje_profundidad_espalda": 0.0536, "eje_robo_alto": 0.0305, "eje_aereo_segunda": 0.0028}, "Pisa": {"eje_verticalidad": -0.065, "eje_elaboracion": 0.0539, "eje_individual": 0.0549, "eje_rotura_lineas": 0.0175, "eje_amplitud_centro": -0.0048, "eje_profundidad_espalda": 0.0218, "eje_robo_alto": 0.0216, "eje_aereo_segunda": 0.0028}, "Roma": {"eje_verticalidad": 0.0411, "eje_elaboracion": -0.0769, "eje_individual": -0.0199, "eje_rotura_lineas": -0.0379, "eje_amplitud_centro": -0.0304, "eje_profundidad_espalda": -0.0531, "eje_robo_alto": -0.0403, "eje_aereo_segunda": 0.0388}, "Sassuolo": {"eje_verticalidad": -0.104, "eje_elaboracion": 0.0626, "eje_individual": 0.0034, "eje_rotura_lineas": 0.034, "eje_amplitud_centro": 0.0254, "eje_profundidad_espalda": 0.038, "eje_robo_alto": 0.047, "eje_aereo_segunda": -0.0311}, "Torino": {"eje_verticalidad": -0.036, "eje_elaboracion": 0.0403, "eje_individual": 0.0064, "eje_rotura_lineas": 0.0211, "eje_amplitud_centro": 0.0014, "eje_profundidad_espalda": 0.0118, "eje_robo_alto": 0.0088, "eje_aereo_segunda": -0.0053}, "Udinese": {"eje_verticalidad": -0.0496, "eje_elaboracion": 0.0202, "eje_individual": 0.0098, "eje_rotura_lineas": 0.0246, "eje_amplitud_centro": 0.0028, "eje_profundidad_espalda": 0.0287, "eje_robo_alto": 0.0239, "eje_aereo_segunda": -0.0139}}} \ No newline at end of file diff --git a/vendor/data/ejes/italian-serie-a/25-26/team_profiles.parquet b/vendor/data/ejes/italian-serie-a/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..e735090f5ae7a24237f254eb1d30711d251a7a49 --- /dev/null +++ b/vendor/data/ejes/italian-serie-a/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c715e3e0dd8d876b848bf07657513194a00c374c32aff11e4578893f1daf8627 +size 9939 diff --git a/vendor/data/ejes/italian-serie-b/25-26/ejes_definition.json b/vendor/data/ejes/italian-serie-b/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/italian-serie-b/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/italian-serie-b/25-26/match_team_ejes.parquet b/vendor/data/ejes/italian-serie-b/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..ae2a429ce7f469868db4bf56a36413b675d22359 --- /dev/null +++ b/vendor/data/ejes/italian-serie-b/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daba443c9005e71c7fe01b5f4f0df8a1236ea40869a3c7c6a9d0bdaf3b038853 +size 90730 diff --git a/vendor/data/ejes/italian-serie-b/25-26/match_team_vars.parquet b/vendor/data/ejes/italian-serie-b/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..ccf2775ba7e7307ca8c73a421a91c11129077eb3 --- /dev/null +++ b/vendor/data/ejes/italian-serie-b/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5de4ccf26d8c882fc6894f8d62243b250a3a6fc63ea7e1cd10ce3651a3b2fad3 +size 332813 diff --git a/vendor/data/ejes/italian-serie-b/25-26/predictor.json b/vendor/data/ejes/italian-serie-b/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..5da6963689eed860bc49ff076b0c02eb31286064 --- /dev/null +++ b/vendor/data/ejes/italian-serie-b/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.9465, "con": 0.86, "intercept": 0.0229}, "elaboracion": {"gen": 0.965, "con": 0.8639, "intercept": -0.0029}, "individual": {"gen": 0.8129, "con": 0.7315, "intercept": -0.0002}, "rotura_lineas": {"gen": 0.9238, "con": 0.6792, "intercept": -0.0009}, "amplitud_centro": {"gen": 0.75, "con": 0.2681, "intercept": -0.0}, "profundidad_espalda": {"gen": 0.5441, "con": 0.3456, "intercept": 0.0002}, "robo_alto": {"gen": 0.6628, "con": 0.8484, "intercept": 0.002}, "aereo_segunda": {"gen": 0.9155, "con": 0.8293, "intercept": 0.0008}} \ No newline at end of file diff --git a/vendor/data/ejes/italian-serie-b/25-26/scales.json b/vendor/data/ejes/italian-serie-b/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..d2187182e771d22531299c012dff0b67c283b3c8 --- /dev/null +++ b/vendor/data/ejes/italian-serie-b/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 2.2924, "atk_w": 1.3558, "ball_distance": 57.2535, "behind_line_ok": 0.0242, "broke_last_line": 0.0141, "broke_second_last": 0.0404, "cross_pvadded_max": 0.0016, "dang_runs": 0.0984, "deep_completions": 0.1206, "def_h": 2.8847, "dribbles_box": 0.0101, "dribbles_last_third": 0.025, "duration_s": 20.5439, "hold_max": 1.5351, "hold_mean": 1.1137, "hold_min": 1.0943, "line_breaks": 0.2795, "max_x": 3.774, "n_centros": 0.0527, "n_events": 1.8775, "n_involved": 0.1895, "n_passes": 0.6361, "opt_quality_mean": 0.1435, "paredes": 0.1085, "pass_options_mean": 1.8956, "passes_behind_line": 0.0434, "pct_adentro": 0.0366, "pct_afuera": 0.0357, "pct_cortos": 0.0485, "pct_headpass": 0.0159, "pct_largos": 0.05, "pct_launch": 0.0371, "pct_layoff": 0.0055, "pct_medios": 0.0389, "pct_switch": 0.0038, "pct_through": 0.0033, "pct_verticales": 0.0579, "pelotazos_espalda": 0.0364, "press_final": 0.497, "press_media": 0.3324, "prog_x": 2.5301, "start_x": 4.6666, "starts_from_dispossess": 0.0171, "takeons_ok": 0.0207, "tempo": 0.039, "transition_speed": 0.6931, "verticalidad_media": 0.0676}, "eje_sigma": {"eje_verticalidad": 0.1187, "eje_elaboracion": 0.1028, "eje_individual": 0.0686, "eje_rotura_lineas": 0.0591, "eje_amplitud_centro": 0.0577, "eje_profundidad_espalda": 0.0932, "eje_robo_alto": 0.1, "eje_aereo_segunda": 0.0706}, "eje_match_mean": {"eje_verticalidad": -0.0284, "eje_elaboracion": 0.0035, "eje_individual": 0.0004, "eje_rotura_lineas": 0.0015, "eje_amplitud_centro": 0.0006, "eje_profundidad_espalda": 0.0018, "eje_robo_alto": -0.0039, "eje_aereo_segunda": -0.0011}, "eje_match_std": {"eje_verticalidad": 0.136, "eje_elaboracion": 0.1239, "eje_individual": 0.0729, "eje_rotura_lineas": 0.0671, "eje_amplitud_centro": 0.0607, "eje_profundidad_espalda": 0.0959, "eje_robo_alto": 0.1042, "eje_aereo_segunda": 0.0777}, "team_var_norm": {"Avellino": {"atk_l": 39.7764, "atk_w": 33.0935, "ball_distance": 144.8916, "behind_line_ok": 0.0505, "broke_last_line": 0.0208, "broke_second_last": 0.1584, "cross_pvadded_max": 0.0011, "dang_runs": 0.1532, "deep_completions": 0.3227, "def_h": 32.4645, "dribbles_box": 0.0091, "dribbles_last_third": 0.0504, "duration_s": 32.9918, "hold_max": 10.9701, "hold_mean": 6.3907, "hold_min": 3.9624, "line_breaks": 0.6244, "max_x": 66.5923, "n_centros": 0.1414, "n_events": 6.2024, "n_involved": 1.9552, "n_passes": 3.2964, "opt_quality_mean": -0.0143, "paredes": 0.2714, "pass_options_mean": 8.632, "passes_behind_line": 0.1289, "pct_adentro": 0.5139, "pct_afuera": 0.406, "pct_cortos": 0.386, "pct_headpass": 0.0477, "pct_largos": 0.2185, "pct_launch": 0.1031, "pct_layoff": 0.0127, "pct_medios": 0.3162, "pct_switch": 0.0028, "pct_through": 0.0025, "pct_verticales": 0.4859, "pelotazos_espalda": 0.0968, "press_final": 2.4799, "press_media": 1.743, "prog_x": 25.0538, "start_x": 42.4383, "starts_from_dispossess": 0.0402, "takeons_ok": 0.0458, "tempo": 0.375, "transition_speed": 3.3436, "verticalidad_media": 0.3397}, "Bari": {"atk_l": 40.3293, "atk_w": 32.3964, "ball_distance": 121.5109, "behind_line_ok": 0.0462, "broke_last_line": 0.0171, "broke_second_last": 0.162, "cross_pvadded_max": 0.0012, "dang_runs": 0.105, "deep_completions": 0.2555, "def_h": 32.7017, "dribbles_box": 0.0102, "dribbles_last_third": 0.0547, "duration_s": 34.5956, "hold_max": 11.4277, "hold_mean": 6.6598, "hold_min": 4.1634, "line_breaks": 0.6468, "max_x": 66.5249, "n_centros": 0.1297, "n_events": 6.2018, "n_involved": 1.8837, "n_passes": 3.0557, "opt_quality_mean": 0.0044, "paredes": 0.2276, "pass_options_mean": 8.4779, "passes_behind_line": 0.1196, "pct_adentro": 0.4987, "pct_afuera": 0.4121, "pct_cortos": 0.4047, "pct_headpass": 0.0523, "pct_largos": 0.2039, "pct_launch": 0.1096, "pct_layoff": 0.0133, "pct_medios": 0.3034, "pct_switch": 0.0036, "pct_through": 0.0011, "pct_verticales": 0.5131, "pelotazos_espalda": 0.089, "press_final": 2.5953, "press_media": 1.8295, "prog_x": 25.7707, "start_x": 41.7893, "starts_from_dispossess": 0.0384, "takeons_ok": 0.0463, "tempo": 0.3696, "transition_speed": 3.6272, "verticalidad_media": 0.3925}, "Carrarese": {"atk_l": 42.1847, "atk_w": 34.1625, "ball_distance": 125.149, "behind_line_ok": 0.047, "broke_last_line": 0.0285, "broke_second_last": 0.1423, "cross_pvadded_max": 0.0019, "dang_runs": 0.1721, "deep_completions": 0.3601, "def_h": 30.7462, "dribbles_box": 0.0115, "dribbles_last_third": 0.0551, "duration_s": 27.4208, "hold_max": 10.7018, "hold_mean": 6.0243, "hold_min": 3.4837, "line_breaks": 0.5401, "max_x": 68.1351, "n_centros": 0.1558, "n_events": 5.603, "n_involved": 1.8934, "n_passes": 3.1411, "opt_quality_mean": 0.0588, "paredes": 0.2303, "pass_options_mean": 8.7403, "passes_behind_line": 0.1132, "pct_adentro": 0.5133, "pct_afuera": 0.4042, "pct_cortos": 0.3884, "pct_headpass": 0.0513, "pct_largos": 0.2035, "pct_launch": 0.0944, "pct_layoff": 0.0087, "pct_medios": 0.3262, "pct_switch": 0.0047, "pct_through": 0.0028, "pct_verticales": 0.4843, "pelotazos_espalda": 0.0792, "press_final": 2.3597, "press_media": 1.652, "prog_x": 25.1453, "start_x": 44.008, "starts_from_dispossess": 0.0352, "takeons_ok": 0.0488, "tempo": 0.3789, "transition_speed": 3.5092, "verticalidad_media": 0.3513}, "Catanzaro": {"atk_l": 43.1779, "atk_w": 32.9456, "ball_distance": 151.9351, "behind_line_ok": 0.0482, "broke_last_line": 0.0209, "broke_second_last": 0.178, "cross_pvadded_max": 0.0015, "dang_runs": 0.1993, "deep_completions": 0.3159, "def_h": 32.4442, "dribbles_box": 0.0099, "dribbles_last_third": 0.0583, "duration_s": 28.5421, "hold_max": 11.8575, "hold_mean": 6.5679, "hold_min": 3.8208, "line_breaks": 0.7847, "max_x": 66.4341, "n_centros": 0.1226, "n_events": 5.862, "n_involved": 1.9702, "n_passes": 3.5219, "opt_quality_mean": 0.0582, "paredes": 0.3168, "pass_options_mean": 8.4308, "passes_behind_line": 0.1196, "pct_adentro": 0.51, "pct_afuera": 0.3995, "pct_cortos": 0.4379, "pct_headpass": 0.0408, "pct_largos": 0.1817, "pct_launch": 0.098, "pct_layoff": 0.01, "pct_medios": 0.2918, "pct_switch": 0.0029, "pct_through": 0.0027, "pct_verticales": 0.4567, "pelotazos_espalda": 0.0868, "press_final": 2.7567, "press_media": 1.892, "prog_x": 24.5336, "start_x": 43.035, "starts_from_dispossess": 0.037, "takeons_ok": 0.0444, "tempo": 0.3642, "transition_speed": 3.0631, "verticalidad_media": 0.311}, "Cesena": {"atk_l": 42.3405, "atk_w": 33.128, "ball_distance": 163.6675, "behind_line_ok": 0.054, "broke_last_line": 0.0283, "broke_second_last": 0.174, "cross_pvadded_max": 0.0012, "dang_runs": 0.2214, "deep_completions": 0.397, "def_h": 31.9691, "dribbles_box": 0.0091, "dribbles_last_third": 0.0559, "duration_s": 31.1288, "hold_max": 9.765, "hold_mean": 5.6552, "hold_min": 3.4943, "line_breaks": 0.8776, "max_x": 68.4042, "n_centros": 0.1435, "n_events": 6.2649, "n_involved": 2.0847, "n_passes": 3.667, "opt_quality_mean": 0.0585, "paredes": 0.3452, "pass_options_mean": 8.8529, "passes_behind_line": 0.1313, "pct_adentro": 0.5022, "pct_afuera": 0.4201, "pct_cortos": 0.422, "pct_headpass": 0.0405, "pct_largos": 0.1836, "pct_launch": 0.09, "pct_layoff": 0.0108, "pct_medios": 0.3178, "pct_switch": 0.0022, "pct_through": 0.0026, "pct_verticales": 0.4641, "pelotazos_espalda": 0.0917, "press_final": 2.5094, "press_media": 1.7858, "prog_x": 25.5909, "start_x": 44.1987, "starts_from_dispossess": 0.0388, "takeons_ok": 0.0491, "tempo": 0.3935, "transition_speed": 3.3593, "verticalidad_media": 0.32}, "Empoli": {"atk_l": 41.4495, "atk_w": 32.6648, "ball_distance": 112.2645, "behind_line_ok": 0.0445, "broke_last_line": 0.0202, "broke_second_last": 0.1335, "cross_pvadded_max": 0.0016, "dang_runs": 0.1416, "deep_completions": 0.2906, "def_h": 30.9014, "dribbles_box": 0.0106, "dribbles_last_third": 0.0523, "duration_s": 22.5522, "hold_max": 10.4149, "hold_mean": 6.2486, "hold_min": 3.8279, "line_breaks": 0.4746, "max_x": 68.5281, "n_centros": 0.1546, "n_events": 5.0614, "n_involved": 1.8211, "n_passes": 2.8438, "opt_quality_mean": 0.0583, "paredes": 0.2169, "pass_options_mean": 8.7035, "passes_behind_line": 0.1148, "pct_adentro": 0.5187, "pct_afuera": 0.3867, "pct_cortos": 0.3585, "pct_headpass": 0.0445, "pct_largos": 0.2135, "pct_launch": 0.1115, "pct_layoff": 0.0097, "pct_medios": 0.335, "pct_switch": 0.0036, "pct_through": 0.003, "pct_verticales": 0.4865, "pelotazos_espalda": 0.0848, "press_final": 2.4618, "press_media": 1.7395, "prog_x": 24.6453, "start_x": 44.8315, "starts_from_dispossess": 0.0402, "takeons_ok": 0.0455, "tempo": 0.3642, "transition_speed": 3.5114, "verticalidad_media": 0.3626}, "Frosinone": {"atk_l": 39.9729, "atk_w": 32.5466, "ball_distance": 88.2205, "behind_line_ok": 0.0462, "broke_last_line": 0.0274, "broke_second_last": 0.1514, "cross_pvadded_max": 0.0017, "dang_runs": 0.2026, "deep_completions": 0.3653, "def_h": 29.1409, "dribbles_box": 0.0139, "dribbles_last_third": 0.063, "duration_s": 18.6056, "hold_max": 10.6306, "hold_mean": 6.6962, "hold_min": 4.2601, "line_breaks": 0.4531, "max_x": 71.1729, "n_centros": 0.1328, "n_events": 4.479, "n_involved": 1.6713, "n_passes": 2.5405, "opt_quality_mean": 0.1273, "paredes": 0.2003, "pass_options_mean": 8.5634, "passes_behind_line": 0.121, "pct_adentro": 0.4957, "pct_afuera": 0.3951, "pct_cortos": 0.3612, "pct_headpass": 0.0429, "pct_largos": 0.2269, "pct_launch": 0.0936, "pct_layoff": 0.0061, "pct_medios": 0.3043, "pct_switch": 0.0055, "pct_through": 0.0021, "pct_verticales": 0.514, "pelotazos_espalda": 0.0921, "press_final": 2.5957, "press_media": 1.8051, "prog_x": 26.7436, "start_x": 46.0134, "starts_from_dispossess": 0.0445, "takeons_ok": 0.052, "tempo": 0.3356, "transition_speed": 3.7594, "verticalidad_media": 0.3993}, "Juve Stabia": {"atk_l": 42.3688, "atk_w": 32.2985, "ball_distance": 147.4398, "behind_line_ok": 0.0435, "broke_last_line": 0.0188, "broke_second_last": 0.1589, "cross_pvadded_max": 0.001, "dang_runs": 0.1826, "deep_completions": 0.2642, "def_h": 31.9098, "dribbles_box": 0.0097, "dribbles_last_third": 0.0473, "duration_s": 30.5911, "hold_max": 10.9878, "hold_mean": 6.7574, "hold_min": 4.5415, "line_breaks": 0.6459, "max_x": 66.7642, "n_centros": 0.1127, "n_events": 6.0676, "n_involved": 1.953, "n_passes": 3.4008, "opt_quality_mean": 0.0054, "paredes": 0.3695, "pass_options_mean": 8.2457, "passes_behind_line": 0.1219, "pct_adentro": 0.5162, "pct_afuera": 0.3879, "pct_cortos": 0.3683, "pct_headpass": 0.0483, "pct_largos": 0.1985, "pct_launch": 0.1055, "pct_layoff": 0.0104, "pct_medios": 0.3384, "pct_switch": 0.0022, "pct_through": 0.0013, "pct_verticales": 0.4896, "pelotazos_espalda": 0.0937, "press_final": 2.5279, "press_media": 1.7523, "prog_x": 23.2677, "start_x": 44.7704, "starts_from_dispossess": 0.039, "takeons_ok": 0.0418, "tempo": 0.3397, "transition_speed": 2.9025, "verticalidad_media": 0.357}, "Mantova": {"atk_l": 41.8744, "atk_w": 32.676, "ball_distance": 156.5213, "behind_line_ok": 0.0492, "broke_last_line": 0.0205, "broke_second_last": 0.1826, "cross_pvadded_max": 0.0007, "dang_runs": 0.2088, "deep_completions": 0.4006, "def_h": 31.2573, "dribbles_box": 0.0109, "dribbles_last_third": 0.0564, "duration_s": 21.675, "hold_max": 10.8582, "hold_mean": 6.3505, "hold_min": 3.9714, "line_breaks": 0.8084, "max_x": 67.6199, "n_centros": 0.1254, "n_events": 5.4611, "n_involved": 1.9893, "n_passes": 3.6037, "opt_quality_mean": 0.0627, "paredes": 0.2842, "pass_options_mean": 8.4651, "passes_behind_line": 0.1105, "pct_adentro": 0.4992, "pct_afuera": 0.4154, "pct_cortos": 0.4117, "pct_headpass": 0.0345, "pct_largos": 0.1842, "pct_launch": 0.0801, "pct_layoff": 0.0104, "pct_medios": 0.3194, "pct_switch": 0.0039, "pct_through": 0.0016, "pct_verticales": 0.4785, "pelotazos_espalda": 0.0746, "press_final": 2.5339, "press_media": 1.78, "prog_x": 23.9596, "start_x": 44.815, "starts_from_dispossess": 0.0407, "takeons_ok": 0.0466, "tempo": 0.3676, "transition_speed": 3.0438, "verticalidad_media": 0.3353}, "Modena": {"atk_l": 40.3546, "atk_w": 32.1921, "ball_distance": 109.5311, "behind_line_ok": 0.0551, "broke_last_line": 0.025, "broke_second_last": 0.1617, "cross_pvadded_max": 0.0014, "dang_runs": 0.1232, "deep_completions": 0.384, "def_h": 29.3287, "dribbles_box": 0.0097, "dribbles_last_third": 0.0596, "duration_s": 32.1974, "hold_max": 10.9903, "hold_mean": 6.3538, "hold_min": 3.9964, "line_breaks": 0.5089, "max_x": 71.523, "n_centros": 0.1655, "n_events": 5.8519, "n_involved": 1.7508, "n_passes": 3.027, "opt_quality_mean": 0.1577, "paredes": 0.2154, "pass_options_mean": 8.353, "passes_behind_line": 0.1232, "pct_adentro": 0.5227, "pct_afuera": 0.3874, "pct_cortos": 0.3454, "pct_headpass": 0.0571, "pct_largos": 0.2204, "pct_launch": 0.0997, "pct_layoff": 0.0088, "pct_medios": 0.3458, "pct_switch": 0.0042, "pct_through": 0.0022, "pct_verticales": 0.4822, "pelotazos_espalda": 0.0898, "press_final": 2.3957, "press_media": 1.738, "prog_x": 26.5702, "start_x": 46.2561, "starts_from_dispossess": 0.0449, "takeons_ok": 0.0411, "tempo": 0.3458, "transition_speed": 3.4144, "verticalidad_media": 0.3382}, "Monza": {"atk_l": 41.8855, "atk_w": 31.7992, "ball_distance": 132.8778, "behind_line_ok": 0.0553, "broke_last_line": 0.0303, "broke_second_last": 0.1805, "cross_pvadded_max": 0.0016, "dang_runs": 0.1613, "deep_completions": 0.4051, "def_h": 31.1545, "dribbles_box": 0.0101, "dribbles_last_third": 0.0583, "duration_s": 28.7408, "hold_max": 10.3525, "hold_mean": 6.0118, "hold_min": 3.5437, "line_breaks": 0.6258, "max_x": 68.6799, "n_centros": 0.1412, "n_events": 5.8381, "n_involved": 1.9291, "n_passes": 3.3288, "opt_quality_mean": 0.0874, "paredes": 0.2892, "pass_options_mean": 8.7151, "passes_behind_line": 0.1283, "pct_adentro": 0.5045, "pct_afuera": 0.4096, "pct_cortos": 0.4149, "pct_headpass": 0.0506, "pct_largos": 0.1963, "pct_launch": 0.087, "pct_layoff": 0.0104, "pct_medios": 0.3038, "pct_switch": 0.003, "pct_through": 0.0017, "pct_verticales": 0.4802, "pelotazos_espalda": 0.0904, "press_final": 2.6855, "press_media": 1.9035, "prog_x": 24.3675, "start_x": 45.4549, "starts_from_dispossess": 0.0428, "takeons_ok": 0.0433, "tempo": 0.3715, "transition_speed": 3.221, "verticalidad_media": 0.3312}, "Padova": {"atk_l": 41.5101, "atk_w": 32.7422, "ball_distance": 131.2419, "behind_line_ok": 0.047, "broke_last_line": 0.0227, "broke_second_last": 0.1599, "cross_pvadded_max": 0.0008, "dang_runs": 0.174, "deep_completions": 0.292, "def_h": 32.6265, "dribbles_box": 0.0066, "dribbles_last_third": 0.0396, "duration_s": 23.6531, "hold_max": 10.5553, "hold_mean": 6.23, "hold_min": 3.8064, "line_breaks": 0.6091, "max_x": 66.3223, "n_centros": 0.1178, "n_events": 5.2784, "n_involved": 1.9495, "n_passes": 3.1305, "opt_quality_mean": -0.0077, "paredes": 0.2233, "pass_options_mean": 8.732, "passes_behind_line": 0.1223, "pct_adentro": 0.5095, "pct_afuera": 0.4162, "pct_cortos": 0.3997, "pct_headpass": 0.0458, "pct_largos": 0.2157, "pct_launch": 0.1198, "pct_layoff": 0.0103, "pct_medios": 0.3109, "pct_switch": 0.0052, "pct_through": 0.0024, "pct_verticales": 0.5093, "pelotazos_espalda": 0.0859, "press_final": 2.373, "press_media": 1.7376, "prog_x": 24.9333, "start_x": 42.3451, "starts_from_dispossess": 0.0405, "takeons_ok": 0.0362, "tempo": 0.3861, "transition_speed": 3.6808, "verticalidad_media": 0.3698}, "Palermo": {"atk_l": 40.5214, "atk_w": 31.644, "ball_distance": 107.8593, "behind_line_ok": 0.0411, "broke_last_line": 0.0236, "broke_second_last": 0.1443, "cross_pvadded_max": 0.0021, "dang_runs": 0.139, "deep_completions": 0.3437, "def_h": 29.605, "dribbles_box": 0.0112, "dribbles_last_third": 0.053, "duration_s": 34.2397, "hold_max": 11.1213, "hold_mean": 6.624, "hold_min": 4.1162, "line_breaks": 0.4875, "max_x": 69.9241, "n_centros": 0.1565, "n_events": 6.1475, "n_involved": 1.8305, "n_passes": 2.9769, "opt_quality_mean": 0.0927, "paredes": 0.2559, "pass_options_mean": 8.5093, "passes_behind_line": 0.1013, "pct_adentro": 0.5213, "pct_afuera": 0.3827, "pct_cortos": 0.3764, "pct_headpass": 0.0607, "pct_largos": 0.2047, "pct_launch": 0.1107, "pct_layoff": 0.0094, "pct_medios": 0.3244, "pct_switch": 0.003, "pct_through": 0.0024, "pct_verticales": 0.492, "pelotazos_espalda": 0.0773, "press_final": 2.5566, "press_media": 1.8236, "prog_x": 24.6914, "start_x": 46.7575, "starts_from_dispossess": 0.0379, "takeons_ok": 0.033, "tempo": 0.3767, "transition_speed": 3.4639, "verticalidad_media": 0.3765}, "Pescara": {"atk_l": 42.1266, "atk_w": 34.0951, "ball_distance": 119.1145, "behind_line_ok": 0.0466, "broke_last_line": 0.0202, "broke_second_last": 0.1713, "cross_pvadded_max": 0.0008, "dang_runs": 0.1334, "deep_completions": 0.2886, "def_h": 31.6196, "dribbles_box": 0.0107, "dribbles_last_third": 0.0624, "duration_s": 24.7975, "hold_max": 10.6997, "hold_mean": 6.0826, "hold_min": 3.4596, "line_breaks": 0.5988, "max_x": 67.2074, "n_centros": 0.1112, "n_events": 5.3628, "n_involved": 1.8647, "n_passes": 3.0138, "opt_quality_mean": 0.0014, "paredes": 0.2279, "pass_options_mean": 8.6685, "passes_behind_line": 0.1177, "pct_adentro": 0.5123, "pct_afuera": 0.3969, "pct_cortos": 0.3828, "pct_headpass": 0.0427, "pct_largos": 0.2013, "pct_launch": 0.0916, "pct_layoff": 0.0098, "pct_medios": 0.3265, "pct_switch": 0.0057, "pct_through": 0.0019, "pct_verticales": 0.4764, "pelotazos_espalda": 0.0886, "press_final": 2.3386, "press_media": 1.6796, "prog_x": 24.7413, "start_x": 43.6449, "starts_from_dispossess": 0.038, "takeons_ok": 0.046, "tempo": 0.3731, "transition_speed": 3.5012, "verticalidad_media": 0.3445}, "Reggiana": {"atk_l": 41.5123, "atk_w": 32.4373, "ball_distance": 106.7456, "behind_line_ok": 0.0402, "broke_last_line": 0.0176, "broke_second_last": 0.1328, "cross_pvadded_max": 0.0012, "dang_runs": 0.1425, "deep_completions": 0.2566, "def_h": 32.7429, "dribbles_box": 0.0066, "dribbles_last_third": 0.049, "duration_s": 30.5409, "hold_max": 11.0196, "hold_mean": 7.057, "hold_min": 4.9155, "line_breaks": 0.4156, "max_x": 66.2855, "n_centros": 0.1175, "n_events": 5.5454, "n_involved": 1.7542, "n_passes": 2.6937, "opt_quality_mean": -0.0044, "paredes": 0.1886, "pass_options_mean": 8.419, "passes_behind_line": 0.1181, "pct_adentro": 0.4968, "pct_afuera": 0.3982, "pct_cortos": 0.3772, "pct_headpass": 0.0483, "pct_largos": 0.2274, "pct_launch": 0.1143, "pct_layoff": 0.0071, "pct_medios": 0.2917, "pct_switch": 0.0043, "pct_through": 0.0015, "pct_verticales": 0.5261, "pelotazos_espalda": 0.0929, "press_final": 2.5022, "press_media": 1.6941, "prog_x": 25.5588, "start_x": 41.8907, "starts_from_dispossess": 0.0466, "takeons_ok": 0.0456, "tempo": 0.3337, "transition_speed": 3.3922, "verticalidad_media": 0.4151}, "Sampdoria": {"atk_l": 41.7984, "atk_w": 32.5961, "ball_distance": 122.9843, "behind_line_ok": 0.052, "broke_last_line": 0.0266, "broke_second_last": 0.1517, "cross_pvadded_max": 0.0009, "dang_runs": 0.1677, "deep_completions": 0.3211, "def_h": 30.4761, "dribbles_box": 0.0115, "dribbles_last_third": 0.0522, "duration_s": 31.9413, "hold_max": 11.1135, "hold_mean": 6.7796, "hold_min": 4.3827, "line_breaks": 0.5945, "max_x": 68.2634, "n_centros": 0.1424, "n_events": 5.936, "n_involved": 1.901, "n_passes": 3.0211, "opt_quality_mean": 0.0636, "paredes": 0.2044, "pass_options_mean": 8.5556, "passes_behind_line": 0.1205, "pct_adentro": 0.5052, "pct_afuera": 0.4018, "pct_cortos": 0.3768, "pct_headpass": 0.0552, "pct_largos": 0.208, "pct_launch": 0.0967, "pct_layoff": 0.0087, "pct_medios": 0.323, "pct_switch": 0.0036, "pct_through": 0.0014, "pct_verticales": 0.4857, "pelotazos_espalda": 0.0814, "press_final": 2.4452, "press_media": 1.7198, "prog_x": 23.4513, "start_x": 45.9134, "starts_from_dispossess": 0.0355, "takeons_ok": 0.0429, "tempo": 0.3602, "transition_speed": 3.3148, "verticalidad_media": 0.353}, "Spezia": {"atk_l": 39.3776, "atk_w": 32.0316, "ball_distance": 106.3643, "behind_line_ok": 0.044, "broke_last_line": 0.0147, "broke_second_last": 0.1479, "cross_pvadded_max": 0.0017, "dang_runs": 0.1193, "deep_completions": 0.2864, "def_h": 29.9502, "dribbles_box": 0.0085, "dribbles_last_third": 0.0411, "duration_s": 31.4207, "hold_max": 10.9789, "hold_mean": 6.63, "hold_min": 4.2161, "line_breaks": 0.4484, "max_x": 68.9213, "n_centros": 0.1501, "n_events": 5.8172, "n_involved": 1.8142, "n_passes": 2.885, "opt_quality_mean": 0.0792, "paredes": 0.2032, "pass_options_mean": 8.7619, "passes_behind_line": 0.1202, "pct_adentro": 0.5237, "pct_afuera": 0.3895, "pct_cortos": 0.3717, "pct_headpass": 0.0621, "pct_largos": 0.2278, "pct_launch": 0.107, "pct_layoff": 0.0099, "pct_medios": 0.3151, "pct_switch": 0.0046, "pct_through": 0.0017, "pct_verticales": 0.503, "pelotazos_espalda": 0.0905, "press_final": 2.506, "press_media": 1.8148, "prog_x": 24.6126, "start_x": 45.3839, "starts_from_dispossess": 0.0345, "takeons_ok": 0.0378, "tempo": 0.3735, "transition_speed": 3.5612, "verticalidad_media": 0.3743}, "Südtirol": {"atk_l": 35.4898, "atk_w": 31.4762, "ball_distance": 52.3702, "behind_line_ok": 0.0417, "broke_last_line": 0.0155, "broke_second_last": 0.1423, "cross_pvadded_max": 0.0014, "dang_runs": 0.0753, "deep_completions": 0.3741, "def_h": 27.5422, "dribbles_box": 0.0138, "dribbles_last_third": 0.051, "duration_s": 23.4564, "hold_max": 9.9112, "hold_mean": 6.6669, "hold_min": 4.6339, "line_breaks": 0.2668, "max_x": 72.0159, "n_centros": 0.1344, "n_events": 4.6512, "n_involved": 1.601, "n_passes": 2.1222, "opt_quality_mean": 0.1096, "paredes": 0.108, "pass_options_mean": 8.1474, "passes_behind_line": 0.1204, "pct_adentro": 0.5187, "pct_afuera": 0.4037, "pct_cortos": 0.3436, "pct_headpass": 0.074, "pct_largos": 0.2617, "pct_launch": 0.1458, "pct_layoff": 0.0083, "pct_medios": 0.3177, "pct_switch": 0.0021, "pct_through": 0.0009, "pct_verticales": 0.5833, "pelotazos_espalda": 0.0923, "press_final": 2.6185, "press_media": 1.8805, "prog_x": 25.3643, "start_x": 47.6568, "starts_from_dispossess": 0.0313, "takeons_ok": 0.0328, "tempo": 0.3622, "transition_speed": 4.1792, "verticalidad_media": 0.4728}, "Venezia": {"atk_l": 42.5077, "atk_w": 31.8855, "ball_distance": 162.1904, "behind_line_ok": 0.0566, "broke_last_line": 0.0263, "broke_second_last": 0.1962, "cross_pvadded_max": 0.0013, "dang_runs": 0.1996, "deep_completions": 0.4639, "def_h": 31.013, "dribbles_box": 0.0159, "dribbles_last_third": 0.0872, "duration_s": 33.1902, "hold_max": 10.7523, "hold_mean": 5.8574, "hold_min": 3.2747, "line_breaks": 0.7984, "max_x": 68.2657, "n_centros": 0.1091, "n_events": 6.7231, "n_involved": 1.9139, "n_passes": 3.9018, "opt_quality_mean": 0.1186, "paredes": 0.4255, "pass_options_mean": 8.973, "passes_behind_line": 0.1137, "pct_adentro": 0.5041, "pct_afuera": 0.3865, "pct_cortos": 0.4421, "pct_headpass": 0.0439, "pct_largos": 0.1455, "pct_launch": 0.0727, "pct_layoff": 0.013, "pct_medios": 0.3046, "pct_switch": 0.003, "pct_through": 0.0035, "pct_verticales": 0.443, "pelotazos_espalda": 0.0701, "press_final": 2.7175, "press_media": 1.9472, "prog_x": 23.9715, "start_x": 45.8872, "starts_from_dispossess": 0.0393, "takeons_ok": 0.061, "tempo": 0.3713, "transition_speed": 2.8813, "verticalidad_media": 0.2955}, "Virtus Entella": {"atk_l": 41.1107, "atk_w": 32.0962, "ball_distance": 101.9338, "behind_line_ok": 0.0405, "broke_last_line": 0.0204, "broke_second_last": 0.1388, "cross_pvadded_max": 0.0018, "dang_runs": 0.1678, "deep_completions": 0.3162, "def_h": 30.7763, "dribbles_box": 0.0076, "dribbles_last_third": 0.0478, "duration_s": 27.7693, "hold_max": 10.9225, "hold_mean": 6.6835, "hold_min": 4.2093, "line_breaks": 0.4669, "max_x": 68.247, "n_centros": 0.1496, "n_events": 5.4281, "n_involved": 1.7816, "n_passes": 2.7563, "opt_quality_mean": 0.0355, "paredes": 0.2119, "pass_options_mean": 8.5169, "passes_behind_line": 0.1136, "pct_adentro": 0.5113, "pct_afuera": 0.3943, "pct_cortos": 0.3679, "pct_headpass": 0.0507, "pct_largos": 0.2253, "pct_launch": 0.1056, "pct_layoff": 0.0077, "pct_medios": 0.3132, "pct_switch": 0.005, "pct_through": 0.0017, "pct_verticales": 0.5191, "pelotazos_espalda": 0.088, "press_final": 2.4265, "press_media": 1.7248, "prog_x": 24.7182, "start_x": 44.7381, "starts_from_dispossess": 0.0369, "takeons_ok": 0.0388, "tempo": 0.3673, "transition_speed": 3.5321, "verticalidad_media": 0.3984}}, "team_eje_norm_gen": {"Avellino": {"eje_verticalidad": -0.038, "eje_elaboracion": 0.027, "eje_individual": -0.0063, "eje_rotura_lineas": 0.0062, "eje_amplitud_centro": 0.0047, "eje_profundidad_espalda": 0.0174, "eje_robo_alto": -0.0412, "eje_aereo_segunda": 0.0134}, "Bari": {"eje_verticalidad": 0.0067, "eje_elaboracion": 0.0078, "eje_individual": -0.0111, "eje_rotura_lineas": -0.0046, "eje_amplitud_centro": 0.0058, "eje_profundidad_espalda": -0.023, "eje_robo_alto": -0.0578, "eje_aereo_segunda": 0.0345}, "Carrarese": {"eje_verticalidad": -0.0374, "eje_elaboracion": -0.0014, "eje_individual": 0.0124, "eje_rotura_lineas": 0.0021, "eje_amplitud_centro": 0.0311, "eje_profundidad_espalda": -0.0019, "eje_robo_alto": -0.0247, "eje_aereo_segunda": -0.0136}, "Catanzaro": {"eje_verticalidad": -0.1133, "eje_elaboracion": 0.0905, "eje_individual": 0.0138, "eje_rotura_lineas": 0.038, "eje_amplitud_centro": -0.0179, "eje_profundidad_espalda": -0.0032, "eje_robo_alto": -0.0381, "eje_aereo_segunda": -0.0228}, "Cesena": {"eje_verticalidad": -0.085, "eje_elaboracion": 0.1024, "eje_individual": 0.0203, "eje_rotura_lineas": 0.0571, "eje_amplitud_centro": 0.0159, "eje_profundidad_espalda": 0.0424, "eje_robo_alto": -0.012, "eje_aereo_segunda": -0.0285}, "Empoli": {"eje_verticalidad": -0.0262, "eje_elaboracion": -0.0502, "eje_individual": -0.0043, "eje_rotura_lineas": -0.0234, "eje_amplitud_centro": 0.0061, "eje_profundidad_espalda": -0.0209, "eje_robo_alto": 0.0032, "eje_aereo_segunda": -0.0002}, "Frosinone": {"eje_verticalidad": 0.0274, "eje_elaboracion": -0.0784, "eje_individual": 0.0372, "eje_rotura_lineas": -0.0086, "eje_amplitud_centro": 0.0066, "eje_profundidad_espalda": 0.0161, "eje_robo_alto": 0.0364, "eje_aereo_segunda": -0.0468}, "Juve Stabia": {"eje_verticalidad": -0.0616, "eje_elaboracion": 0.0571, "eje_individual": -0.0052, "eje_rotura_lineas": -0.0027, "eje_amplitud_centro": -0.0436, "eje_profundidad_espalda": -0.0173, "eje_robo_alto": -0.001, "eje_aereo_segunda": 0.004}, "Mantova": {"eje_verticalidad": -0.0822, "eje_elaboracion": 0.0616, "eje_individual": 0.019, "eje_rotura_lineas": 0.0352, "eje_amplitud_centro": 0.0064, "eje_profundidad_espalda": 0.0077, "eje_robo_alto": 0.0042, "eje_aereo_segunda": -0.0549}, "Modena": {"eje_verticalidad": -0.0382, "eje_elaboracion": -0.0397, "eje_individual": -0.0086, "eje_rotura_lineas": 0.0012, "eje_amplitud_centro": 0.0212, "eje_profundidad_espalda": 0.0318, "eje_robo_alto": 0.0419, "eje_aereo_segunda": 0.0053}, "Monza": {"eje_verticalidad": -0.0671, "eje_elaboracion": 0.0518, "eje_individual": 0.0033, "eje_rotura_lineas": 0.0315, "eje_amplitud_centro": 0.0093, "eje_profundidad_espalda": 0.043, "eje_robo_alto": 0.0216, "eje_aereo_segunda": -0.0138}, "Padova": {"eje_verticalidad": 0.0083, "eje_elaboracion": -0.0, "eje_individual": -0.0289, "eje_rotura_lineas": 0.0084, "eje_amplitud_centro": 0.0099, "eje_profundidad_espalda": -0.0111, "eje_robo_alto": -0.042, "eje_aereo_segunda": 0.0163}, "Palermo": {"eje_verticalidad": -0.0217, "eje_elaboracion": -0.0061, "eje_individual": -0.017, "eje_rotura_lineas": -0.0135, "eje_amplitud_centro": -0.0002, "eje_profundidad_espalda": -0.0242, "eje_robo_alto": 0.0332, "eje_aereo_segunda": 0.0292}, "Pescara": {"eje_verticalidad": -0.0514, "eje_elaboracion": -0.0167, "eje_individual": 0.0047, "eje_rotura_lineas": 0.0067, "eje_amplitud_centro": -0.0106, "eje_profundidad_espalda": -0.0137, "eje_robo_alto": -0.0243, "eje_aereo_segunda": -0.0279}, "Reggiana": {"eje_verticalidad": 0.0299, "eje_elaboracion": -0.0528, "eje_individual": -0.0165, "eje_rotura_lineas": -0.0452, "eje_amplitud_centro": -0.0135, "eje_profundidad_espalda": -0.027, "eje_robo_alto": -0.0347, "eje_aereo_segunda": -0.0044}, "Sampdoria": {"eje_verticalidad": -0.0421, "eje_elaboracion": -0.0236, "eje_individual": 0.0015, "eje_rotura_lineas": 0.0008, "eje_amplitud_centro": 0.0079, "eje_profundidad_espalda": -0.0014, "eje_robo_alto": 0.0114, "eje_aereo_segunda": -0.0033}, "Spezia": {"eje_verticalidad": 0.0072, "eje_elaboracion": -0.0372, "eje_individual": -0.035, "eje_rotura_lineas": -0.035, "eje_amplitud_centro": 0.0112, "eje_profundidad_espalda": -0.0137, "eje_robo_alto": -0.0011, "eje_aereo_segunda": 0.0308}, "Südtirol": {"eje_verticalidad": 0.166, "eje_elaboracion": -0.1495, "eje_individual": -0.0292, "eje_rotura_lineas": -0.0629, "eje_amplitud_centro": -0.0094, "eje_profundidad_espalda": 0.0136, "eje_robo_alto": 0.0327, "eje_aereo_segunda": 0.0929}, "Venezia": {"eje_verticalidad": -0.1686, "eje_elaboracion": 0.1631, "eje_individual": 0.0763, "eje_rotura_lineas": 0.0651, "eje_amplitud_centro": -0.0424, "eje_profundidad_espalda": 0.0347, "eje_robo_alto": 0.0206, "eje_aereo_segunda": -0.0297}, "Virtus Entella": {"eje_verticalidad": 0.0243, "eje_elaboracion": -0.048, "eje_individual": -0.0169, "eje_rotura_lineas": -0.0293, "eje_amplitud_centro": 0.0187, "eje_profundidad_espalda": -0.0152, "eje_robo_alto": -0.0068, "eje_aereo_segunda": -0.0069}}, "team_eje_norm_con": {"Avellino": {"eje_verticalidad": -0.0627, "eje_elaboracion": 0.0222, "eje_individual": 0.0381, "eje_rotura_lineas": -0.0215, "eje_amplitud_centro": 0.0087, "eje_profundidad_espalda": -0.0019, "eje_robo_alto": 0.042, "eje_aereo_segunda": -0.0169}, "Bari": {"eje_verticalidad": -0.0794, "eje_elaboracion": 0.0227, "eje_individual": 0.0264, "eje_rotura_lineas": 0.0218, "eje_amplitud_centro": 0.0163, "eje_profundidad_espalda": 0.0306, "eje_robo_alto": 0.0534, "eje_aereo_segunda": -0.0341}, "Carrarese": {"eje_verticalidad": -0.0049, "eje_elaboracion": 0.0067, "eje_individual": 0.0173, "eje_rotura_lineas": 0.0123, "eje_amplitud_centro": -0.0008, "eje_profundidad_espalda": 0.002, "eje_robo_alto": -0.0206, "eje_aereo_segunda": 0.0042}, "Catanzaro": {"eje_verticalidad": -0.0465, "eje_elaboracion": -0.0046, "eje_individual": 0.0138, "eje_rotura_lineas": -0.0033, "eje_amplitud_centro": 0.029, "eje_profundidad_espalda": 0.0103, "eje_robo_alto": 0.0434, "eje_aereo_segunda": -0.0443}, "Cesena": {"eje_verticalidad": -0.0918, "eje_elaboracion": 0.0828, "eje_individual": 0.0126, "eje_rotura_lineas": 0.0003, "eje_amplitud_centro": -0.0007, "eje_profundidad_espalda": 0.0149, "eje_robo_alto": 0.0169, "eje_aereo_segunda": -0.0259}, "Empoli": {"eje_verticalidad": -0.0362, "eje_elaboracion": 0.0135, "eje_individual": 0.0052, "eje_rotura_lineas": 0.026, "eje_amplitud_centro": -0.0012, "eje_profundidad_espalda": 0.0264, "eje_robo_alto": 0.0028, "eje_aereo_segunda": 0.0065}, "Frosinone": {"eje_verticalidad": 0.0358, "eje_elaboracion": -0.0614, "eje_individual": -0.0207, "eje_rotura_lineas": -0.0096, "eje_amplitud_centro": -0.0054, "eje_profundidad_espalda": -0.0081, "eje_robo_alto": -0.0644, "eje_aereo_segunda": 0.0159}, "Juve Stabia": {"eje_verticalidad": -0.0253, "eje_elaboracion": -0.0002, "eje_individual": -0.0116, "eje_rotura_lineas": -0.0132, "eje_amplitud_centro": 0.0125, "eje_profundidad_espalda": -0.0209, "eje_robo_alto": -0.0008, "eje_aereo_segunda": 0.0216}, "Mantova": {"eje_verticalidad": 0.0132, "eje_elaboracion": -0.0352, "eje_individual": -0.012, "eje_rotura_lineas": -0.0071, "eje_amplitud_centro": -0.006, "eje_profundidad_espalda": -0.0074, "eje_robo_alto": -0.0219, "eje_aereo_segunda": 0.0225}, "Modena": {"eje_verticalidad": 0.0012, "eje_elaboracion": 0.003, "eje_individual": 0.0018, "eje_rotura_lineas": 0.0051, "eje_amplitud_centro": -0.005, "eje_profundidad_espalda": 0.0107, "eje_robo_alto": -0.0579, "eje_aereo_segunda": 0.0078}, "Monza": {"eje_verticalidad": -0.0458, "eje_elaboracion": 0.0338, "eje_individual": -0.0094, "eje_rotura_lineas": 0.0049, "eje_amplitud_centro": 0.0028, "eje_profundidad_espalda": -0.0308, "eje_robo_alto": -0.0234, "eje_aereo_segunda": -0.0256}, "Padova": {"eje_verticalidad": -0.0869, "eje_elaboracion": 0.039, "eje_individual": 0.0174, "eje_rotura_lineas": 0.0102, "eje_amplitud_centro": -0.0011, "eje_profundidad_espalda": -0.0054, "eje_robo_alto": 0.0652, "eje_aereo_segunda": 0.0027}, "Palermo": {"eje_verticalidad": -0.0234, "eje_elaboracion": -0.0011, "eje_individual": -0.0239, "eje_rotura_lineas": -0.0048, "eje_amplitud_centro": -0.0039, "eje_profundidad_espalda": 0.0009, "eje_robo_alto": -0.0386, "eje_aereo_segunda": 0.0068}, "Pescara": {"eje_verticalidad": -0.0073, "eje_elaboracion": -0.0186, "eje_individual": 0.0118, "eje_rotura_lineas": -0.0074, "eje_amplitud_centro": -0.0066, "eje_profundidad_espalda": -0.0196, "eje_robo_alto": 0.0085, "eje_aereo_segunda": 0.0042}, "Reggiana": {"eje_verticalidad": -0.1183, "eje_elaboracion": 0.078, "eje_individual": 0.0311, "eje_rotura_lineas": 0.0513, "eje_amplitud_centro": -0.0011, "eje_profundidad_espalda": 0.0331, "eje_robo_alto": 0.0625, "eje_aereo_segunda": -0.0268}, "Sampdoria": {"eje_verticalidad": -0.0306, "eje_elaboracion": -0.0125, "eje_individual": -0.0043, "eje_rotura_lineas": -0.015, "eje_amplitud_centro": -0.0165, "eje_profundidad_espalda": -0.0325, "eje_robo_alto": -0.0073, "eje_aereo_segunda": 0.011}, "Spezia": {"eje_verticalidad": -0.0338, "eje_elaboracion": 0.0162, "eje_individual": 0.0038, "eje_rotura_lineas": 0.0063, "eje_amplitud_centro": 0.0145, "eje_profundidad_espalda": 0.026, "eje_robo_alto": -0.0019, "eje_aereo_segunda": -0.0135}, "Südtirol": {"eje_verticalidad": 0.0405, "eje_elaboracion": -0.0049, "eje_individual": -0.0335, "eje_rotura_lineas": 0.0007, "eje_amplitud_centro": -0.0111, "eje_profundidad_espalda": 0.0064, "eje_robo_alto": -0.0881, "eje_aereo_segunda": 0.0602}, "Venezia": {"eje_verticalidad": 0.0645, "eje_elaboracion": -0.1134, "eje_individual": -0.0425, "eje_rotura_lineas": -0.0219, "eje_amplitud_centro": -0.0005, "eje_profundidad_espalda": -0.0076, "eje_robo_alto": -0.0265, "eje_aereo_segunda": -0.0037}, "Virtus Entella": {"eje_verticalidad": -0.0281, "eje_elaboracion": 0.0007, "eje_individual": -0.0125, "eje_rotura_lineas": -0.0035, "eje_amplitud_centro": -0.0163, "eje_profundidad_espalda": 0.0105, "eje_robo_alto": -0.023, "eje_aereo_segunda": 0.0107}}} \ No newline at end of file diff --git a/vendor/data/ejes/italian-serie-b/25-26/team_profiles.parquet b/vendor/data/ejes/italian-serie-b/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..ebede18ac650cb3aad7de323d28562af2a14686a --- /dev/null +++ b/vendor/data/ejes/italian-serie-b/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:232a1e91d08617c2cc3d97cc97c6e68303bc7b3ee376d2608f8da6d79d4b4d1f +size 9911 diff --git a/vendor/data/ejes/liga-profesional-argentina/26/ejes_definition.json b/vendor/data/ejes/liga-profesional-argentina/26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/liga-profesional-argentina/26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/liga-profesional-argentina/26/match_team_ejes.parquet b/vendor/data/ejes/liga-profesional-argentina/26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..a83e539175f89a0f6956305d618c91b9a158f3a4 --- /dev/null +++ b/vendor/data/ejes/liga-profesional-argentina/26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e48dcde2fb34e0056647ff06293f6a024880b176fc3b81281caf491b770fe5c +size 63133 diff --git a/vendor/data/ejes/liga-profesional-argentina/26/match_team_vars.parquet b/vendor/data/ejes/liga-profesional-argentina/26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..ecabf77c886ff3956df7d554113ffc5f5728750a --- /dev/null +++ b/vendor/data/ejes/liga-profesional-argentina/26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556bb5a5d1ea629a58987b1e9309d59e1a5592227f85a5fd7c09ef45694a8d70 +size 231955 diff --git a/vendor/data/ejes/liga-profesional-argentina/26/predictor.json b/vendor/data/ejes/liga-profesional-argentina/26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..51b46cd2c9209f0a7bd7a3c7bb87f6ee649ef065 --- /dev/null +++ b/vendor/data/ejes/liga-profesional-argentina/26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.9183, "con": 0.6415, "intercept": 0.0156}, "elaboracion": {"gen": 0.0239, "con": -0.0221, "intercept": 0.1404}, "individual": {"gen": -0.0229, "con": -0.0193, "intercept": 0.1024}, "rotura_lineas": {"gen": 0.7933, "con": 0.3992, "intercept": -0.0001}, "amplitud_centro": {"gen": -0.0637, "con": -0.0302, "intercept": 0.0607}, "profundidad_espalda": {"gen": -0.0345, "con": 0.0136, "intercept": 0.0472}, "robo_alto": {"gen": 0.4724, "con": 0.2339, "intercept": -0.002}, "aereo_segunda": {"gen": 0.7611, "con": 0.5585, "intercept": 0.0002}} \ No newline at end of file diff --git a/vendor/data/ejes/liga-profesional-argentina/26/scales.json b/vendor/data/ejes/liga-profesional-argentina/26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..d7821a25a253ec2a976508c2889bc13bc51277ff --- /dev/null +++ b/vendor/data/ejes/liga-profesional-argentina/26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 2.173, "atk_w": 1.3546, "ball_distance": 52.2445, "behind_line_ok": 0.025, "broke_last_line": 0.0157, "broke_second_last": 0.0404, "cross_pvadded_max": 0.0118, "dang_runs": 0.083, "deep_completions": 2.7873, "def_h": 2.606, "dribbles_box": 0.258, "dribbles_last_third": 0.6435, "duration_s": 246.0889, "hold_max": 3.3223, "hold_mean": 1.1834, "hold_min": 1.1472, "line_breaks": 0.2469, "max_x": 3.6539, "n_centros": 1.2873, "n_events": 65.5608, "n_involved": 0.1727, "n_passes": 31.9675, "opt_quality_mean": 0.1094, "paredes": 2.4425, "pass_options_mean": 1.7248, "passes_behind_line": 0.0443, "pct_adentro": 0.0372, "pct_afuera": 0.0362, "pct_cortos": 0.0457, "pct_headpass": 0.0148, "pct_largos": 0.0487, "pct_launch": 0.0399, "pct_layoff": 0.0049, "pct_medios": 0.0414, "pct_switch": 0.0047, "pct_through": 0.0029, "pct_verticales": 0.0572, "pelotazos_espalda": 0.0367, "press_final": 0.5646, "press_media": 0.3749, "prog_x": 4.0401, "start_x": 4.6914, "starts_from_dispossess": 0.0165, "takeons_ok": 0.9023, "tempo": 0.0375, "transition_speed": 0.7204, "verticalidad_media": 0.0705}, "eje_sigma": {"eje_verticalidad": 0.1138, "eje_elaboracion": 3.0665, "eje_individual": 2.1595, "eje_rotura_lineas": 0.0652, "eje_amplitud_centro": 1.2229, "eje_profundidad_espalda": 1.0053, "eje_robo_alto": 0.1039, "eje_aereo_segunda": 0.0668}, "eje_match_mean": {"eje_verticalidad": -0.0279, "eje_elaboracion": 0.1407, "eje_individual": 0.0983, "eje_rotura_lineas": 0.0006, "eje_amplitud_centro": 0.0555, "eje_profundidad_espalda": 0.0462, "eje_robo_alto": -0.0067, "eje_aereo_segunda": -0.0005}, "eje_match_std": {"eje_verticalidad": 0.1404, "eje_elaboracion": 3.1634, "eje_individual": 2.2244, "eje_rotura_lineas": 0.074, "eje_amplitud_centro": 1.2582, "eje_profundidad_espalda": 1.0351, "eje_robo_alto": 0.11, "eje_aereo_segunda": 0.0742}, "team_var_norm": {"Aldosivi": {"atk_l": 37.1324, "atk_w": 33.6816, "ball_distance": 81.1415, "behind_line_ok": 0.0345, "broke_last_line": 0.0152, "broke_second_last": 0.1438, "cross_pvadded_max": 0.0015, "dang_runs": 0.0687, "deep_completions": 0.2043, "def_h": 30.0759, "dribbles_box": 0.0081, "dribbles_last_third": 0.0477, "duration_s": 31.5353, "hold_max": 10.2954, "hold_mean": 6.2793, "hold_min": 4.0846, "line_breaks": 0.4602, "max_x": 68.307, "n_centros": 0.1359, "n_events": 5.6495, "n_involved": 1.7419, "n_passes": 2.3651, "opt_quality_mean": -0.033, "paredes": 0.1334, "pass_options_mean": 7.3031, "passes_behind_line": 0.0976, "pct_adentro": 0.5181, "pct_afuera": 0.3906, "pct_cortos": 0.3525, "pct_headpass": 0.0677, "pct_largos": 0.2367, "pct_launch": 0.1188, "pct_layoff": 0.0092, "pct_medios": 0.3206, "pct_switch": 0.0056, "pct_through": 0.0003, "pct_verticales": 0.5305, "pelotazos_espalda": 0.079, "press_final": 2.3581, "press_media": 1.749, "prog_x": 25.3828, "start_x": 44.2115, "starts_from_dispossess": 0.0517, "takeons_ok": 0.0497, "tempo": 0.3692, "transition_speed": 4.3066, "verticalidad_media": 0.423}, "Argentinos Juniors": {"atk_l": 41.9639, "atk_w": 34.8169, "ball_distance": 161.9837, "behind_line_ok": 0.0608, "broke_last_line": 0.0313, "broke_second_last": 0.1753, "cross_pvadded_max": 0.0018, "dang_runs": 0.1534, "deep_completions": 0.3256, "def_h": 30.4454, "dribbles_box": 0.0128, "dribbles_last_third": 0.0629, "duration_s": 22.9428, "hold_max": 9.6822, "hold_mean": 5.3749, "hold_min": 2.9416, "line_breaks": 0.7057, "max_x": 69.4192, "n_centros": 0.1413, "n_events": 5.509, "n_involved": 2.0157, "n_passes": 3.4438, "opt_quality_mean": -0.0186, "paredes": 0.3025, "pass_options_mean": 8.2121, "passes_behind_line": 0.1324, "pct_adentro": 0.5155, "pct_afuera": 0.3889, "pct_cortos": 0.3629, "pct_headpass": 0.0441, "pct_largos": 0.1866, "pct_launch": 0.083, "pct_layoff": 0.0078, "pct_medios": 0.3554, "pct_switch": 0.0051, "pct_through": 0.0026, "pct_verticales": 0.4451, "pelotazos_espalda": 0.0929, "press_final": 2.4507, "press_media": 1.8651, "prog_x": 24.7977, "start_x": 45.747, "starts_from_dispossess": 0.0347, "takeons_ok": 0.0489, "tempo": 0.3596, "transition_speed": 3.2882, "verticalidad_media": 0.3152}, "Atlético Tucumán": {"atk_l": 38.5519, "atk_w": 34.3989, "ball_distance": 82.7223, "behind_line_ok": 0.0528, "broke_last_line": 0.0276, "broke_second_last": 0.1299, "cross_pvadded_max": 0.0012, "dang_runs": 0.1223, "deep_completions": 0.2895, "def_h": 28.6267, "dribbles_box": 0.0111, "dribbles_last_third": 0.0583, "duration_s": 19.2907, "hold_max": 10.4104, "hold_mean": 6.5605, "hold_min": 4.3049, "line_breaks": 0.351, "max_x": 70.3508, "n_centros": 0.1292, "n_events": 4.414, "n_involved": 1.7192, "n_passes": 2.2946, "opt_quality_mean": -0.0216, "paredes": 0.1435, "pass_options_mean": 7.6935, "passes_behind_line": 0.1301, "pct_adentro": 0.5201, "pct_afuera": 0.3779, "pct_cortos": 0.3652, "pct_headpass": 0.0596, "pct_largos": 0.2484, "pct_launch": 0.1295, "pct_layoff": 0.0084, "pct_medios": 0.2874, "pct_switch": 0.0066, "pct_through": 0.002, "pct_verticales": 0.5524, "pelotazos_espalda": 0.0966, "press_final": 2.7156, "press_media": 1.9203, "prog_x": 26.428, "start_x": 45.2497, "starts_from_dispossess": 0.0497, "takeons_ok": 0.0436, "tempo": 0.3713, "transition_speed": 4.1008, "verticalidad_media": 0.447}, "Banfield": {"atk_l": 39.223, "atk_w": 34.9365, "ball_distance": 69.2806, "behind_line_ok": 0.0384, "broke_last_line": 0.0163, "broke_second_last": 0.1304, "cross_pvadded_max": 0.0011, "dang_runs": 0.0931, "deep_completions": 0.2466, "def_h": 30.3624, "dribbles_box": 0.0092, "dribbles_last_third": 0.053, "duration_s": 21.1752, "hold_max": 10.1228, "hold_mean": 6.7037, "hold_min": 4.6388, "line_breaks": 0.3637, "max_x": 68.5696, "n_centros": 0.1316, "n_events": 4.6303, "n_involved": 1.6713, "n_passes": 2.1621, "opt_quality_mean": -0.0631, "paredes": 0.0981, "pass_options_mean": 6.5867, "passes_behind_line": 0.101, "pct_adentro": 0.5142, "pct_afuera": 0.3809, "pct_cortos": 0.307, "pct_headpass": 0.0513, "pct_largos": 0.2534, "pct_launch": 0.1132, "pct_layoff": 0.0093, "pct_medios": 0.3362, "pct_switch": 0.0047, "pct_through": 0.0021, "pct_verticales": 0.5541, "pelotazos_espalda": 0.0786, "press_final": 2.4552, "press_media": 1.7078, "prog_x": 27.1997, "start_x": 42.7664, "starts_from_dispossess": 0.0501, "takeons_ok": 0.0514, "tempo": 0.3392, "transition_speed": 4.1641, "verticalidad_media": 0.4658}, "Barracas Central": {"atk_l": 36.5443, "atk_w": 33.7417, "ball_distance": 81.6876, "behind_line_ok": 0.0556, "broke_last_line": 0.0162, "broke_second_last": 0.1303, "cross_pvadded_max": 0.0006, "dang_runs": 0.0862, "deep_completions": 0.203, "def_h": 31.9501, "dribbles_box": 0.006, "dribbles_last_third": 0.0431, "duration_s": 28.7062, "hold_max": 12.2111, "hold_mean": 7.0513, "hold_min": 4.739, "line_breaks": 0.3629, "max_x": 67.8352, "n_centros": 0.0812, "n_events": 5.0403, "n_involved": 1.614, "n_passes": 2.3764, "opt_quality_mean": -0.1142, "paredes": 0.1232, "pass_options_mean": 7.0865, "passes_behind_line": 0.1506, "pct_adentro": 0.4855, "pct_afuera": 0.4296, "pct_cortos": 0.3144, "pct_headpass": 0.0567, "pct_largos": 0.2923, "pct_launch": 0.1227, "pct_layoff": 0.0088, "pct_medios": 0.3093, "pct_switch": 0.0054, "pct_through": 0.0005, "pct_verticales": 0.59, "pelotazos_espalda": 0.1245, "press_final": 2.3514, "press_media": 1.5414, "prog_x": 30.0423, "start_x": 39.2845, "starts_from_dispossess": 0.0386, "takeons_ok": 0.0426, "tempo": 0.3288, "transition_speed": 4.3878, "verticalidad_media": 0.4852}, "Belgrano": {"atk_l": 38.8398, "atk_w": 33.3894, "ball_distance": 102.5857, "behind_line_ok": 0.0503, "broke_last_line": 0.0345, "broke_second_last": 0.1471, "cross_pvadded_max": 0.0008, "dang_runs": 0.1064, "deep_completions": 0.301, "def_h": 30.8534, "dribbles_box": 0.0119, "dribbles_last_third": 0.0646, "duration_s": 18.8854, "hold_max": 10.1686, "hold_mean": 6.2132, "hold_min": 3.8879, "line_breaks": 0.4821, "max_x": 68.717, "n_centros": 0.1126, "n_events": 4.6394, "n_involved": 1.845, "n_passes": 2.7585, "opt_quality_mean": -0.0322, "paredes": 0.2155, "pass_options_mean": 7.437, "passes_behind_line": 0.1056, "pct_adentro": 0.5061, "pct_afuera": 0.3993, "pct_cortos": 0.3741, "pct_headpass": 0.0445, "pct_largos": 0.2161, "pct_launch": 0.0986, "pct_layoff": 0.0079, "pct_medios": 0.3164, "pct_switch": 0.0052, "pct_through": 0.0019, "pct_verticales": 0.5144, "pelotazos_espalda": 0.0775, "press_final": 2.5459, "press_media": 1.8289, "prog_x": 26.0685, "start_x": 43.7724, "starts_from_dispossess": 0.0463, "takeons_ok": 0.0515, "tempo": 0.3676, "transition_speed": 3.9287, "verticalidad_media": 0.4002}, "Boca Juniors": {"atk_l": 40.7835, "atk_w": 33.8293, "ball_distance": 171.3454, "behind_line_ok": 0.0584, "broke_last_line": 0.03, "broke_second_last": 0.174, "cross_pvadded_max": 0.001, "dang_runs": 0.1516, "deep_completions": 0.2976, "def_h": 30.9604, "dribbles_box": 0.0111, "dribbles_last_third": 0.0582, "duration_s": 22.5685, "hold_max": 10.3351, "hold_mean": 6.0117, "hold_min": 3.6617, "line_breaks": 0.874, "max_x": 68.2677, "n_centros": 0.1328, "n_events": 5.6329, "n_involved": 2.0489, "n_passes": 3.5884, "opt_quality_mean": -0.0184, "paredes": 0.3386, "pass_options_mean": 7.6979, "passes_behind_line": 0.1246, "pct_adentro": 0.5156, "pct_afuera": 0.4043, "pct_cortos": 0.4066, "pct_headpass": 0.043, "pct_largos": 0.2018, "pct_launch": 0.0845, "pct_layoff": 0.0121, "pct_medios": 0.3135, "pct_switch": 0.0061, "pct_through": 0.0033, "pct_verticales": 0.4639, "pelotazos_espalda": 0.0857, "press_final": 2.3862, "press_media": 1.7958, "prog_x": 25.3574, "start_x": 44.0063, "starts_from_dispossess": 0.0454, "takeons_ok": 0.055, "tempo": 0.3922, "transition_speed": 3.3512, "verticalidad_media": 0.3201}, "Central Córdoba SdE": {"atk_l": 39.3084, "atk_w": 34.3508, "ball_distance": 81.9718, "behind_line_ok": 0.0282, "broke_last_line": 0.0247, "broke_second_last": 0.1181, "cross_pvadded_max": 0.0005, "dang_runs": 0.077, "deep_completions": 0.1597, "def_h": 32.5969, "dribbles_box": 0.0087, "dribbles_last_third": 0.0544, "duration_s": 23.3256, "hold_max": 11.2243, "hold_mean": 6.7545, "hold_min": 4.4654, "line_breaks": 0.4362, "max_x": 65.485, "n_centros": 0.1075, "n_events": 4.8434, "n_involved": 1.6554, "n_passes": 2.4285, "opt_quality_mean": -0.1478, "paredes": 0.1519, "pass_options_mean": 7.2277, "passes_behind_line": 0.0962, "pct_adentro": 0.4925, "pct_afuera": 0.413, "pct_cortos": 0.3501, "pct_headpass": 0.0558, "pct_largos": 0.2535, "pct_launch": 0.1046, "pct_layoff": 0.0078, "pct_medios": 0.3025, "pct_switch": 0.0059, "pct_through": 0.001, "pct_verticales": 0.5433, "pelotazos_espalda": 0.0762, "press_final": 2.5096, "press_media": 1.6682, "prog_x": 26.4214, "start_x": 40.1797, "starts_from_dispossess": 0.0377, "takeons_ok": 0.0513, "tempo": 0.341, "transition_speed": 3.9752, "verticalidad_media": 0.4282}, "Defensa y Justicia": {"atk_l": 42.9306, "atk_w": 33.264, "ball_distance": 121.151, "behind_line_ok": 0.0573, "broke_last_line": 0.0363, "broke_second_last": 0.1574, "cross_pvadded_max": 0.0008, "dang_runs": 0.1324, "deep_completions": 0.315, "def_h": 31.465, "dribbles_box": 0.0127, "dribbles_last_third": 0.0674, "duration_s": 33.9096, "hold_max": 11.2597, "hold_mean": 6.3161, "hold_min": 3.6895, "line_breaks": 0.5899, "max_x": 67.5893, "n_centros": 0.1264, "n_events": 6.0517, "n_involved": 1.8319, "n_passes": 3.0611, "opt_quality_mean": -0.0891, "paredes": 0.2494, "pass_options_mean": 7.4388, "passes_behind_line": 0.1283, "pct_adentro": 0.4981, "pct_afuera": 0.4108, "pct_cortos": 0.3754, "pct_headpass": 0.0396, "pct_largos": 0.2244, "pct_launch": 0.0893, "pct_layoff": 0.0094, "pct_medios": 0.3091, "pct_switch": 0.0065, "pct_through": 0.0025, "pct_verticales": 0.4909, "pelotazos_espalda": 0.091, "press_final": 2.5546, "press_media": 1.9223, "prog_x": 26.571, "start_x": 42.1834, "starts_from_dispossess": 0.05, "takeons_ok": 0.051, "tempo": 0.3769, "transition_speed": 3.9388, "verticalidad_media": 0.3507}, "Deportivo Riestra": {"atk_l": 32.5469, "atk_w": 34.05, "ball_distance": 46.3964, "behind_line_ok": 0.045, "broke_last_line": 0.0151, "broke_second_last": 0.1362, "cross_pvadded_max": 0.0005, "dang_runs": 0.0387, "deep_completions": 0.2122, "def_h": 28.1345, "dribbles_box": 0.0052, "dribbles_last_third": 0.0334, "duration_s": 25.4976, "hold_max": 10.0509, "hold_mean": 6.8898, "hold_min": 4.8848, "line_breaks": 0.2398, "max_x": 72.2122, "n_centros": 0.1009, "n_events": 4.5178, "n_involved": 1.5294, "n_passes": 1.7876, "opt_quality_mean": -0.0038, "paredes": 0.0599, "pass_options_mean": 6.6768, "passes_behind_line": 0.1188, "pct_adentro": 0.5405, "pct_afuera": 0.3738, "pct_cortos": 0.278, "pct_headpass": 0.0744, "pct_largos": 0.3333, "pct_launch": 0.1614, "pct_layoff": 0.0072, "pct_medios": 0.3043, "pct_switch": 0.0018, "pct_through": 0.0009, "pct_verticales": 0.6247, "pelotazos_espalda": 0.0991, "press_final": 2.4715, "press_media": 1.6843, "prog_x": 28.6953, "start_x": 44.3002, "starts_from_dispossess": 0.0295, "takeons_ok": 0.0235, "tempo": 0.3594, "transition_speed": 5.3563, "verticalidad_media": 0.5219}, "Estudiantes": {"atk_l": 41.6422, "atk_w": 32.7005, "ball_distance": 138.6397, "behind_line_ok": 0.049, "broke_last_line": 0.036, "broke_second_last": 0.1467, "cross_pvadded_max": 0.0014, "dang_runs": 0.1454, "deep_completions": 0.2676, "def_h": 31.0602, "dribbles_box": 0.0116, "dribbles_last_third": 0.062, "duration_s": 17.7931, "hold_max": 10.1773, "hold_mean": 6.1189, "hold_min": 3.7201, "line_breaks": 0.6936, "max_x": 68.441, "n_centros": 0.1364, "n_events": 4.8418, "n_involved": 1.9064, "n_passes": 3.0667, "opt_quality_mean": -0.0301, "paredes": 0.2513, "pass_options_mean": 7.5483, "passes_behind_line": 0.1173, "pct_adentro": 0.5124, "pct_afuera": 0.3949, "pct_cortos": 0.3498, "pct_headpass": 0.0474, "pct_largos": 0.2267, "pct_launch": 0.0947, "pct_layoff": 0.0069, "pct_medios": 0.3319, "pct_switch": 0.0066, "pct_through": 0.0021, "pct_verticales": 0.4812, "pelotazos_espalda": 0.0907, "press_final": 2.6001, "press_media": 1.8818, "prog_x": 25.7935, "start_x": 43.8751, "starts_from_dispossess": 0.0459, "takeons_ok": 0.0597, "tempo": 0.3672, "transition_speed": 3.4598, "verticalidad_media": 0.3501}, "Estudiantes Río Cuarto": {"atk_l": 39.4132, "atk_w": 33.1192, "ball_distance": 91.196, "behind_line_ok": 0.0494, "broke_last_line": 0.023, "broke_second_last": 0.1342, "cross_pvadded_max": 0.0017, "dang_runs": 0.0949, "deep_completions": 0.2497, "def_h": 29.4755, "dribbles_box": 0.0061, "dribbles_last_third": 0.0425, "duration_s": 26.799, "hold_max": 10.0592, "hold_mean": 6.2443, "hold_min": 4.0648, "line_breaks": 0.4329, "max_x": 69.5763, "n_centros": 0.1408, "n_events": 5.2121, "n_involved": 1.7303, "n_passes": 2.5429, "opt_quality_mean": -0.0177, "paredes": 0.1719, "pass_options_mean": 7.6257, "passes_behind_line": 0.1326, "pct_adentro": 0.5174, "pct_afuera": 0.3907, "pct_cortos": 0.3399, "pct_headpass": 0.0601, "pct_largos": 0.2555, "pct_launch": 0.1133, "pct_layoff": 0.0053, "pct_medios": 0.3137, "pct_switch": 0.0061, "pct_through": 0.0014, "pct_verticales": 0.5387, "pelotazos_espalda": 0.1028, "press_final": 2.5351, "press_media": 1.8271, "prog_x": 26.6691, "start_x": 44.0589, "starts_from_dispossess": 0.0418, "takeons_ok": 0.0415, "tempo": 0.3842, "transition_speed": 4.3547, "verticalidad_media": 0.4254}, "Gimnasia La Plata": {"atk_l": 41.8881, "atk_w": 34.5837, "ball_distance": 107.6389, "behind_line_ok": 0.0461, "broke_last_line": 0.0237, "broke_second_last": 0.1285, "cross_pvadded_max": 0.0007, "dang_runs": 0.1127, "deep_completions": 0.2688, "def_h": 31.2839, "dribbles_box": 0.0099, "dribbles_last_third": 0.0491, "duration_s": 17.4768, "hold_max": 10.3775, "hold_mean": 6.3754, "hold_min": 4.078, "line_breaks": 0.4743, "max_x": 67.6823, "n_centros": 0.1266, "n_events": 4.5556, "n_involved": 1.8242, "n_passes": 2.7104, "opt_quality_mean": -0.0862, "paredes": 0.1962, "pass_options_mean": 7.7595, "passes_behind_line": 0.126, "pct_adentro": 0.4996, "pct_afuera": 0.4145, "pct_cortos": 0.3865, "pct_headpass": 0.0463, "pct_largos": 0.2363, "pct_launch": 0.0872, "pct_layoff": 0.0091, "pct_medios": 0.2922, "pct_switch": 0.0059, "pct_through": 0.0016, "pct_verticales": 0.533, "pelotazos_espalda": 0.0947, "press_final": 2.4012, "press_media": 1.697, "prog_x": 27.0, "start_x": 41.4796, "starts_from_dispossess": 0.0379, "takeons_ok": 0.0539, "tempo": 0.3923, "transition_speed": 4.2661, "verticalidad_media": 0.4136}, "Gimnasia Mendoza": {"atk_l": 38.7165, "atk_w": 33.6611, "ball_distance": 80.6003, "behind_line_ok": 0.05, "broke_last_line": 0.0183, "broke_second_last": 0.1284, "cross_pvadded_max": 0.0008, "dang_runs": 0.0956, "deep_completions": 0.1897, "def_h": 32.0644, "dribbles_box": 0.0068, "dribbles_last_third": 0.0527, "duration_s": 21.852, "hold_max": 10.3176, "hold_mean": 6.3547, "hold_min": 4.0258, "line_breaks": 0.4239, "max_x": 66.4607, "n_centros": 0.1084, "n_events": 4.631, "n_involved": 1.6531, "n_passes": 2.3335, "opt_quality_mean": -0.1337, "paredes": 0.1164, "pass_options_mean": 7.5883, "passes_behind_line": 0.1359, "pct_adentro": 0.4993, "pct_afuera": 0.4107, "pct_cortos": 0.3442, "pct_headpass": 0.0511, "pct_largos": 0.2609, "pct_launch": 0.1157, "pct_layoff": 0.0083, "pct_medios": 0.3067, "pct_switch": 0.0091, "pct_through": 0.0012, "pct_verticales": 0.5624, "pelotazos_espalda": 0.1071, "press_final": 2.6278, "press_media": 1.776, "prog_x": 26.8701, "start_x": 40.7234, "starts_from_dispossess": 0.0489, "takeons_ok": 0.0528, "tempo": 0.3728, "transition_speed": 4.3836, "verticalidad_media": 0.4553}, "Huracán": {"atk_l": 39.4651, "atk_w": 35.0111, "ball_distance": 108.0032, "behind_line_ok": 0.0399, "broke_last_line": 0.0187, "broke_second_last": 0.144, "cross_pvadded_max": 0.0007, "dang_runs": 0.1098, "deep_completions": 0.2339, "def_h": 30.0143, "dribbles_box": 0.0128, "dribbles_last_third": 0.0516, "duration_s": 16.4533, "hold_max": 10.3973, "hold_mean": 6.6838, "hold_min": 4.494, "line_breaks": 0.4422, "max_x": 68.3417, "n_centros": 0.1069, "n_events": 4.4599, "n_involved": 1.7839, "n_passes": 2.6904, "opt_quality_mean": -0.0803, "paredes": 0.1865, "pass_options_mean": 7.7046, "passes_behind_line": 0.1183, "pct_adentro": 0.5251, "pct_afuera": 0.3927, "pct_cortos": 0.3471, "pct_headpass": 0.0484, "pct_largos": 0.2403, "pct_launch": 0.1062, "pct_layoff": 0.0081, "pct_medios": 0.3318, "pct_switch": 0.0054, "pct_through": 0.0008, "pct_verticales": 0.5267, "pelotazos_espalda": 0.0943, "press_final": 2.6533, "press_media": 1.8728, "prog_x": 25.5087, "start_x": 43.7424, "starts_from_dispossess": 0.0371, "takeons_ok": 0.0433, "tempo": 0.3697, "transition_speed": 3.8954, "verticalidad_media": 0.4108}, "Independiente": {"atk_l": 41.2149, "atk_w": 32.3778, "ball_distance": 77.0639, "behind_line_ok": 0.0568, "broke_last_line": 0.0359, "broke_second_last": 0.1468, "cross_pvadded_max": 0.0005, "dang_runs": 0.0919, "deep_completions": 0.3176, "def_h": 28.6974, "dribbles_box": 0.017, "dribbles_last_third": 0.071, "duration_s": 26.8837, "hold_max": 10.3103, "hold_mean": 6.3435, "hold_min": 4.1572, "line_breaks": 0.397, "max_x": 70.5792, "n_centros": 0.1314, "n_events": 5.2217, "n_involved": 1.6875, "n_passes": 2.5284, "opt_quality_mean": 0.0468, "paredes": 0.1528, "pass_options_mean": 7.3454, "passes_behind_line": 0.1213, "pct_adentro": 0.526, "pct_afuera": 0.3915, "pct_cortos": 0.362, "pct_headpass": 0.0582, "pct_largos": 0.2117, "pct_launch": 0.1031, "pct_layoff": 0.0083, "pct_medios": 0.3441, "pct_switch": 0.0051, "pct_through": 0.0017, "pct_verticales": 0.5183, "pelotazos_espalda": 0.0835, "press_final": 2.6024, "press_media": 1.9223, "prog_x": 24.7631, "start_x": 46.8174, "starts_from_dispossess": 0.0381, "takeons_ok": 0.0453, "tempo": 0.3708, "transition_speed": 3.7547, "verticalidad_media": 0.4003}, "Independiente Rivadavia": {"atk_l": 38.3109, "atk_w": 34.0307, "ball_distance": 94.6815, "behind_line_ok": 0.0448, "broke_last_line": 0.0245, "broke_second_last": 0.1031, "cross_pvadded_max": 0.002, "dang_runs": 0.0892, "deep_completions": 0.2763, "def_h": 28.9505, "dribbles_box": 0.0134, "dribbles_last_third": 0.0611, "duration_s": 33.9284, "hold_max": 11.087, "hold_mean": 7.1805, "hold_min": 4.9485, "line_breaks": 0.414, "max_x": 70.9154, "n_centros": 0.1299, "n_events": 5.7019, "n_involved": 1.717, "n_passes": 2.493, "opt_quality_mean": -0.0243, "paredes": 0.1509, "pass_options_mean": 6.6828, "passes_behind_line": 0.1265, "pct_adentro": 0.4844, "pct_afuera": 0.4206, "pct_cortos": 0.3283, "pct_headpass": 0.0566, "pct_largos": 0.2706, "pct_launch": 0.1118, "pct_layoff": 0.0078, "pct_medios": 0.3064, "pct_switch": 0.0068, "pct_through": 0.0017, "pct_verticales": 0.5456, "pelotazos_espalda": 0.1027, "press_final": 2.4103, "press_media": 1.636, "prog_x": 27.5849, "start_x": 44.666, "starts_from_dispossess": 0.046, "takeons_ok": 0.0496, "tempo": 0.3432, "transition_speed": 3.9298, "verticalidad_media": 0.4401}, "Instituto": {"atk_l": 39.2452, "atk_w": 34.1236, "ball_distance": 106.1966, "behind_line_ok": 0.0622, "broke_last_line": 0.0296, "broke_second_last": 0.1517, "cross_pvadded_max": 0.001, "dang_runs": 0.1332, "deep_completions": 0.2796, "def_h": 30.0968, "dribbles_box": 0.0078, "dribbles_last_third": 0.0432, "duration_s": 40.4624, "hold_max": 10.6034, "hold_mean": 6.1898, "hold_min": 3.9179, "line_breaks": 0.5192, "max_x": 70.0971, "n_centros": 0.1512, "n_events": 6.463, "n_involved": 1.8262, "n_passes": 2.7338, "opt_quality_mean": -0.037, "paredes": 0.177, "pass_options_mean": 8.0153, "passes_behind_line": 0.1532, "pct_adentro": 0.5263, "pct_afuera": 0.3913, "pct_cortos": 0.3128, "pct_headpass": 0.0485, "pct_largos": 0.262, "pct_launch": 0.1178, "pct_layoff": 0.0071, "pct_medios": 0.3435, "pct_switch": 0.0047, "pct_through": 0.0013, "pct_verticales": 0.5246, "pelotazos_espalda": 0.1183, "press_final": 2.6115, "press_media": 1.9058, "prog_x": 26.662, "start_x": 44.5593, "starts_from_dispossess": 0.0345, "takeons_ok": 0.0371, "tempo": 0.3771, "transition_speed": 4.1143, "verticalidad_media": 0.4119}, "Lanús": {"atk_l": 39.3302, "atk_w": 33.9295, "ball_distance": 131.9645, "behind_line_ok": 0.0513, "broke_last_line": 0.031, "broke_second_last": 0.1567, "cross_pvadded_max": 0.0163, "dang_runs": 0.1531, "deep_completions": 4.0859, "def_h": 31.1915, "dribbles_box": 0.3618, "dribbles_last_third": 0.9389, "duration_s": 368.2533, "hold_max": 13.2776, "hold_mean": 5.2442, "hold_min": 2.9006, "line_breaks": 0.6586, "max_x": 69.6684, "n_centros": 1.87, "n_events": 95.9127, "n_involved": 2.0095, "n_passes": 47.11, "opt_quality_mean": -0.0482, "paredes": 3.6276, "pass_options_mean": 7.2071, "passes_behind_line": 0.107, "pct_adentro": 0.5339, "pct_afuera": 0.3929, "pct_cortos": 0.399, "pct_headpass": 0.0457, "pct_largos": 0.1908, "pct_launch": 0.09, "pct_layoff": 0.0109, "pct_medios": 0.3385, "pct_switch": 0.0046, "pct_through": 0.003, "pct_verticales": 0.4821, "pelotazos_espalda": 0.0749, "press_final": 2.444, "press_media": 1.8112, "prog_x": 29.2975, "start_x": 41.2836, "starts_from_dispossess": 0.0419, "takeons_ok": 1.2751, "tempo": 0.3814, "transition_speed": 3.4897, "verticalidad_media": 0.3411}, "Newell's Old Boys": {"atk_l": 38.8511, "atk_w": 34.0681, "ball_distance": 84.5354, "behind_line_ok": 0.0602, "broke_last_line": 0.0281, "broke_second_last": 0.1436, "cross_pvadded_max": 0.0006, "dang_runs": 0.1028, "deep_completions": 0.2701, "def_h": 29.7615, "dribbles_box": 0.0165, "dribbles_last_third": 0.0669, "duration_s": 38.7557, "hold_max": 10.7849, "hold_mean": 6.5465, "hold_min": 4.2369, "line_breaks": 0.4286, "max_x": 70.48, "n_centros": 0.1395, "n_events": 6.1897, "n_involved": 1.665, "n_passes": 2.3568, "opt_quality_mean": -0.0394, "paredes": 0.1431, "pass_options_mean": 7.6108, "passes_behind_line": 0.1429, "pct_adentro": 0.5208, "pct_afuera": 0.3828, "pct_cortos": 0.2977, "pct_headpass": 0.0545, "pct_largos": 0.2696, "pct_launch": 0.1107, "pct_layoff": 0.0084, "pct_medios": 0.3373, "pct_switch": 0.0071, "pct_through": 0.0009, "pct_verticales": 0.537, "pelotazos_espalda": 0.1148, "press_final": 2.6361, "press_media": 1.871, "prog_x": 26.9809, "start_x": 44.538, "starts_from_dispossess": 0.0461, "takeons_ok": 0.0609, "tempo": 0.3416, "transition_speed": 4.164, "verticalidad_media": 0.4281}, "Platense": {"atk_l": 40.8729, "atk_w": 33.211, "ball_distance": 95.4472, "behind_line_ok": 0.0441, "broke_last_line": 0.0292, "broke_second_last": 0.1441, "cross_pvadded_max": 0.0011, "dang_runs": 0.1022, "deep_completions": 0.2844, "def_h": 30.3514, "dribbles_box": 0.0068, "dribbles_last_third": 0.0454, "duration_s": 24.8949, "hold_max": 9.9317, "hold_mean": 6.4059, "hold_min": 4.2025, "line_breaks": 0.4436, "max_x": 69.2129, "n_centros": 0.1397, "n_events": 5.1472, "n_involved": 1.7407, "n_passes": 2.6619, "opt_quality_mean": -0.0529, "paredes": 0.1991, "pass_options_mean": 7.4258, "passes_behind_line": 0.1163, "pct_adentro": 0.4879, "pct_afuera": 0.4099, "pct_cortos": 0.3716, "pct_headpass": 0.0459, "pct_largos": 0.232, "pct_launch": 0.1128, "pct_layoff": 0.0079, "pct_medios": 0.2949, "pct_switch": 0.0056, "pct_through": 0.0011, "pct_verticales": 0.5159, "pelotazos_espalda": 0.089, "press_final": 2.4174, "press_media": 1.802, "prog_x": 25.9033, "start_x": 44.512, "starts_from_dispossess": 0.0507, "takeons_ok": 0.041, "tempo": 0.3544, "transition_speed": 3.6389, "verticalidad_media": 0.4085}, "Racing Club": {"atk_l": 40.3329, "atk_w": 34.7504, "ball_distance": 126.4419, "behind_line_ok": 0.0449, "broke_last_line": 0.0294, "broke_second_last": 0.1413, "cross_pvadded_max": 0.0013, "dang_runs": 0.1542, "deep_completions": 0.2916, "def_h": 29.1714, "dribbles_box": 0.0097, "dribbles_last_third": 0.0457, "duration_s": 40.4983, "hold_max": 10.6679, "hold_mean": 6.2751, "hold_min": 4.0595, "line_breaks": 0.4757, "max_x": 70.3678, "n_centros": 0.1205, "n_events": 6.6702, "n_involved": 1.7612, "n_passes": 2.9885, "opt_quality_mean": -0.0555, "paredes": 0.2477, "pass_options_mean": 7.4083, "passes_behind_line": 0.1338, "pct_adentro": 0.5158, "pct_afuera": 0.3968, "pct_cortos": 0.3393, "pct_headpass": 0.0606, "pct_largos": 0.2471, "pct_launch": 0.1322, "pct_layoff": 0.0069, "pct_medios": 0.3269, "pct_switch": 0.0077, "pct_through": 0.0012, "pct_verticales": 0.5156, "pelotazos_espalda": 0.1014, "press_final": 2.3205, "press_media": 1.6548, "prog_x": 26.9146, "start_x": 44.4751, "starts_from_dispossess": 0.0355, "takeons_ok": 0.0377, "tempo": 0.3591, "transition_speed": 3.9038, "verticalidad_media": 0.3993}, "River Plate": {"atk_l": 40.5181, "atk_w": 32.7908, "ball_distance": 158.0856, "behind_line_ok": 0.0486, "broke_last_line": 0.028, "broke_second_last": 0.1725, "cross_pvadded_max": 0.001, "dang_runs": 0.193, "deep_completions": 0.327, "def_h": 30.03, "dribbles_box": 0.0139, "dribbles_last_third": 0.0607, "duration_s": 37.3432, "hold_max": 10.2567, "hold_mean": 5.9427, "hold_min": 3.8969, "line_breaks": 0.7015, "max_x": 68.5737, "n_centros": 0.1125, "n_events": 6.802, "n_involved": 2.0946, "n_passes": 3.617, "opt_quality_mean": -0.0151, "paredes": 0.2846, "pass_options_mean": 7.3737, "passes_behind_line": 0.1096, "pct_adentro": 0.5251, "pct_afuera": 0.3846, "pct_cortos": 0.3944, "pct_headpass": 0.043, "pct_largos": 0.184, "pct_launch": 0.0805, "pct_layoff": 0.0078, "pct_medios": 0.3328, "pct_switch": 0.0079, "pct_through": 0.0017, "pct_verticales": 0.466, "pelotazos_espalda": 0.0693, "press_final": 2.3478, "press_media": 1.6852, "prog_x": 24.2147, "start_x": 45.7481, "starts_from_dispossess": 0.0453, "takeons_ok": 0.0483, "tempo": 0.3636, "transition_speed": 2.8536, "verticalidad_media": 0.3328}, "Rosario Central": {"atk_l": 41.9805, "atk_w": 35.232, "ball_distance": 116.7924, "behind_line_ok": 0.0608, "broke_last_line": 0.0273, "broke_second_last": 0.1421, "cross_pvadded_max": 0.0016, "dang_runs": 0.1321, "deep_completions": 0.3038, "def_h": 31.6786, "dribbles_box": 0.0169, "dribbles_last_third": 0.0595, "duration_s": 34.1046, "hold_max": 10.5882, "hold_mean": 6.2644, "hold_min": 3.9751, "line_breaks": 0.5583, "max_x": 67.3956, "n_centros": 0.1321, "n_events": 6.2895, "n_involved": 1.8482, "n_passes": 3.1718, "opt_quality_mean": -0.0834, "paredes": 0.2703, "pass_options_mean": 7.5208, "passes_behind_line": 0.125, "pct_adentro": 0.4984, "pct_afuera": 0.4143, "pct_cortos": 0.3906, "pct_headpass": 0.0457, "pct_largos": 0.215, "pct_launch": 0.0906, "pct_layoff": 0.0082, "pct_medios": 0.3092, "pct_switch": 0.0055, "pct_through": 0.0023, "pct_verticales": 0.5063, "pelotazos_espalda": 0.0872, "press_final": 2.3809, "press_media": 1.6946, "prog_x": 25.978, "start_x": 42.43, "starts_from_dispossess": 0.0481, "takeons_ok": 0.0601, "tempo": 0.3774, "transition_speed": 3.5009, "verticalidad_media": 0.3801}, "San Lorenzo": {"atk_l": 38.3393, "atk_w": 33.5207, "ball_distance": 95.6001, "behind_line_ok": 0.046, "broke_last_line": 0.0223, "broke_second_last": 0.1337, "cross_pvadded_max": 0.0009, "dang_runs": 0.0884, "deep_completions": 0.2346, "def_h": 30.9881, "dribbles_box": 0.0126, "dribbles_last_third": 0.0568, "duration_s": 29.174, "hold_max": 10.8561, "hold_mean": 6.8088, "hold_min": 4.5168, "line_breaks": 0.4868, "max_x": 67.5304, "n_centros": 0.1218, "n_events": 5.5273, "n_involved": 1.7388, "n_passes": 2.6027, "opt_quality_mean": -0.0969, "paredes": 0.1913, "pass_options_mean": 7.1362, "passes_behind_line": 0.1207, "pct_adentro": 0.4936, "pct_afuera": 0.41, "pct_cortos": 0.3525, "pct_headpass": 0.0477, "pct_largos": 0.237, "pct_launch": 0.1261, "pct_layoff": 0.0075, "pct_medios": 0.3151, "pct_switch": 0.0049, "pct_through": 0.0011, "pct_verticales": 0.5379, "pelotazos_espalda": 0.0924, "press_final": 2.5964, "press_media": 1.7929, "prog_x": 26.2972, "start_x": 42.3095, "starts_from_dispossess": 0.0482, "takeons_ok": 0.0597, "tempo": 0.3528, "transition_speed": 3.9779, "verticalidad_media": 0.4376}, "Sarmiento": {"atk_l": 38.0434, "atk_w": 34.0999, "ball_distance": 92.5556, "behind_line_ok": 0.0489, "broke_last_line": 0.0208, "broke_second_last": 0.1312, "cross_pvadded_max": 0.0008, "dang_runs": 0.1219, "deep_completions": 0.2368, "def_h": 31.2282, "dribbles_box": 0.0098, "dribbles_last_third": 0.0532, "duration_s": 24.9655, "hold_max": 11.1327, "hold_mean": 6.6805, "hold_min": 4.1118, "line_breaks": 0.4263, "max_x": 67.192, "n_centros": 0.097, "n_events": 5.109, "n_involved": 1.7444, "n_passes": 2.5631, "opt_quality_mean": -0.1134, "paredes": 0.1859, "pass_options_mean": 7.0443, "passes_behind_line": 0.1223, "pct_adentro": 0.4982, "pct_afuera": 0.4119, "pct_cortos": 0.3621, "pct_headpass": 0.0551, "pct_largos": 0.2586, "pct_launch": 0.1265, "pct_layoff": 0.0085, "pct_medios": 0.2898, "pct_switch": 0.0069, "pct_through": 0.0007, "pct_verticales": 0.5383, "pelotazos_espalda": 0.0942, "press_final": 2.4089, "press_media": 1.7184, "prog_x": 26.9287, "start_x": 41.5277, "starts_from_dispossess": 0.0429, "takeons_ok": 0.0444, "tempo": 0.3621, "transition_speed": 3.9127, "verticalidad_media": 0.4167}, "Talleres de Córdoba": {"atk_l": 38.618, "atk_w": 32.8957, "ball_distance": 116.0703, "behind_line_ok": 0.0408, "broke_last_line": 0.0242, "broke_second_last": 0.1368, "cross_pvadded_max": 0.001, "dang_runs": 0.103, "deep_completions": 0.2347, "def_h": 31.7904, "dribbles_box": 0.0087, "dribbles_last_third": 0.0632, "duration_s": 23.1372, "hold_max": 10.5462, "hold_mean": 6.2893, "hold_min": 3.8847, "line_breaks": 0.5477, "max_x": 67.701, "n_centros": 0.1189, "n_events": 5.2415, "n_involved": 1.811, "n_passes": 2.9716, "opt_quality_mean": -0.0886, "paredes": 0.2449, "pass_options_mean": 7.3982, "passes_behind_line": 0.1169, "pct_adentro": 0.4971, "pct_afuera": 0.4036, "pct_cortos": 0.3405, "pct_headpass": 0.0522, "pct_largos": 0.2312, "pct_launch": 0.0969, "pct_layoff": 0.0082, "pct_medios": 0.3302, "pct_switch": 0.0043, "pct_through": 0.0019, "pct_verticales": 0.5006, "pelotazos_espalda": 0.0856, "press_final": 2.508, "press_media": 1.7278, "prog_x": 26.6183, "start_x": 42.4055, "starts_from_dispossess": 0.049, "takeons_ok": 0.0461, "tempo": 0.3668, "transition_speed": 3.9862, "verticalidad_media": 0.3741}, "Tigre": {"atk_l": 38.6295, "atk_w": 34.3673, "ball_distance": 81.92, "behind_line_ok": 0.0485, "broke_last_line": 0.0281, "broke_second_last": 0.142, "cross_pvadded_max": 0.001, "dang_runs": 0.1004, "deep_completions": 0.2307, "def_h": 29.3198, "dribbles_box": 0.0103, "dribbles_last_third": 0.0537, "duration_s": 14.6142, "hold_max": 10.6151, "hold_mean": 7.0203, "hold_min": 4.6589, "line_breaks": 0.4404, "max_x": 69.2655, "n_centros": 0.1303, "n_events": 3.9762, "n_involved": 1.7162, "n_passes": 2.362, "opt_quality_mean": -0.0605, "paredes": 0.1351, "pass_options_mean": 7.8494, "passes_behind_line": 0.1223, "pct_adentro": 0.5395, "pct_afuera": 0.3768, "pct_cortos": 0.35, "pct_headpass": 0.0522, "pct_largos": 0.2369, "pct_launch": 0.1186, "pct_layoff": 0.0094, "pct_medios": 0.3305, "pct_switch": 0.0052, "pct_through": 0.0019, "pct_verticales": 0.5403, "pelotazos_espalda": 0.0907, "press_final": 2.5537, "press_media": 1.831, "prog_x": 25.685, "start_x": 44.8589, "starts_from_dispossess": 0.0434, "takeons_ok": 0.0374, "tempo": 0.391, "transition_speed": 4.4376, "verticalidad_media": 0.4339}, "Unión": {"atk_l": 37.507, "atk_w": 32.9527, "ball_distance": 91.9235, "behind_line_ok": 0.0624, "broke_last_line": 0.0277, "broke_second_last": 0.1397, "cross_pvadded_max": 0.0011, "dang_runs": 0.0984, "deep_completions": 0.3355, "def_h": 29.5712, "dribbles_box": 0.0113, "dribbles_last_third": 0.0481, "duration_s": 16.4285, "hold_max": 9.8138, "hold_mean": 6.1393, "hold_min": 3.9432, "line_breaks": 0.4132, "max_x": 70.5645, "n_centros": 0.1437, "n_events": 4.3126, "n_involved": 1.7632, "n_passes": 2.5573, "opt_quality_mean": 0.0144, "paredes": 0.1559, "pass_options_mean": 8.0092, "passes_behind_line": 0.1422, "pct_adentro": 0.5064, "pct_afuera": 0.3991, "pct_cortos": 0.3713, "pct_headpass": 0.0576, "pct_largos": 0.2382, "pct_launch": 0.0955, "pct_layoff": 0.0105, "pct_medios": 0.297, "pct_switch": 0.0061, "pct_through": 0.0011, "pct_verticales": 0.495, "pelotazos_espalda": 0.1006, "press_final": 2.5851, "press_media": 1.9037, "prog_x": 25.8153, "start_x": 45.8125, "starts_from_dispossess": 0.0432, "takeons_ok": 0.0463, "tempo": 0.3874, "transition_speed": 3.8455, "verticalidad_media": 0.3666}, "Vélez Sarsfield": {"atk_l": 37.4641, "atk_w": 33.5252, "ball_distance": 110.7246, "behind_line_ok": 0.0427, "broke_last_line": 0.0196, "broke_second_last": 0.1448, "cross_pvadded_max": 0.0005, "dang_runs": 0.1356, "deep_completions": 0.3217, "def_h": 29.6596, "dribbles_box": 0.0091, "dribbles_last_third": 0.054, "duration_s": 13.1421, "hold_max": 9.4794, "hold_mean": 5.9685, "hold_min": 3.9223, "line_breaks": 0.5417, "max_x": 68.4577, "n_centros": 0.1235, "n_events": 4.2871, "n_involved": 1.9228, "n_passes": 2.8189, "opt_quality_mean": -0.0394, "paredes": 0.2168, "pass_options_mean": 7.6132, "passes_behind_line": 0.103, "pct_adentro": 0.5185, "pct_afuera": 0.3932, "pct_cortos": 0.3874, "pct_headpass": 0.0483, "pct_largos": 0.2087, "pct_launch": 0.0974, "pct_layoff": 0.0077, "pct_medios": 0.3167, "pct_switch": 0.004, "pct_through": 0.0008, "pct_verticales": 0.5344, "pelotazos_espalda": 0.0784, "press_final": 2.5086, "press_media": 1.8611, "prog_x": 25.0429, "start_x": 44.6159, "starts_from_dispossess": 0.0446, "takeons_ok": 0.0427, "tempo": 0.403, "transition_speed": 3.9193, "verticalidad_media": 0.4204}}, "team_eje_norm_gen": {"Aldosivi": {"eje_verticalidad": -0.0007, "eje_elaboracion": -0.0434, "eje_individual": -0.0259, "eje_rotura_lineas": -0.0295, "eje_amplitud_centro": 0.0033, "eje_profundidad_espalda": -0.0689, "eje_robo_alto": 0.0261, "eje_aereo_segunda": 0.05}, "Argentinos Juniors": {"eje_verticalidad": -0.1851, "eje_elaboracion": 0.0891, "eje_individual": 0.0269, "eje_rotura_lineas": 0.0653, "eje_amplitud_centro": 0.0035, "eje_profundidad_espalda": 0.0416, "eje_robo_alto": 0.0143, "eje_aereo_segunda": -0.0477}, "Atlético Tucumán": {"eje_verticalidad": 0.0248, "eje_elaboracion": -0.0445, "eje_individual": 0.0026, "eje_rotura_lineas": -0.0201, "eje_amplitud_centro": -0.0083, "eje_profundidad_espalda": 0.0211, "eje_robo_alto": 0.0413, "eje_aereo_segunda": 0.0419}, "Banfield": {"eje_verticalidad": 0.0391, "eje_elaboracion": -0.1076, "eje_individual": -0.0084, "eje_rotura_lineas": -0.0348, "eje_amplitud_centro": -0.0154, "eje_profundidad_espalda": -0.0472, "eje_robo_alto": -0.0061, "eje_aereo_segunda": 0.0113}, "Barracas Central": {"eje_verticalidad": 0.1152, "eje_elaboracion": -0.0742, "eje_individual": -0.0369, "eje_rotura_lineas": -0.0476, "eje_amplitud_centro": -0.0149, "eje_profundidad_espalda": 0.0319, "eje_robo_alto": -0.1017, "eje_aereo_segunda": 0.0304}, "Belgrano": {"eje_verticalidad": -0.0521, "eje_elaboracion": 0.0177, "eje_individual": 0.0136, "eje_rotura_lineas": 0.0178, "eje_amplitud_centro": -0.0136, "eje_profundidad_espalda": -0.012, "eje_robo_alto": 0.0042, "eje_aereo_segunda": -0.0279}, "Boca Juniors": {"eje_verticalidad": -0.1523, "eje_elaboracion": 0.1408, "eje_individual": 0.024, "eje_rotura_lineas": 0.0891, "eje_amplitud_centro": 0.0155, "eje_profundidad_espalda": 0.0168, "eje_robo_alto": 0.0067, "eje_aereo_segunda": -0.0219}, "Central Córdoba SdE": {"eje_verticalidad": 0.0085, "eje_elaboracion": -0.0401, "eje_individual": -0.0133, "eje_rotura_lineas": -0.0293, "eje_amplitud_centro": -0.002, "eje_profundidad_espalda": -0.0955, "eje_robo_alto": -0.0867, "eje_aereo_segunda": 0.0012}, "Defensa y Justicia": {"eje_verticalidad": -0.0869, "eje_elaboracion": 0.0615, "eje_individual": 0.0262, "eje_rotura_lineas": 0.0461, "eje_amplitud_centro": 0.0179, "eje_profundidad_espalda": 0.0292, "eje_robo_alto": -0.0177, "eje_aereo_segunda": -0.0394}, "Deportivo Riestra": {"eje_verticalidad": 0.2185, "eje_elaboracion": -0.161, "eje_individual": -0.084, "eje_rotura_lineas": -0.0575, "eje_amplitud_centro": -0.0698, "eje_profundidad_espalda": -0.0217, "eje_robo_alto": -0.0266, "eje_aereo_segunda": 0.1012}, "Estudiantes": {"eje_verticalidad": -0.1086, "eje_elaboracion": 0.0335, "eje_individual": 0.0318, "eje_rotura_lineas": 0.0478, "eje_amplitud_centro": 0.0136, "eje_profundidad_espalda": -0.0056, "eje_robo_alto": 0.0054, "eje_aereo_segunda": -0.0326}, "Estudiantes Río Cuarto": {"eje_verticalidad": 0.0205, "eje_elaboracion": -0.0293, "eje_individual": -0.0354, "eje_rotura_lineas": -0.0188, "eje_amplitud_centro": 0.0111, "eje_profundidad_espalda": 0.0101, "eje_robo_alto": -0.0012, "eje_aereo_segunda": 0.0048}, "Gimnasia La Plata": {"eje_verticalidad": -0.0055, "eje_elaboracion": 0.0141, "eje_individual": -0.0018, "eje_rotura_lineas": -0.015, "eje_amplitud_centro": 0.0176, "eje_profundidad_espalda": 0.0016, "eje_robo_alto": -0.0607, "eje_aereo_segunda": -0.0301}, "Gimnasia Mendoza": {"eje_verticalidad": 0.0575, "eje_elaboracion": -0.065, "eje_individual": -0.0119, "eje_rotura_lineas": -0.0325, "eje_amplitud_centro": 0.0175, "eje_profundidad_espalda": -0.0049, "eje_robo_alto": -0.0486, "eje_aereo_segunda": 0.0079}, "Huracán": {"eje_verticalidad": -0.0183, "eje_elaboracion": -0.0178, "eje_individual": -0.0049, "eje_rotura_lineas": -0.0223, "eje_amplitud_centro": -0.0235, "eje_profundidad_espalda": -0.0239, "eje_robo_alto": -0.0187, "eje_aereo_segunda": -0.0099}, "Independiente": {"eje_verticalidad": -0.0527, "eje_elaboracion": -0.0232, "eje_individual": 0.0202, "eje_rotura_lineas": 0.0081, "eje_amplitud_centro": -0.0034, "eje_profundidad_espalda": 0.0179, "eje_robo_alto": 0.0435, "eje_aereo_segunda": 0.0069}, "Independiente Rivadavia": {"eje_verticalidad": 0.0289, "eje_elaboracion": -0.043, "eje_individual": 0.006, "eje_rotura_lineas": -0.0373, "eje_amplitud_centro": 0.0323, "eje_profundidad_espalda": 0.0102, "eje_robo_alto": 0.0208, "eje_aereo_segunda": 0.0109}, "Instituto": {"eje_verticalidad": 0.0032, "eje_elaboracion": -0.0235, "eje_individual": -0.0231, "eje_rotura_lineas": 0.0135, "eje_amplitud_centro": 0.0123, "eje_profundidad_espalda": 0.0636, "eje_robo_alto": -0.0093, "eje_aereo_segunda": -0.0017}, "Lanús": {"eje_verticalidad": -0.1304, "eje_elaboracion": 4.3014, "eje_individual": 2.9626, "eje_rotura_lineas": 0.05, "eje_amplitud_centro": 1.6429, "eje_profundidad_espalda": 1.3601, "eje_robo_alto": -0.0549, "eje_aereo_segunda": -0.0172}, "Newell's Old Boys": {"eje_verticalidad": 0.0223, "eje_elaboracion": -0.0707, "eje_individual": 0.0349, "eje_rotura_lineas": -0.0087, "eje_amplitud_centro": 0.0089, "eje_profundidad_espalda": 0.0473, "eje_robo_alto": 0.0186, "eje_aereo_segunda": 0.0097}, "Platense": {"eje_verticalidad": -0.0481, "eje_elaboracion": 0.0083, "eje_individual": -0.0293, "eje_rotura_lineas": -0.0037, "eje_amplitud_centro": 0.0241, "eje_profundidad_espalda": -0.007, "eje_robo_alto": 0.0295, "eje_aereo_segunda": -0.0083}, "Racing Club": {"eje_verticalidad": -0.028, "eje_elaboracion": 0.0377, "eje_individual": -0.009, "eje_rotura_lineas": 0.0, "eje_amplitud_centro": 0.0077, "eje_profundidad_espalda": 0.0201, "eje_robo_alto": -0.0085, "eje_aereo_segunda": 0.0377}, "River Plate": {"eje_verticalidad": -0.1768, "eje_elaboracion": 0.1238, "eje_individual": 0.0394, "eje_rotura_lineas": 0.051, "eje_amplitud_centro": -0.0096, "eje_profundidad_espalda": -0.0085, "eje_robo_alto": 0.0403, "eje_aereo_segunda": -0.053}, "Rosario Central": {"eje_verticalidad": -0.081, "eje_elaboracion": 0.0866, "eje_individual": 0.037, "eje_rotura_lineas": 0.016, "eje_amplitud_centro": 0.0199, "eje_profundidad_espalda": 0.0233, "eje_robo_alto": -0.0175, "eje_aereo_segunda": -0.0329}, "San Lorenzo": {"eje_verticalidad": -0.0017, "eje_elaboracion": -0.0078, "eje_individual": 0.01, "eje_rotura_lineas": -0.0161, "eje_amplitud_centro": 0.0025, "eje_profundidad_espalda": -0.0167, "eje_robo_alto": -0.0196, "eje_aereo_segunda": 0.0083}, "Sarmiento": {"eje_verticalidad": 0.0039, "eje_elaboracion": -0.0092, "eje_individual": -0.0048, "eje_rotura_lineas": -0.0302, "eje_amplitud_centro": -0.0066, "eje_profundidad_espalda": -0.0101, "eje_robo_alto": -0.0476, "eje_aereo_segunda": 0.0298}, "Talleres de Córdoba": {"eje_verticalidad": -0.0638, "eje_elaboracion": 0.0232, "eje_individual": -0.0014, "eje_rotura_lineas": 0.0028, "eje_amplitud_centro": -0.0097, "eje_profundidad_espalda": -0.0311, "eje_robo_alto": -0.0158, "eje_aereo_segunda": -0.0128}, "Tigre": {"eje_verticalidad": 0.0199, "eje_elaboracion": -0.0574, "eje_individual": -0.0175, "eje_rotura_lineas": -0.0004, "eje_amplitud_centro": -0.0171, "eje_profundidad_espalda": -0.0158, "eje_robo_alto": 0.0183, "eje_aereo_segunda": 0.0201}, "Unión": {"eje_verticalidad": -0.0691, "eje_elaboracion": -0.0221, "eje_individual": -0.0122, "eje_rotura_lineas": -0.0124, "eje_amplitud_centro": 0.021, "eje_profundidad_espalda": 0.0608, "eje_robo_alto": 0.0362, "eje_aereo_segunda": 0.0106}, "Vélez Sarsfield": {"eje_verticalidad": -0.0314, "eje_elaboracion": 0.0262, "eje_individual": -0.0027, "eje_rotura_lineas": -0.0081, "eje_amplitud_centro": -0.0165, "eje_profundidad_espalda": -0.0139, "eje_robo_alto": 0.0165, "eje_aereo_segunda": -0.0225}}, "team_eje_norm_con": {"Aldosivi": {"eje_verticalidad": -0.066, "eje_elaboracion": 0.0224, "eje_individual": 0.0015, "eje_rotura_lineas": -0.0003, "eje_amplitud_centro": 0.005, "eje_profundidad_espalda": -0.0119, "eje_robo_alto": 0.0142, "eje_aereo_segunda": -0.0005}, "Argentinos Juniors": {"eje_verticalidad": 0.0361, "eje_elaboracion": -0.0638, "eje_individual": -0.0164, "eje_rotura_lineas": -0.0372, "eje_amplitud_centro": -0.036, "eje_profundidad_espalda": -0.0414, "eje_robo_alto": -0.0564, "eje_aereo_segunda": 0.0283}, "Atlético Tucumán": {"eje_verticalidad": 0.012, "eje_elaboracion": -0.0078, "eje_individual": 0.0105, "eje_rotura_lineas": -0.0114, "eje_amplitud_centro": -0.0065, "eje_profundidad_espalda": -0.0206, "eje_robo_alto": -0.0348, "eje_aereo_segunda": 0.0242}, "Banfield": {"eje_verticalidad": -0.0775, "eje_elaboracion": 0.0539, "eje_individual": 0.0129, "eje_rotura_lineas": 0.0277, "eje_amplitud_centro": -0.0051, "eje_profundidad_espalda": -0.0383, "eje_robo_alto": 0.0357, "eje_aereo_segunda": -0.0037}, "Barracas Central": {"eje_verticalidad": -0.1347, "eje_elaboracion": 0.1203, "eje_individual": 0.0003, "eje_rotura_lineas": 0.009, "eje_amplitud_centro": 0.0583, "eje_profundidad_espalda": 0.0512, "eje_robo_alto": 0.0334, "eje_aereo_segunda": -0.0149}, "Belgrano": {"eje_verticalidad": -0.0593, "eje_elaboracion": 0.0278, "eje_individual": -0.0053, "eje_rotura_lineas": 0.0031, "eje_amplitud_centro": 0.0277, "eje_profundidad_espalda": 0.0023, "eje_robo_alto": -0.0032, "eje_aereo_segunda": -0.0328}, "Boca Juniors": {"eje_verticalidad": -0.0282, "eje_elaboracion": -0.0072, "eje_individual": 0.0295, "eje_rotura_lineas": -0.0178, "eje_amplitud_centro": -0.0071, "eje_profundidad_espalda": -0.0024, "eje_robo_alto": -0.0092, "eje_aereo_segunda": -0.0022}, "Central Córdoba SdE": {"eje_verticalidad": -0.1043, "eje_elaboracion": 0.0377, "eje_individual": 0.0359, "eje_rotura_lineas": 0.029, "eje_amplitud_centro": -0.0059, "eje_profundidad_espalda": 0.0165, "eje_robo_alto": 0.0694, "eje_aereo_segunda": -0.0178}, "Defensa y Justicia": {"eje_verticalidad": -0.0685, "eje_elaboracion": -0.0067, "eje_individual": 0.0006, "eje_rotura_lineas": 0.0222, "eje_amplitud_centro": -0.0064, "eje_profundidad_espalda": 0.0168, "eje_robo_alto": 0.0195, "eje_aereo_segunda": -0.0418}, "Deportivo Riestra": {"eje_verticalidad": -0.014, "eje_elaboracion": 0.0178, "eje_individual": -0.0118, "eje_rotura_lineas": -0.0215, "eje_amplitud_centro": 0.0365, "eje_profundidad_espalda": 0.0178, "eje_robo_alto": -0.0378, "eje_aereo_segunda": 0.0428}, "Estudiantes": {"eje_verticalidad": -0.0442, "eje_elaboracion": 0.0131, "eje_individual": -0.0006, "eje_rotura_lineas": 0.0004, "eje_amplitud_centro": 0.0261, "eje_profundidad_espalda": 0.0162, "eje_robo_alto": 0.0009, "eje_aereo_segunda": -0.0269}, "Estudiantes Río Cuarto": {"eje_verticalidad": -0.0265, "eje_elaboracion": 0.0009, "eje_individual": 0.0132, "eje_rotura_lineas": 0.0432, "eje_amplitud_centro": -0.0023, "eje_profundidad_espalda": 0.0891, "eje_robo_alto": -0.0069, "eje_aereo_segunda": 0.0074}, "Gimnasia La Plata": {"eje_verticalidad": -0.0903, "eje_elaboracion": 0.0301, "eje_individual": 0.015, "eje_rotura_lineas": 0.0116, "eje_amplitud_centro": 0.0189, "eje_profundidad_espalda": 0.0191, "eje_robo_alto": 0.0354, "eje_aereo_segunda": -0.0454}, "Gimnasia Mendoza": {"eje_verticalidad": -0.0442, "eje_elaboracion": 4.4709, "eje_individual": 3.1522, "eje_rotura_lineas": 0.0167, "eje_amplitud_centro": 1.772, "eje_profundidad_espalda": 1.4825, "eje_robo_alto": -0.0107, "eje_aereo_segunda": 0.009}, "Huracán": {"eje_verticalidad": -0.0086, "eje_elaboracion": 0.0053, "eje_individual": -0.0024, "eje_rotura_lineas": -0.015, "eje_amplitud_centro": -0.02, "eje_profundidad_espalda": 0.0114, "eje_robo_alto": -0.0249, "eje_aereo_segunda": 0.0467}, "Independiente": {"eje_verticalidad": 0.0204, "eje_elaboracion": -0.0271, "eje_individual": -0.018, "eje_rotura_lineas": 0.0321, "eje_amplitud_centro": -0.0047, "eje_profundidad_espalda": 0.018, "eje_robo_alto": -0.0197, "eje_aereo_segunda": 0.0257}, "Independiente Rivadavia": {"eje_verticalidad": -0.0088, "eje_elaboracion": 0.0037, "eje_individual": 0.0064, "eje_rotura_lineas": -0.0178, "eje_amplitud_centro": -0.0086, "eje_profundidad_espalda": -0.0356, "eje_robo_alto": -0.06, "eje_aereo_segunda": 0.0072}, "Instituto": {"eje_verticalidad": -0.0193, "eje_elaboracion": 0.0033, "eje_individual": -0.0149, "eje_rotura_lineas": 0.0167, "eje_amplitud_centro": -0.0094, "eje_profundidad_espalda": -0.011, "eje_robo_alto": -0.015, "eje_aereo_segunda": -0.0058}, "Lanús": {"eje_verticalidad": -0.08, "eje_elaboracion": 0.0398, "eje_individual": -0.0038, "eje_rotura_lineas": 0.0158, "eje_amplitud_centro": -0.002, "eje_profundidad_espalda": 0.0178, "eje_robo_alto": 0.0166, "eje_aereo_segunda": -0.0166}, "Newell's Old Boys": {"eje_verticalidad": -0.0402, "eje_elaboracion": 0.0013, "eje_individual": 0.0013, "eje_rotura_lineas": 0.0199, "eje_amplitud_centro": 0.0002, "eje_profundidad_espalda": 0.0059, "eje_robo_alto": -0.0109, "eje_aereo_segunda": 0.006}, "Platense": {"eje_verticalidad": -0.003, "eje_elaboracion": -0.0082, "eje_individual": 0.005, "eje_rotura_lineas": 0.0187, "eje_amplitud_centro": -0.0212, "eje_profundidad_espalda": 0.0028, "eje_robo_alto": -0.0317, "eje_aereo_segunda": 0.0107}, "Racing Club": {"eje_verticalidad": 0.0487, "eje_elaboracion": -0.0851, "eje_individual": -0.0437, "eje_rotura_lineas": -0.0343, "eje_amplitud_centro": -0.0378, "eje_profundidad_espalda": -0.0207, "eje_robo_alto": -0.0232, "eje_aereo_segunda": 0.0279}, "River Plate": {"eje_verticalidad": 0.0694, "eje_elaboracion": -0.0947, "eje_individual": -0.029, "eje_rotura_lineas": -0.0322, "eje_amplitud_centro": -0.0119, "eje_profundidad_espalda": -0.0605, "eje_robo_alto": -0.0232, "eje_aereo_segunda": 0.019}, "Rosario Central": {"eje_verticalidad": 0.0101, "eje_elaboracion": -0.0253, "eje_individual": -0.0233, "eje_rotura_lineas": -0.026, "eje_amplitud_centro": -0.0086, "eje_profundidad_espalda": -0.0303, "eje_robo_alto": -0.0011, "eje_aereo_segunda": -0.0173}, "San Lorenzo": {"eje_verticalidad": -0.0509, "eje_elaboracion": -0.0261, "eje_individual": 0.0278, "eje_rotura_lineas": 0.0224, "eje_amplitud_centro": 0.0011, "eje_profundidad_espalda": 0.0029, "eje_robo_alto": 0.0252, "eje_aereo_segunda": -0.0243}, "Sarmiento": {"eje_verticalidad": -0.035, "eje_elaboracion": -0.013, "eje_individual": 0.0066, "eje_rotura_lineas": -0.0175, "eje_amplitud_centro": -0.0097, "eje_profundidad_espalda": 0.0167, "eje_robo_alto": 0.0298, "eje_aereo_segunda": 0.0093}, "Talleres de Córdoba": {"eje_verticalidad": -0.0394, "eje_elaboracion": -0.0024, "eje_individual": -0.0141, "eje_rotura_lineas": 0.0018, "eje_amplitud_centro": 0.0046, "eje_profundidad_espalda": -0.0161, "eje_robo_alto": 0.0032, "eje_aereo_segunda": -0.0416}, "Tigre": {"eje_verticalidad": -0.0047, "eje_elaboracion": 0.0185, "eje_individual": -0.0061, "eje_rotura_lineas": -0.0003, "eje_amplitud_centro": 0.0246, "eje_profundidad_espalda": 0.0063, "eje_robo_alto": -0.0192, "eje_aereo_segunda": 0.0002}, "Unión": {"eje_verticalidad": -0.0064, "eje_elaboracion": 0.0313, "eje_individual": 0.0177, "eje_rotura_lineas": 0.0049, "eje_amplitud_centro": -0.0072, "eje_profundidad_espalda": 0.0265, "eje_robo_alto": -0.0676, "eje_aereo_segunda": 0.0029}, "Vélez Sarsfield": {"eje_verticalidad": -0.0238, "eje_elaboracion": -0.0151, "eje_individual": -0.0051, "eje_rotura_lineas": -0.0205, "eje_amplitud_centro": 0.0106, "eje_profundidad_espalda": -0.0332, "eje_robo_alto": -0.0084, "eje_aereo_segunda": 0.0095}}} \ No newline at end of file diff --git a/vendor/data/ejes/liga-profesional-argentina/26/team_profiles.parquet b/vendor/data/ejes/liga-profesional-argentina/26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..5f8bbfac33c1585fdc7bde6d7286af1ff74de434 --- /dev/null +++ b/vendor/data/ejes/liga-profesional-argentina/26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf9fd1095032e1f8629e8b0d877dbc8739c644a5cb1212a151ce65da1a1abb68 +size 11260 diff --git a/vendor/data/ejes/norwegian-eliteserien/26/ejes_definition.json b/vendor/data/ejes/norwegian-eliteserien/26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/norwegian-eliteserien/26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/norwegian-eliteserien/26/match_team_ejes.parquet b/vendor/data/ejes/norwegian-eliteserien/26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..11e33e4c306600730b742566d6aa4b6977476814 --- /dev/null +++ b/vendor/data/ejes/norwegian-eliteserien/26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d920d890e75b6859b25a28e6a81cd0e7afb50045a7c47a18d020549bcd159e1 +size 28621 diff --git a/vendor/data/ejes/norwegian-eliteserien/26/match_team_vars.parquet b/vendor/data/ejes/norwegian-eliteserien/26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..3bf50651d23b1979b7e54d2c3c8d952eeaf2430f --- /dev/null +++ b/vendor/data/ejes/norwegian-eliteserien/26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e74e9f606552d86e130827dbed47e460e27ea8ae015043c7649542acd9ee6396 +size 102846 diff --git a/vendor/data/ejes/norwegian-eliteserien/26/predictor.json b/vendor/data/ejes/norwegian-eliteserien/26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..447dcbdc0c0fd3a8041a21d3981e4a4e70ecf8ae --- /dev/null +++ b/vendor/data/ejes/norwegian-eliteserien/26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.8752, "con": 0.335, "intercept": 0.0051}, "elaboracion": {"gen": 0.9189, "con": 0.7405, "intercept": -0.0009}, "individual": {"gen": 0.5272, "con": -0.2835, "intercept": -0.0003}, "rotura_lineas": {"gen": 0.812, "con": 0.4091, "intercept": -0.0003}, "amplitud_centro": {"gen": 0.4126, "con": 0.1225, "intercept": 0.0002}, "profundidad_espalda": {"gen": 0.777, "con": 0.1165, "intercept": 0.0001}, "robo_alto": {"gen": 0.7206, "con": 0.487, "intercept": 0.0008}, "aereo_segunda": {"gen": 0.7788, "con": 0.2086, "intercept": -0.0}} \ No newline at end of file diff --git a/vendor/data/ejes/norwegian-eliteserien/26/scales.json b/vendor/data/ejes/norwegian-eliteserien/26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..89845e039c3a10467491698db0d7c2873328cd00 --- /dev/null +++ b/vendor/data/ejes/norwegian-eliteserien/26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 1.64, "atk_w": 1.2047, "ball_distance": 51.4248, "behind_line_ok": 0.0296, "broke_last_line": 0.0163, "broke_second_last": 0.0472, "cross_pvadded_max": 0.0017, "dang_runs": 0.0796, "deep_completions": 0.1619, "def_h": 2.928, "dribbles_box": 0.0093, "dribbles_last_third": 0.0233, "duration_s": 18.2259, "hold_max": 1.1072, "hold_mean": 0.8245, "hold_min": 0.8133, "line_breaks": 0.3121, "max_x": 3.6262, "n_centros": 0.0449, "n_events": 1.6607, "n_involved": 0.1652, "n_passes": 0.5725, "opt_quality_mean": 0.1364, "paredes": 0.1172, "pass_options_mean": 2.0225, "passes_behind_line": 0.0519, "pct_adentro": 0.0356, "pct_afuera": 0.0339, "pct_cortos": 0.0529, "pct_headpass": 0.0139, "pct_largos": 0.0437, "pct_launch": 0.0328, "pct_layoff": 0.0046, "pct_medios": 0.0412, "pct_switch": 0.0039, "pct_through": 0.0028, "pct_verticales": 0.0466, "pelotazos_espalda": 0.0407, "press_final": 0.666, "press_media": 0.4772, "prog_x": 2.5169, "start_x": 4.1168, "starts_from_dispossess": 0.0168, "takeons_ok": 0.0191, "tempo": 0.0394, "transition_speed": 0.7373, "verticalidad_media": 0.0587}, "eje_sigma": {"eje_verticalidad": 0.1032, "eje_elaboracion": 0.0922, "eje_individual": 0.0589, "eje_rotura_lineas": 0.0621, "eje_amplitud_centro": 0.0556, "eje_profundidad_espalda": 0.0984, "eje_robo_alto": 0.0867, "eje_aereo_segunda": 0.0588}, "eje_match_mean": {"eje_verticalidad": -0.0241, "eje_elaboracion": 0.0013, "eje_individual": -0.0004, "eje_rotura_lineas": 0.0011, "eje_amplitud_centro": 0.0003, "eje_profundidad_espalda": 0.0011, "eje_robo_alto": -0.004, "eje_aereo_segunda": -0.001}, "eje_match_std": {"eje_verticalidad": 0.1358, "eje_elaboracion": 0.121, "eje_individual": 0.0653, "eje_rotura_lineas": 0.0767, "eje_amplitud_centro": 0.0603, "eje_profundidad_espalda": 0.1187, "eje_robo_alto": 0.1003, "eje_aereo_segunda": 0.0709}, "team_var_norm": {"Aalesund": {"atk_l": 38.5959, "atk_w": 30.6607, "ball_distance": 87.8012, "behind_line_ok": 0.0432, "broke_last_line": 0.0243, "broke_second_last": 0.1565, "cross_pvadded_max": 0.0014, "dang_runs": 0.0836, "deep_completions": 0.3292, "def_h": 33.4804, "dribbles_box": 0.0123, "dribbles_last_third": 0.0572, "duration_s": 17.7827, "hold_max": 9.6155, "hold_mean": 5.8754, "hold_min": 3.6662, "line_breaks": 0.5364, "max_x": 66.7974, "n_centros": 0.1161, "n_events": 4.5538, "n_involved": 1.8176, "n_passes": 2.7492, "opt_quality_mean": 0.0107, "paredes": 0.2318, "pass_options_mean": 7.1198, "passes_behind_line": 0.1185, "pct_adentro": 0.5178, "pct_afuera": 0.393, "pct_cortos": 0.3806, "pct_headpass": 0.0413, "pct_largos": 0.2173, "pct_launch": 0.1084, "pct_layoff": 0.0081, "pct_medios": 0.3133, "pct_switch": 0.0029, "pct_through": 0.0025, "pct_verticales": 0.5123, "pelotazos_espalda": 0.089, "press_final": 2.7517, "press_media": 1.9973, "prog_x": 25.2183, "start_x": 43.0849, "starts_from_dispossess": 0.0426, "takeons_ok": 0.0481, "tempo": 0.4031, "transition_speed": 4.1899, "verticalidad_media": 0.377}, "Bodø / Glimt": {"atk_l": 39.0803, "atk_w": 29.4362, "ball_distance": 227.2097, "behind_line_ok": 0.104, "broke_last_line": 0.0431, "broke_second_last": 0.2745, "cross_pvadded_max": 0.0019, "dang_runs": 0.2034, "deep_completions": 1.064, "def_h": 28.1498, "dribbles_box": 0.015, "dribbles_last_third": 0.0746, "duration_s": 44.359, "hold_max": 9.1253, "hold_mean": 4.6972, "hold_min": 2.5601, "line_breaks": 1.0632, "max_x": 73.7789, "n_centros": 0.1535, "n_events": 8.0422, "n_involved": 2.1576, "n_passes": 4.695, "opt_quality_mean": 0.363, "paredes": 0.5557, "pass_options_mean": 8.6874, "passes_behind_line": 0.1797, "pct_adentro": 0.5391, "pct_afuera": 0.3802, "pct_cortos": 0.4252, "pct_headpass": 0.0323, "pct_largos": 0.1441, "pct_launch": 0.058, "pct_layoff": 0.008, "pct_medios": 0.3513, "pct_switch": 0.006, "pct_through": 0.0037, "pct_verticales": 0.4038, "pelotazos_espalda": 0.0865, "press_final": 2.4249, "press_media": 2.0161, "prog_x": 23.4699, "start_x": 51.4405, "starts_from_dispossess": 0.058, "takeons_ok": 0.0521, "tempo": 0.3837, "transition_speed": 2.5168, "verticalidad_media": 0.2317}, "Brann": {"atk_l": 38.4952, "atk_w": 31.2872, "ball_distance": 108.9029, "behind_line_ok": 0.0524, "broke_last_line": 0.0305, "broke_second_last": 0.1703, "cross_pvadded_max": 0.0014, "dang_runs": 0.1188, "deep_completions": 0.4596, "def_h": 30.9476, "dribbles_box": 0.0107, "dribbles_last_third": 0.0511, "duration_s": 27.0561, "hold_max": 8.9344, "hold_mean": 5.2872, "hold_min": 3.1424, "line_breaks": 0.5621, "max_x": 69.2895, "n_centros": 0.1239, "n_events": 5.8022, "n_involved": 1.9204, "n_passes": 3.2251, "opt_quality_mean": 0.1322, "paredes": 0.3026, "pass_options_mean": 7.3797, "passes_behind_line": 0.1285, "pct_adentro": 0.5146, "pct_afuera": 0.4069, "pct_cortos": 0.4035, "pct_headpass": 0.0502, "pct_largos": 0.1999, "pct_launch": 0.1016, "pct_layoff": 0.0088, "pct_medios": 0.3184, "pct_switch": 0.0044, "pct_through": 0.0001, "pct_verticales": 0.477, "pelotazos_espalda": 0.0838, "press_final": 2.382, "press_media": 1.8391, "prog_x": 23.577, "start_x": 46.7624, "starts_from_dispossess": 0.0374, "takeons_ok": 0.0355, "tempo": 0.3829, "transition_speed": 3.3549, "verticalidad_media": 0.3232}, "Fredrikstad": {"atk_l": 39.6026, "atk_w": 30.5658, "ball_distance": 125.831, "behind_line_ok": 0.0629, "broke_last_line": 0.0346, "broke_second_last": 0.1446, "cross_pvadded_max": 0.0018, "dang_runs": 0.1074, "deep_completions": 0.3246, "def_h": 31.3049, "dribbles_box": 0.0122, "dribbles_last_third": 0.0502, "duration_s": 30.2373, "hold_max": 10.4262, "hold_mean": 6.3832, "hold_min": 4.1388, "line_breaks": 0.5361, "max_x": 68.7309, "n_centros": 0.1192, "n_events": 6.0287, "n_involved": 1.883, "n_passes": 3.3217, "opt_quality_mean": -0.0003, "paredes": 0.274, "pass_options_mean": 7.2304, "passes_behind_line": 0.1566, "pct_adentro": 0.5211, "pct_afuera": 0.4022, "pct_cortos": 0.3333, "pct_headpass": 0.0497, "pct_largos": 0.2569, "pct_launch": 0.1269, "pct_layoff": 0.0061, "pct_medios": 0.3341, "pct_switch": 0.003, "pct_through": 0.0025, "pct_verticales": 0.5073, "pelotazos_espalda": 0.1228, "press_final": 2.3597, "press_media": 1.7906, "prog_x": 25.4712, "start_x": 44.2597, "starts_from_dispossess": 0.0393, "takeons_ok": 0.0477, "tempo": 0.3635, "transition_speed": 3.7038, "verticalidad_media": 0.3508}, "HamKam": {"atk_l": 41.9271, "atk_w": 32.1783, "ball_distance": 133.5509, "behind_line_ok": 0.0555, "broke_last_line": 0.0285, "broke_second_last": 0.18, "cross_pvadded_max": 0.0023, "dang_runs": 0.0971, "deep_completions": 0.3321, "def_h": 32.9109, "dribbles_box": 0.0115, "dribbles_last_third": 0.042, "duration_s": 30.6058, "hold_max": 10.2071, "hold_mean": 6.0212, "hold_min": 3.594, "line_breaks": 0.6825, "max_x": 68.0365, "n_centros": 0.1451, "n_events": 5.9913, "n_involved": 1.8855, "n_passes": 3.4298, "opt_quality_mean": 0.0203, "paredes": 0.3253, "pass_options_mean": 7.5295, "passes_behind_line": 0.1536, "pct_adentro": 0.506, "pct_afuera": 0.4047, "pct_cortos": 0.3494, "pct_headpass": 0.0539, "pct_largos": 0.2394, "pct_launch": 0.1171, "pct_layoff": 0.0056, "pct_medios": 0.3231, "pct_switch": 0.0045, "pct_through": 0.0009, "pct_verticales": 0.4698, "pelotazos_espalda": 0.1162, "press_final": 2.538, "press_media": 1.8923, "prog_x": 25.1953, "start_x": 43.986, "starts_from_dispossess": 0.0381, "takeons_ok": 0.0519, "tempo": 0.3698, "transition_speed": 3.6128, "verticalidad_media": 0.3236}, "KFUM": {"atk_l": 40.9589, "atk_w": 30.1952, "ball_distance": 123.1714, "behind_line_ok": 0.0607, "broke_last_line": 0.0285, "broke_second_last": 0.144, "cross_pvadded_max": 0.0019, "dang_runs": 0.1091, "deep_completions": 0.3226, "def_h": 32.8636, "dribbles_box": 0.0061, "dribbles_last_third": 0.0352, "duration_s": 29.245, "hold_max": 10.0345, "hold_mean": 6.0311, "hold_min": 3.7776, "line_breaks": 0.6187, "max_x": 67.8076, "n_centros": 0.1077, "n_events": 5.7856, "n_involved": 1.8943, "n_passes": 3.1941, "opt_quality_mean": 0.009, "paredes": 0.327, "pass_options_mean": 7.0533, "passes_behind_line": 0.1751, "pct_adentro": 0.5058, "pct_afuera": 0.4163, "pct_cortos": 0.3655, "pct_headpass": 0.0439, "pct_largos": 0.2389, "pct_launch": 0.131, "pct_layoff": 0.0105, "pct_medios": 0.3186, "pct_switch": 0.002, "pct_through": 0.0012, "pct_verticales": 0.5332, "pelotazos_espalda": 0.1312, "press_final": 2.6107, "press_media": 1.9473, "prog_x": 26.1001, "start_x": 42.5296, "starts_from_dispossess": 0.0268, "takeons_ok": 0.0417, "tempo": 0.3953, "transition_speed": 4.0979, "verticalidad_media": 0.3842}, "Kristiansund": {"atk_l": 39.3932, "atk_w": 31.8031, "ball_distance": 122.6465, "behind_line_ok": 0.0511, "broke_last_line": 0.0124, "broke_second_last": 0.1506, "cross_pvadded_max": 0.0018, "dang_runs": 0.117, "deep_completions": 0.2725, "def_h": 32.767, "dribbles_box": 0.0098, "dribbles_last_third": 0.0565, "duration_s": 29.0383, "hold_max": 10.1726, "hold_mean": 6.1818, "hold_min": 3.8591, "line_breaks": 0.5407, "max_x": 68.1589, "n_centros": 0.1058, "n_events": 5.6425, "n_involved": 1.8783, "n_passes": 3.0133, "opt_quality_mean": -0.0069, "paredes": 0.2796, "pass_options_mean": 7.0069, "passes_behind_line": 0.1527, "pct_adentro": 0.5218, "pct_afuera": 0.3837, "pct_cortos": 0.3244, "pct_headpass": 0.0376, "pct_largos": 0.2407, "pct_launch": 0.1115, "pct_layoff": 0.0067, "pct_medios": 0.3416, "pct_switch": 0.0048, "pct_through": 0.0011, "pct_verticales": 0.4972, "pelotazos_espalda": 0.1208, "press_final": 2.474, "press_media": 1.7447, "prog_x": 26.014, "start_x": 43.6429, "starts_from_dispossess": 0.0477, "takeons_ok": 0.058, "tempo": 0.3564, "transition_speed": 3.9971, "verticalidad_media": 0.357}, "Lillestrøm": {"atk_l": 39.5692, "atk_w": 30.1143, "ball_distance": 142.1863, "behind_line_ok": 0.0598, "broke_last_line": 0.0293, "broke_second_last": 0.1457, "cross_pvadded_max": 0.0007, "dang_runs": 0.1758, "deep_completions": 0.4319, "def_h": 32.5768, "dribbles_box": 0.0173, "dribbles_last_third": 0.0676, "duration_s": 26.3803, "hold_max": 9.0733, "hold_mean": 5.3391, "hold_min": 3.2315, "line_breaks": 0.8226, "max_x": 66.6377, "n_centros": 0.0778, "n_events": 5.8736, "n_involved": 2.024, "n_passes": 3.512, "opt_quality_mean": 0.1068, "paredes": 0.331, "pass_options_mean": 8.089, "passes_behind_line": 0.1292, "pct_adentro": 0.5232, "pct_afuera": 0.4052, "pct_cortos": 0.4526, "pct_headpass": 0.0473, "pct_largos": 0.1763, "pct_launch": 0.0837, "pct_layoff": 0.0108, "pct_medios": 0.2999, "pct_switch": 0.0068, "pct_through": 0.0005, "pct_verticales": 0.4564, "pelotazos_espalda": 0.0851, "press_final": 2.9267, "press_media": 2.1197, "prog_x": 22.0001, "start_x": 45.71, "starts_from_dispossess": 0.0471, "takeons_ok": 0.0479, "tempo": 0.3968, "transition_speed": 2.9127, "verticalidad_media": 0.2901}, "Molde": {"atk_l": 41.0149, "atk_w": 30.329, "ball_distance": 139.9686, "behind_line_ok": 0.0628, "broke_last_line": 0.0338, "broke_second_last": 0.1608, "cross_pvadded_max": 0.0018, "dang_runs": 0.1115, "deep_completions": 0.4753, "def_h": 33.5333, "dribbles_box": 0.0066, "dribbles_last_third": 0.0531, "duration_s": 20.8325, "hold_max": 9.1861, "hold_mean": 5.0458, "hold_min": 2.9032, "line_breaks": 0.734, "max_x": 65.6923, "n_centros": 0.126, "n_events": 5.7149, "n_involved": 2.123, "n_passes": 3.9769, "opt_quality_mean": 0.0415, "paredes": 0.4413, "pass_options_mean": 6.8342, "passes_behind_line": 0.1099, "pct_adentro": 0.5112, "pct_afuera": 0.4019, "pct_cortos": 0.4582, "pct_headpass": 0.0322, "pct_largos": 0.1527, "pct_launch": 0.088, "pct_layoff": 0.0106, "pct_medios": 0.303, "pct_switch": 0.0031, "pct_through": 0.0008, "pct_verticales": 0.4333, "pelotazos_espalda": 0.0637, "press_final": 2.2478, "press_media": 1.6877, "prog_x": 22.78, "start_x": 44.0397, "starts_from_dispossess": 0.0432, "takeons_ok": 0.0425, "tempo": 0.387, "transition_speed": 2.8621, "verticalidad_media": 0.2767}, "Rosenborg": {"atk_l": 40.9726, "atk_w": 30.8601, "ball_distance": 127.6669, "behind_line_ok": 0.0488, "broke_last_line": 0.0187, "broke_second_last": 0.1496, "cross_pvadded_max": 0.0007, "dang_runs": 0.1492, "deep_completions": 0.2989, "def_h": 32.9192, "dribbles_box": 0.011, "dribbles_last_third": 0.0563, "duration_s": 40.7159, "hold_max": 10.0121, "hold_mean": 5.5744, "hold_min": 3.1404, "line_breaks": 0.9036, "max_x": 65.7451, "n_centros": 0.0872, "n_events": 6.8235, "n_involved": 1.9867, "n_passes": 3.1921, "opt_quality_mean": 0.0423, "paredes": 0.2724, "pass_options_mean": 7.3293, "passes_behind_line": 0.1121, "pct_adentro": 0.5156, "pct_afuera": 0.3928, "pct_cortos": 0.4127, "pct_headpass": 0.0401, "pct_largos": 0.1859, "pct_launch": 0.0815, "pct_layoff": 0.0098, "pct_medios": 0.3107, "pct_switch": 0.0061, "pct_through": 0.0025, "pct_verticales": 0.484, "pelotazos_espalda": 0.0791, "press_final": 2.5996, "press_media": 1.9646, "prog_x": 22.9023, "start_x": 43.8947, "starts_from_dispossess": 0.0348, "takeons_ok": 0.0468, "tempo": 0.3958, "transition_speed": 3.6066, "verticalidad_media": 0.3363}, "Sandefjord": {"atk_l": 42.0209, "atk_w": 31.5045, "ball_distance": 138.8639, "behind_line_ok": 0.0597, "broke_last_line": 0.0325, "broke_second_last": 0.1501, "cross_pvadded_max": 0.0007, "dang_runs": 0.1142, "deep_completions": 0.3549, "def_h": 32.3321, "dribbles_box": 0.0065, "dribbles_last_third": 0.0545, "duration_s": 16.1003, "hold_max": 9.1329, "hold_mean": 5.324, "hold_min": 3.0444, "line_breaks": 0.7187, "max_x": 65.686, "n_centros": 0.1172, "n_events": 4.8298, "n_involved": 1.9485, "n_passes": 3.3813, "opt_quality_mean": -0.0029, "paredes": 0.3262, "pass_options_mean": 8.2158, "passes_behind_line": 0.1301, "pct_adentro": 0.5085, "pct_afuera": 0.4012, "pct_cortos": 0.4324, "pct_headpass": 0.0422, "pct_largos": 0.1917, "pct_launch": 0.1032, "pct_layoff": 0.0078, "pct_medios": 0.286, "pct_switch": 0.0075, "pct_through": 0.0017, "pct_verticales": 0.4548, "pelotazos_espalda": 0.0852, "press_final": 2.744, "press_media": 2.1263, "prog_x": 22.1753, "start_x": 44.7215, "starts_from_dispossess": 0.044, "takeons_ok": 0.0514, "tempo": 0.393, "transition_speed": 3.392, "verticalidad_media": 0.3041}, "Sarpsborg 08": {"atk_l": 39.0466, "atk_w": 30.5974, "ball_distance": 85.6478, "behind_line_ok": 0.0348, "broke_last_line": 0.0253, "broke_second_last": 0.1195, "cross_pvadded_max": 0.0024, "dang_runs": 0.1175, "deep_completions": 0.3589, "def_h": 32.8572, "dribbles_box": 0.0072, "dribbles_last_third": 0.0376, "duration_s": 17.5236, "hold_max": 10.096, "hold_mean": 6.1238, "hold_min": 3.7138, "line_breaks": 0.3856, "max_x": 67.5483, "n_centros": 0.1318, "n_events": 4.5002, "n_involved": 1.7898, "n_passes": 2.78, "opt_quality_mean": 0.0645, "paredes": 0.2535, "pass_options_mean": 7.1419, "passes_behind_line": 0.1173, "pct_adentro": 0.5034, "pct_afuera": 0.4115, "pct_cortos": 0.3945, "pct_headpass": 0.0444, "pct_largos": 0.2383, "pct_launch": 0.1217, "pct_layoff": 0.011, "pct_medios": 0.2836, "pct_switch": 0.0069, "pct_through": 0.0019, "pct_verticales": 0.4954, "pelotazos_espalda": 0.0908, "press_final": 2.4651, "press_media": 1.8643, "prog_x": 24.5297, "start_x": 43.7139, "starts_from_dispossess": 0.037, "takeons_ok": 0.0397, "tempo": 0.3909, "transition_speed": 3.8566, "verticalidad_media": 0.359}, "Start": {"atk_l": 38.5325, "atk_w": 30.7963, "ball_distance": 88.156, "behind_line_ok": 0.0416, "broke_last_line": 0.0192, "broke_second_last": 0.1418, "cross_pvadded_max": 0.0006, "dang_runs": 0.1146, "deep_completions": 0.2573, "def_h": 31.5312, "dribbles_box": 0.0074, "dribbles_last_third": 0.045, "duration_s": 24.8014, "hold_max": 10.4803, "hold_mean": 6.6308, "hold_min": 4.216, "line_breaks": 0.4029, "max_x": 68.615, "n_centros": 0.0968, "n_events": 5.0432, "n_involved": 1.8405, "n_passes": 2.5015, "opt_quality_mean": 0.0175, "paredes": 0.1597, "pass_options_mean": 6.5989, "passes_behind_line": 0.1345, "pct_adentro": 0.5205, "pct_afuera": 0.3932, "pct_cortos": 0.3331, "pct_headpass": 0.0629, "pct_largos": 0.2651, "pct_launch": 0.1446, "pct_layoff": 0.0088, "pct_medios": 0.3179, "pct_switch": 0.0048, "pct_through": 0.001, "pct_verticales": 0.5403, "pelotazos_espalda": 0.1157, "press_final": 2.3399, "press_media": 1.7757, "prog_x": 24.9871, "start_x": 44.9798, "starts_from_dispossess": 0.0402, "takeons_ok": 0.0342, "tempo": 0.3938, "transition_speed": 4.3256, "verticalidad_media": 0.4056}, "Tromsø": {"atk_l": 42.0054, "atk_w": 30.7717, "ball_distance": 145.2761, "behind_line_ok": 0.0594, "broke_last_line": 0.0337, "broke_second_last": 0.1956, "cross_pvadded_max": 0.0019, "dang_runs": 0.1031, "deep_completions": 0.4231, "def_h": 31.1584, "dribbles_box": 0.009, "dribbles_last_third": 0.0447, "duration_s": 33.814, "hold_max": 9.6345, "hold_mean": 5.3372, "hold_min": 2.8935, "line_breaks": 0.8745, "max_x": 68.5055, "n_centros": 0.1333, "n_events": 6.5313, "n_involved": 2.028, "n_passes": 3.6475, "opt_quality_mean": 0.0917, "paredes": 0.3578, "pass_options_mean": 7.7029, "passes_behind_line": 0.1349, "pct_adentro": 0.5183, "pct_afuera": 0.3956, "pct_cortos": 0.3746, "pct_headpass": 0.0491, "pct_largos": 0.2024, "pct_launch": 0.0969, "pct_layoff": 0.008, "pct_medios": 0.3376, "pct_switch": 0.0047, "pct_through": 0.0017, "pct_verticales": 0.4389, "pelotazos_espalda": 0.0925, "press_final": 2.5016, "press_media": 1.8539, "prog_x": 23.6677, "start_x": 46.2211, "starts_from_dispossess": 0.0404, "takeons_ok": 0.0432, "tempo": 0.407, "transition_speed": 3.5234, "verticalidad_media": 0.2448}, "Viking": {"atk_l": 40.759, "atk_w": 30.9831, "ball_distance": 136.5655, "behind_line_ok": 0.0728, "broke_last_line": 0.0287, "broke_second_last": 0.1631, "cross_pvadded_max": 0.0022, "dang_runs": 0.1479, "deep_completions": 0.4616, "def_h": 29.9109, "dribbles_box": 0.0095, "dribbles_last_third": 0.0396, "duration_s": 26.7175, "hold_max": 8.9477, "hold_mean": 5.339, "hold_min": 3.2213, "line_breaks": 0.639, "max_x": 70.4332, "n_centros": 0.1469, "n_events": 5.6406, "n_involved": 1.9349, "n_passes": 3.1229, "opt_quality_mean": 0.1433, "paredes": 0.274, "pass_options_mean": 8.0201, "passes_behind_line": 0.1584, "pct_adentro": 0.5238, "pct_afuera": 0.4003, "pct_cortos": 0.3736, "pct_headpass": 0.0496, "pct_largos": 0.2175, "pct_launch": 0.1064, "pct_layoff": 0.0081, "pct_medios": 0.333, "pct_switch": 0.0064, "pct_through": 0.0015, "pct_verticales": 0.4792, "pelotazos_espalda": 0.1151, "press_final": 2.4709, "press_media": 1.9444, "prog_x": 24.6549, "start_x": 46.8202, "starts_from_dispossess": 0.0411, "takeons_ok": 0.0277, "tempo": 0.3986, "transition_speed": 3.9654, "verticalidad_media": 0.3329}, "Vålerenga": {"atk_l": 39.4854, "atk_w": 30.3852, "ball_distance": 109.0826, "behind_line_ok": 0.0564, "broke_last_line": 0.0336, "broke_second_last": 0.1483, "cross_pvadded_max": 0.0008, "dang_runs": 0.1642, "deep_completions": 0.4341, "def_h": 31.148, "dribbles_box": 0.013, "dribbles_last_third": 0.0509, "duration_s": 25.1816, "hold_max": 9.104, "hold_mean": 5.3022, "hold_min": 3.198, "line_breaks": 0.5808, "max_x": 69.2483, "n_centros": 0.1503, "n_events": 5.6143, "n_involved": 1.8921, "n_passes": 3.2538, "opt_quality_mean": 0.1504, "paredes": 0.3281, "pass_options_mean": 7.4158, "passes_behind_line": 0.1276, "pct_adentro": 0.5168, "pct_afuera": 0.3916, "pct_cortos": 0.3881, "pct_headpass": 0.0414, "pct_largos": 0.2013, "pct_launch": 0.0874, "pct_layoff": 0.0062, "pct_medios": 0.3197, "pct_switch": 0.0023, "pct_through": 0.0021, "pct_verticales": 0.4657, "pelotazos_espalda": 0.0871, "press_final": 2.3664, "press_media": 1.8354, "prog_x": 24.4313, "start_x": 45.8297, "starts_from_dispossess": 0.0487, "takeons_ok": 0.041, "tempo": 0.3808, "transition_speed": 3.4269, "verticalidad_media": 0.3112}}, "team_eje_norm_gen": {"Aalesund": {"eje_verticalidad": 0.0509, "eje_elaboracion": -0.0722, "eje_individual": 0.0021, "eje_rotura_lineas": -0.0128, "eje_amplitud_centro": -0.0229, "eje_profundidad_espalda": -0.0543, "eje_robo_alto": -0.0391, "eje_aereo_segunda": -0.006}, "Bodø / Glimt": {"eje_verticalidad": -0.2091, "eje_elaboracion": 0.2019, "eje_individual": 0.0681, "eje_rotura_lineas": 0.1447, "eje_amplitud_centro": 0.0245, "eje_profundidad_espalda": 0.2288, "eje_robo_alto": 0.1534, "eje_aereo_segunda": -0.0882}, "Brann": {"eje_verticalidad": -0.0398, "eje_elaboracion": 0.0022, "eje_individual": -0.0116, "eje_rotura_lineas": -0.0124, "eje_amplitud_centro": 0.0084, "eje_profundidad_espalda": -0.0102, "eje_robo_alto": 0.0157, "eje_aereo_segunda": 0.0088}, "Fredrikstad": {"eje_verticalidad": 0.0514, "eje_elaboracion": -0.0444, "eje_individual": 0.0013, "eje_rotura_lineas": -0.005, "eje_amplitud_centro": -0.0103, "eje_profundidad_espalda": 0.0175, "eje_robo_alto": -0.0258, "eje_aereo_segunda": 0.0223}, "HamKam": {"eje_verticalidad": -0.0087, "eje_elaboracion": -0.0108, "eje_individual": -0.0075, "eje_rotura_lineas": 0.008, "eje_amplitud_centro": 0.0285, "eje_profundidad_espalda": 0.0047, "eje_robo_alto": -0.0338, "eje_aereo_segunda": 0.0159}, "KFUM": {"eje_verticalidad": 0.0866, "eje_elaboracion": -0.0157, "eje_individual": -0.0356, "eje_rotura_lineas": -0.0174, "eje_amplitud_centro": -0.0152, "eje_profundidad_espalda": 0.0344, "eje_robo_alto": -0.0888, "eje_aereo_segunda": 0.0433}, "Kristiansund": {"eje_verticalidad": 0.04, "eje_elaboracion": -0.0692, "eje_individual": 0.0169, "eje_rotura_lineas": -0.0449, "eje_amplitud_centro": -0.0288, "eje_profundidad_espalda": -0.0113, "eje_robo_alto": -0.016, "eje_aereo_segunda": -0.0191}, "Lillestrøm": {"eje_verticalidad": -0.1038, "eje_elaboracion": 0.0613, "eje_individual": 0.0529, "eje_rotura_lineas": -0.0028, "eje_amplitud_centro": -0.0224, "eje_profundidad_espalda": -0.0085, "eje_robo_alto": 0.0205, "eje_aereo_segunda": -0.0069}, "Molde": {"eje_verticalidad": -0.1508, "eje_elaboracion": 0.1247, "eje_individual": -0.0135, "eje_rotura_lineas": 0.0078, "eje_amplitud_centro": -0.0029, "eje_profundidad_espalda": -0.0256, "eje_robo_alto": -0.02, "eje_aereo_segunda": -0.0348}, "Rosenborg": {"eje_verticalidad": -0.0345, "eje_elaboracion": 0.0071, "eje_individual": 0.0167, "eje_rotura_lineas": 0.0078, "eje_amplitud_centro": -0.0294, "eje_profundidad_espalda": -0.0691, "eje_robo_alto": -0.0438, "eje_aereo_segunda": -0.031}, "Sandefjord": {"eje_verticalidad": -0.0739, "eje_elaboracion": 0.0304, "eje_individual": -0.0014, "eje_rotura_lineas": 0.005, "eje_amplitud_centro": 0.0179, "eje_profundidad_espalda": -0.0273, "eje_robo_alto": -0.0053, "eje_aereo_segunda": -0.0127}, "Sarpsborg 08": {"eje_verticalidad": 0.0353, "eje_elaboracion": -0.0545, "eje_individual": -0.0299, "eje_rotura_lineas": -0.0524, "eje_amplitud_centro": 0.0384, "eje_profundidad_espalda": -0.0542, "eje_robo_alto": -0.0414, "eje_aereo_segunda": 0.0356}, "Start": {"eje_verticalidad": 0.1295, "eje_elaboracion": -0.1365, "eje_individual": -0.0287, "eje_rotura_lineas": -0.0534, "eje_amplitud_centro": -0.0287, "eje_profundidad_espalda": -0.0409, "eje_robo_alto": -0.0101, "eje_aereo_segunda": 0.0892}, "Tromsø": {"eje_verticalidad": -0.1013, "eje_elaboracion": 0.0323, "eje_individual": -0.0185, "eje_rotura_lineas": 0.0489, "eje_amplitud_centro": 0.0091, "eje_profundidad_espalda": -0.0011, "eje_robo_alto": 0.0132, "eje_aereo_segunda": -0.0041}, "Viking": {"eje_verticalidad": 0.0029, "eje_elaboracion": -0.0331, "eje_individual": -0.0268, "eje_rotura_lineas": -0.0015, "eje_amplitud_centro": 0.0397, "eje_profundidad_espalda": 0.0564, "eje_robo_alto": 0.0259, "eje_aereo_segunda": 0.0089}, "Vålerenga": {"eje_verticalidad": -0.0541, "eje_elaboracion": 0.0004, "eje_individual": 0.0138, "eje_rotura_lineas": -0.0037, "eje_amplitud_centro": 0.0058, "eje_profundidad_espalda": -0.0106, "eje_robo_alto": 0.0267, "eje_aereo_segunda": -0.044}}, "team_eje_norm_con": {"Aalesund": {"eje_verticalidad": -0.0308, "eje_elaboracion": -0.0045, "eje_individual": -0.0065, "eje_rotura_lineas": 0.0221, "eje_amplitud_centro": -0.0007, "eje_profundidad_espalda": 0.0145, "eje_robo_alto": 0.0385, "eje_aereo_segunda": 0.0138}, "Bodø / Glimt": {"eje_verticalidad": 0.0437, "eje_elaboracion": -0.0736, "eje_individual": -0.0347, "eje_rotura_lineas": -0.0193, "eje_amplitud_centro": -0.023, "eje_profundidad_espalda": -0.0216, "eje_robo_alto": -0.1057, "eje_aereo_segunda": 0.0024}, "Brann": {"eje_verticalidad": 0.0665, "eje_elaboracion": -0.1267, "eje_individual": -0.0104, "eje_rotura_lineas": -0.0301, "eje_amplitud_centro": -0.005, "eje_profundidad_espalda": -0.0354, "eje_robo_alto": -0.0371, "eje_aereo_segunda": 0.0167}, "Fredrikstad": {"eje_verticalidad": -0.0365, "eje_elaboracion": 0.0231, "eje_individual": -0.0051, "eje_rotura_lineas": -0.0214, "eje_amplitud_centro": -0.0115, "eje_profundidad_espalda": -0.0635, "eje_robo_alto": -0.0195, "eje_aereo_segunda": 0.011}, "HamKam": {"eje_verticalidad": -0.0746, "eje_elaboracion": 0.0728, "eje_individual": 0.0109, "eje_rotura_lineas": 0.0233, "eje_amplitud_centro": 0.0132, "eje_profundidad_espalda": 0.0401, "eje_robo_alto": -0.0007, "eje_aereo_segunda": 0.0036}, "KFUM": {"eje_verticalidad": -0.0081, "eje_elaboracion": 0.0222, "eje_individual": 0.002, "eje_rotura_lineas": 0.0215, "eje_amplitud_centro": -0.0023, "eje_profundidad_espalda": 0.0382, "eje_robo_alto": -0.0075, "eje_aereo_segunda": 0.05}, "Kristiansund": {"eje_verticalidad": -0.0927, "eje_elaboracion": 0.0713, "eje_individual": 0.0204, "eje_rotura_lineas": 0.059, "eje_amplitud_centro": 0.023, "eje_profundidad_espalda": 0.0059, "eje_robo_alto": 0.0454, "eje_aereo_segunda": -0.0481}, "Lillestrøm": {"eje_verticalidad": -0.0456, "eje_elaboracion": 0.0212, "eje_individual": 0.0135, "eje_rotura_lineas": 0.0331, "eje_amplitud_centro": -0.0261, "eje_profundidad_espalda": -0.024, "eje_robo_alto": 0.0451, "eje_aereo_segunda": -0.0044}, "Molde": {"eje_verticalidad": -0.0001, "eje_elaboracion": -0.0447, "eje_individual": -0.0003, "eje_rotura_lineas": -0.0347, "eje_amplitud_centro": 0.0119, "eje_profundidad_espalda": -0.0263, "eje_robo_alto": 0.0166, "eje_aereo_segunda": -0.0316}, "Rosenborg": {"eje_verticalidad": -0.0594, "eje_elaboracion": -0.0055, "eje_individual": -0.0012, "eje_rotura_lineas": 0.0045, "eje_amplitud_centro": 0.0107, "eje_profundidad_espalda": -0.0203, "eje_robo_alto": 0.0095, "eje_aereo_segunda": -0.0188}, "Sandefjord": {"eje_verticalidad": -0.0399, "eje_elaboracion": -0.0051, "eje_individual": 0.0074, "eje_rotura_lineas": -0.0104, "eje_amplitud_centro": -0.0077, "eje_profundidad_espalda": 0.0108, "eje_robo_alto": 0.0169, "eje_aereo_segunda": -0.0089}, "Sarpsborg 08": {"eje_verticalidad": -0.0257, "eje_elaboracion": 0.0407, "eje_individual": 0.0333, "eje_rotura_lineas": 0.0279, "eje_amplitud_centro": 0.0311, "eje_profundidad_espalda": 0.0719, "eje_robo_alto": 0.0171, "eje_aereo_segunda": -0.0231}, "Start": {"eje_verticalidad": -0.0541, "eje_elaboracion": 0.0457, "eje_individual": -0.001, "eje_rotura_lineas": 0.0227, "eje_amplitud_centro": 0.0357, "eje_profundidad_espalda": 0.0474, "eje_robo_alto": 0.0124, "eje_aereo_segunda": 0.0084}, "Tromsø": {"eje_verticalidad": -0.0642, "eje_elaboracion": 0.0444, "eje_individual": -0.0184, "eje_rotura_lineas": -0.0212, "eje_amplitud_centro": -0.0292, "eje_profundidad_espalda": -0.0189, "eje_robo_alto": -0.0394, "eje_aereo_segunda": -0.0064}, "Viking": {"eje_verticalidad": 0.0366, "eje_elaboracion": -0.0537, "eje_individual": -0.0263, "eje_rotura_lineas": -0.0199, "eje_amplitud_centro": -0.0075, "eje_profundidad_espalda": 0.0096, "eje_robo_alto": -0.0532, "eje_aereo_segunda": 0.0255}, "Vålerenga": {"eje_verticalidad": 0.0025, "eje_elaboracion": -0.0049, "eje_individual": 0.0138, "eje_rotura_lineas": -0.034, "eje_amplitud_centro": -0.0042, "eje_profundidad_espalda": -0.0032, "eje_robo_alto": 0.001, "eje_aereo_segunda": -0.0054}}} \ No newline at end of file diff --git a/vendor/data/ejes/norwegian-eliteserien/26/team_profiles.parquet b/vendor/data/ejes/norwegian-eliteserien/26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..4bf13fc679a87b30d563b31a64f1872883a43857 --- /dev/null +++ b/vendor/data/ejes/norwegian-eliteserien/26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c238103322f37b8efa693f289686ee3e35986e4528380cd30333be09913eb8e +size 9116 diff --git a/vendor/data/ejes/polish-ekstraklasa/25-26/ejes_definition.json b/vendor/data/ejes/polish-ekstraklasa/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/polish-ekstraklasa/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/polish-ekstraklasa/25-26/match_team_ejes.parquet b/vendor/data/ejes/polish-ekstraklasa/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..b1642995b84fae655e74e80d0bcfc0e541f21bec --- /dev/null +++ b/vendor/data/ejes/polish-ekstraklasa/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2adce55323d1cc4624455190c7423a50f3fa6a0a985e26b28d86f3910f8733d +size 74156 diff --git a/vendor/data/ejes/polish-ekstraklasa/25-26/match_team_vars.parquet b/vendor/data/ejes/polish-ekstraklasa/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..e8d7af66b4ad3e9da5eff3f65e827aa396e81f79 --- /dev/null +++ b/vendor/data/ejes/polish-ekstraklasa/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e47c0afd226a44921f8354f869fec905a899da2b6d54aee45d8b2952b728e08 +size 272739 diff --git a/vendor/data/ejes/polish-ekstraklasa/25-26/predictor.json b/vendor/data/ejes/polish-ekstraklasa/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..f4c71925cf56998001c229982e02d36b271cbb43 --- /dev/null +++ b/vendor/data/ejes/polish-ekstraklasa/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.9069, "con": 0.7584, "intercept": 0.017}, "elaboracion": {"gen": 0.9472, "con": 0.7812, "intercept": -0.0006}, "individual": {"gen": 0.7958, "con": 0.7886, "intercept": 0.0003}, "rotura_lineas": {"gen": 0.8936, "con": 0.8262, "intercept": -0.0003}, "amplitud_centro": {"gen": 0.5686, "con": 0.6376, "intercept": -0.0001}, "profundidad_espalda": {"gen": 0.6801, "con": 0.7633, "intercept": -0.0003}, "robo_alto": {"gen": 0.7515, "con": 0.691, "intercept": 0.0024}, "aereo_segunda": {"gen": 0.8908, "con": 0.7415, "intercept": -0.0001}} \ No newline at end of file diff --git a/vendor/data/ejes/polish-ekstraklasa/25-26/scales.json b/vendor/data/ejes/polish-ekstraklasa/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..14c33370e3caaca1561ee28027ca287019146ac3 --- /dev/null +++ b/vendor/data/ejes/polish-ekstraklasa/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 2.0942, "atk_w": 1.5679, "ball_distance": 44.2837, "behind_line_ok": 0.0242, "broke_last_line": 0.0168, "broke_second_last": 0.0426, "cross_pvadded_max": 0.0016, "dang_runs": 0.0791, "deep_completions": 0.1296, "def_h": 2.9865, "dribbles_box": 0.0098, "dribbles_last_third": 0.0245, "duration_s": 20.2323, "hold_max": 1.5094, "hold_mean": 1.0896, "hold_min": 1.0672, "line_breaks": 0.2475, "max_x": 4.0204, "n_centros": 0.0536, "n_events": 1.7956, "n_involved": 0.161, "n_passes": 0.5564, "opt_quality_mean": 0.1596, "paredes": 0.0967, "pass_options_mean": 1.6763, "passes_behind_line": 0.0405, "pct_adentro": 0.0361, "pct_afuera": 0.0354, "pct_cortos": 0.0451, "pct_headpass": 0.0152, "pct_largos": 0.0467, "pct_launch": 0.0321, "pct_layoff": 0.0046, "pct_medios": 0.0417, "pct_switch": 0.0043, "pct_through": 0.0039, "pct_verticales": 0.0516, "pelotazos_espalda": 0.0332, "press_final": 0.5508, "press_media": 0.372, "prog_x": 2.523, "start_x": 4.6774, "starts_from_dispossess": 0.0162, "takeons_ok": 0.0211, "tempo": 0.037, "transition_speed": 0.6401, "verticalidad_media": 0.0628}, "eje_sigma": {"eje_verticalidad": 0.1081, "eje_elaboracion": 0.0919, "eje_individual": 0.066, "eje_rotura_lineas": 0.0605, "eje_amplitud_centro": 0.0596, "eje_profundidad_espalda": 0.09, "eje_robo_alto": 0.0969, "eje_aereo_segunda": 0.0647}, "eje_match_mean": {"eje_verticalidad": -0.0255, "eje_elaboracion": 0.0008, "eje_individual": -0.0006, "eje_rotura_lineas": 0.0004, "eje_amplitud_centro": 0.0006, "eje_profundidad_espalda": 0.0008, "eje_robo_alto": -0.0055, "eje_aereo_segunda": 0.0002}, "eje_match_std": {"eje_verticalidad": 0.122, "eje_elaboracion": 0.1097, "eje_individual": 0.0701, "eje_rotura_lineas": 0.0665, "eje_amplitud_centro": 0.0614, "eje_profundidad_espalda": 0.0938, "eje_robo_alto": 0.1027, "eje_aereo_segunda": 0.0715}, "team_var_norm": {"Arka Gdynia": {"atk_l": 39.9203, "atk_w": 31.2217, "ball_distance": 96.9613, "behind_line_ok": 0.0425, "broke_last_line": 0.0203, "broke_second_last": 0.1307, "cross_pvadded_max": 0.0007, "dang_runs": 0.1, "deep_completions": 0.2565, "def_h": 31.25, "dribbles_box": 0.0101, "dribbles_last_third": 0.0439, "duration_s": 27.9795, "hold_max": 11.5274, "hold_mean": 7.2123, "hold_min": 4.7428, "line_breaks": 0.4456, "max_x": 67.6144, "n_centros": 0.1264, "n_events": 5.3815, "n_involved": 1.7344, "n_passes": 2.7685, "opt_quality_mean": 0.032, "paredes": 0.1915, "pass_options_mean": 8.5769, "passes_behind_line": 0.1218, "pct_adentro": 0.486, "pct_afuera": 0.408, "pct_cortos": 0.3515, "pct_headpass": 0.0543, "pct_largos": 0.2398, "pct_launch": 0.1075, "pct_layoff": 0.008, "pct_medios": 0.3036, "pct_switch": 0.0036, "pct_through": 0.0014, "pct_verticales": 0.4849, "pelotazos_espalda": 0.0981, "press_final": 2.2473, "press_media": 1.6744, "prog_x": 24.0467, "start_x": 44.8249, "starts_from_dispossess": 0.032, "takeons_ok": 0.0432, "tempo": 0.3489, "transition_speed": 3.5113, "verticalidad_media": 0.3588}, "Cracovia": {"atk_l": 40.476, "atk_w": 32.0178, "ball_distance": 143.4267, "behind_line_ok": 0.0482, "broke_last_line": 0.0264, "broke_second_last": 0.1418, "cross_pvadded_max": 0.0015, "dang_runs": 0.1679, "deep_completions": 0.3416, "def_h": 30.9171, "dribbles_box": 0.0093, "dribbles_last_third": 0.0481, "duration_s": 29.1993, "hold_max": 10.0976, "hold_mean": 5.885, "hold_min": 3.6312, "line_breaks": 0.6497, "max_x": 68.5358, "n_centros": 0.1403, "n_events": 5.8999, "n_involved": 1.9384, "n_passes": 3.2395, "opt_quality_mean": 0.0826, "paredes": 0.2978, "pass_options_mean": 8.9395, "passes_behind_line": 0.1265, "pct_adentro": 0.4984, "pct_afuera": 0.4068, "pct_cortos": 0.3984, "pct_headpass": 0.0515, "pct_largos": 0.2118, "pct_launch": 0.104, "pct_layoff": 0.0083, "pct_medios": 0.2959, "pct_switch": 0.0053, "pct_through": 0.0016, "pct_verticales": 0.48, "pelotazos_espalda": 0.0899, "press_final": 2.4371, "press_media": 1.8509, "prog_x": 24.3653, "start_x": 45.4928, "starts_from_dispossess": 0.0338, "takeons_ok": 0.0445, "tempo": 0.3791, "transition_speed": 3.5449, "verticalidad_media": 0.3523}, "GKS Katowice": {"atk_l": 41.7882, "atk_w": 32.2367, "ball_distance": 104.7382, "behind_line_ok": 0.0502, "broke_last_line": 0.0295, "broke_second_last": 0.1339, "cross_pvadded_max": 0.0013, "dang_runs": 0.1029, "deep_completions": 0.3087, "def_h": 30.9955, "dribbles_box": 0.0075, "dribbles_last_third": 0.0415, "duration_s": 33.7598, "hold_max": 11.2992, "hold_mean": 6.8043, "hold_min": 4.4613, "line_breaks": 0.4915, "max_x": 67.8475, "n_centros": 0.1314, "n_events": 5.8598, "n_involved": 1.8026, "n_passes": 2.8554, "opt_quality_mean": 0.1059, "paredes": 0.2022, "pass_options_mean": 8.5596, "passes_behind_line": 0.1309, "pct_adentro": 0.5158, "pct_afuera": 0.3894, "pct_cortos": 0.3447, "pct_headpass": 0.0511, "pct_largos": 0.2291, "pct_launch": 0.0983, "pct_layoff": 0.0095, "pct_medios": 0.3323, "pct_switch": 0.0042, "pct_through": 0.0032, "pct_verticales": 0.4869, "pelotazos_espalda": 0.0973, "press_final": 2.3059, "press_media": 1.7121, "prog_x": 23.9759, "start_x": 45.1249, "starts_from_dispossess": 0.0373, "takeons_ok": 0.0407, "tempo": 0.3408, "transition_speed": 3.3442, "verticalidad_media": 0.3555}, "Górnik Zabrze": {"atk_l": 41.0465, "atk_w": 31.8444, "ball_distance": 143.6872, "behind_line_ok": 0.0492, "broke_last_line": 0.0327, "broke_second_last": 0.1666, "cross_pvadded_max": 0.0011, "dang_runs": 0.1617, "deep_completions": 0.4225, "def_h": 30.1383, "dribbles_box": 0.0148, "dribbles_last_third": 0.0643, "duration_s": 29.1032, "hold_max": 10.3342, "hold_mean": 6.1284, "hold_min": 3.9228, "line_breaks": 0.6005, "max_x": 69.8661, "n_centros": 0.1442, "n_events": 5.8878, "n_involved": 1.9281, "n_passes": 3.3935, "opt_quality_mean": 0.1733, "paredes": 0.3121, "pass_options_mean": 8.8101, "passes_behind_line": 0.1246, "pct_adentro": 0.4978, "pct_afuera": 0.3983, "pct_cortos": 0.3928, "pct_headpass": 0.0362, "pct_largos": 0.1914, "pct_launch": 0.0799, "pct_layoff": 0.008, "pct_medios": 0.3131, "pct_switch": 0.004, "pct_through": 0.0024, "pct_verticales": 0.4322, "pelotazos_espalda": 0.0924, "press_final": 2.4174, "press_media": 1.7706, "prog_x": 23.943, "start_x": 47.1825, "starts_from_dispossess": 0.0458, "takeons_ok": 0.058, "tempo": 0.3631, "transition_speed": 3.0184, "verticalidad_media": 0.2904}, "Jagiellonia Białystok": {"atk_l": 41.1917, "atk_w": 31.9975, "ball_distance": 122.0637, "behind_line_ok": 0.0497, "broke_last_line": 0.0275, "broke_second_last": 0.1718, "cross_pvadded_max": 0.001, "dang_runs": 0.1343, "deep_completions": 0.423, "def_h": 31.2954, "dribbles_box": 0.0148, "dribbles_last_third": 0.0548, "duration_s": 20.2205, "hold_max": 9.9502, "hold_mean": 5.6608, "hold_min": 3.4208, "line_breaks": 0.6273, "max_x": 66.9542, "n_centros": 0.1288, "n_events": 5.3812, "n_involved": 1.9797, "n_passes": 3.5013, "opt_quality_mean": 0.1559, "paredes": 0.3771, "pass_options_mean": 8.5789, "passes_behind_line": 0.1017, "pct_adentro": 0.5276, "pct_afuera": 0.3892, "pct_cortos": 0.4508, "pct_headpass": 0.0359, "pct_largos": 0.1657, "pct_launch": 0.0648, "pct_layoff": 0.0112, "pct_medios": 0.3012, "pct_switch": 0.0038, "pct_through": 0.0017, "pct_verticales": 0.4532, "pelotazos_espalda": 0.0686, "press_final": 2.4386, "press_media": 1.8673, "prog_x": 22.3309, "start_x": 45.9505, "starts_from_dispossess": 0.0493, "takeons_ok": 0.0497, "tempo": 0.3984, "transition_speed": 2.9897, "verticalidad_media": 0.2973}, "Korona Kielce": {"atk_l": 40.371, "atk_w": 31.8234, "ball_distance": 98.5452, "behind_line_ok": 0.0428, "broke_last_line": 0.0189, "broke_second_last": 0.1479, "cross_pvadded_max": 0.0016, "dang_runs": 0.1188, "deep_completions": 0.2991, "def_h": 31.2137, "dribbles_box": 0.0117, "dribbles_last_third": 0.0605, "duration_s": 37.8879, "hold_max": 10.2939, "hold_mean": 6.2074, "hold_min": 3.9961, "line_breaks": 0.5219, "max_x": 68.0619, "n_centros": 0.1354, "n_events": 6.3087, "n_involved": 1.769, "n_passes": 2.712, "opt_quality_mean": 0.102, "paredes": 0.1932, "pass_options_mean": 8.8883, "passes_behind_line": 0.1224, "pct_adentro": 0.4817, "pct_afuera": 0.4094, "pct_cortos": 0.353, "pct_headpass": 0.053, "pct_largos": 0.2195, "pct_launch": 0.0961, "pct_layoff": 0.007, "pct_medios": 0.3201, "pct_switch": 0.0033, "pct_through": 0.0027, "pct_verticales": 0.4869, "pelotazos_espalda": 0.0923, "press_final": 2.345, "press_media": 1.7215, "prog_x": 24.2585, "start_x": 45.3139, "starts_from_dispossess": 0.0357, "takeons_ok": 0.0498, "tempo": 0.3478, "transition_speed": 3.455, "verticalidad_media": 0.3673}, "Lech Poznań": {"atk_l": 42.4737, "atk_w": 31.3377, "ball_distance": 135.9159, "behind_line_ok": 0.0554, "broke_last_line": 0.0379, "broke_second_last": 0.1944, "cross_pvadded_max": 0.0011, "dang_runs": 0.1577, "deep_completions": 0.4557, "def_h": 30.4987, "dribbles_box": 0.0143, "dribbles_last_third": 0.0615, "duration_s": 26.2855, "hold_max": 10.3168, "hold_mean": 5.5902, "hold_min": 3.1897, "line_breaks": 0.7366, "max_x": 69.2302, "n_centros": 0.1348, "n_events": 5.8211, "n_involved": 2.0139, "n_passes": 3.6724, "opt_quality_mean": 0.2018, "paredes": 0.3287, "pass_options_mean": 8.8764, "passes_behind_line": 0.1109, "pct_adentro": 0.5187, "pct_afuera": 0.398, "pct_cortos": 0.4228, "pct_headpass": 0.0379, "pct_largos": 0.1676, "pct_launch": 0.0506, "pct_layoff": 0.0093, "pct_medios": 0.3273, "pct_switch": 0.0078, "pct_through": 0.0037, "pct_verticales": 0.432, "pelotazos_espalda": 0.0733, "press_final": 2.5171, "press_media": 1.8859, "prog_x": 23.785, "start_x": 46.9285, "starts_from_dispossess": 0.0377, "takeons_ok": 0.0499, "tempo": 0.4037, "transition_speed": 2.9734, "verticalidad_media": 0.2811}, "Lechia Gdańsk": {"atk_l": 40.1766, "atk_w": 30.9724, "ball_distance": 99.6534, "behind_line_ok": 0.0424, "broke_last_line": 0.0286, "broke_second_last": 0.1514, "cross_pvadded_max": 0.0014, "dang_runs": 0.1194, "deep_completions": 0.3469, "def_h": 29.8308, "dribbles_box": 0.0146, "dribbles_last_third": 0.0632, "duration_s": 24.399, "hold_max": 10.5538, "hold_mean": 6.6183, "hold_min": 4.2743, "line_breaks": 0.5325, "max_x": 70.617, "n_centros": 0.1426, "n_events": 5.2087, "n_involved": 1.8431, "n_passes": 2.8764, "opt_quality_mean": 0.1492, "paredes": 0.2144, "pass_options_mean": 8.5032, "passes_behind_line": 0.1169, "pct_adentro": 0.5231, "pct_afuera": 0.3912, "pct_cortos": 0.3816, "pct_headpass": 0.0486, "pct_largos": 0.2098, "pct_launch": 0.0819, "pct_layoff": 0.0076, "pct_medios": 0.3245, "pct_switch": 0.0039, "pct_through": 0.004, "pct_verticales": 0.4942, "pelotazos_espalda": 0.0816, "press_final": 2.332, "press_media": 1.7024, "prog_x": 24.0762, "start_x": 47.8705, "starts_from_dispossess": 0.0387, "takeons_ok": 0.0465, "tempo": 0.3806, "transition_speed": 3.5823, "verticalidad_media": 0.3692}, "Legia Warszawa": {"atk_l": 40.4892, "atk_w": 30.7791, "ball_distance": 119.7174, "behind_line_ok": 0.0501, "broke_last_line": 0.0276, "broke_second_last": 0.1561, "cross_pvadded_max": 0.0014, "dang_runs": 0.1263, "deep_completions": 0.4125, "def_h": 29.6601, "dribbles_box": 0.0132, "dribbles_last_third": 0.0632, "duration_s": 24.7998, "hold_max": 9.6918, "hold_mean": 5.9529, "hold_min": 3.8553, "line_breaks": 0.5936, "max_x": 70.419, "n_centros": 0.1519, "n_events": 5.4533, "n_involved": 1.8676, "n_passes": 3.111, "opt_quality_mean": 0.1785, "paredes": 0.2666, "pass_options_mean": 8.9003, "passes_behind_line": 0.1212, "pct_adentro": 0.5152, "pct_afuera": 0.3894, "pct_cortos": 0.3828, "pct_headpass": 0.0485, "pct_largos": 0.2034, "pct_launch": 0.0858, "pct_layoff": 0.01, "pct_medios": 0.32, "pct_switch": 0.0042, "pct_through": 0.0018, "pct_verticales": 0.4637, "pelotazos_espalda": 0.088, "press_final": 2.4053, "press_media": 1.8095, "prog_x": 23.2789, "start_x": 48.2192, "starts_from_dispossess": 0.0451, "takeons_ok": 0.0508, "tempo": 0.3541, "transition_speed": 3.1493, "verticalidad_media": 0.3218}, "Motor Lublin": {"atk_l": 40.9004, "atk_w": 32.6265, "ball_distance": 120.65, "behind_line_ok": 0.0467, "broke_last_line": 0.0289, "broke_second_last": 0.1474, "cross_pvadded_max": 0.0016, "dang_runs": 0.1598, "deep_completions": 0.3007, "def_h": 32.5573, "dribbles_box": 0.0092, "dribbles_last_third": 0.0471, "duration_s": 24.2802, "hold_max": 9.9454, "hold_mean": 5.7838, "hold_min": 3.4247, "line_breaks": 0.646, "max_x": 66.6888, "n_centros": 0.1409, "n_events": 5.3338, "n_involved": 1.9038, "n_passes": 3.0946, "opt_quality_mean": 0.087, "paredes": 0.2544, "pass_options_mean": 9.0418, "passes_behind_line": 0.1041, "pct_adentro": 0.5032, "pct_afuera": 0.4143, "pct_cortos": 0.4043, "pct_headpass": 0.0381, "pct_largos": 0.1663, "pct_launch": 0.0645, "pct_layoff": 0.0095, "pct_medios": 0.3479, "pct_switch": 0.0033, "pct_through": 0.003, "pct_verticales": 0.4629, "pelotazos_espalda": 0.0675, "press_final": 2.4185, "press_media": 1.83, "prog_x": 24.1958, "start_x": 43.415, "starts_from_dispossess": 0.0415, "takeons_ok": 0.0477, "tempo": 0.3759, "transition_speed": 3.3242, "verticalidad_media": 0.3304}, "Nieciecza": {"atk_l": 40.2949, "atk_w": 30.8547, "ball_distance": 100.1471, "behind_line_ok": 0.044, "broke_last_line": 0.0252, "broke_second_last": 0.1646, "cross_pvadded_max": 0.0016, "dang_runs": 0.1029, "deep_completions": 0.32, "def_h": 30.9368, "dribbles_box": 0.0102, "dribbles_last_third": 0.0508, "duration_s": 31.9437, "hold_max": 10.8032, "hold_mean": 6.0339, "hold_min": 3.5254, "line_breaks": 0.5341, "max_x": 68.5911, "n_centros": 0.1303, "n_events": 5.8625, "n_involved": 1.8612, "n_passes": 2.8707, "opt_quality_mean": 0.1089, "paredes": 0.2259, "pass_options_mean": 8.4809, "passes_behind_line": 0.1303, "pct_adentro": 0.5088, "pct_afuera": 0.4039, "pct_cortos": 0.3842, "pct_headpass": 0.0551, "pct_largos": 0.2223, "pct_launch": 0.0852, "pct_layoff": 0.0087, "pct_medios": 0.3074, "pct_switch": 0.0038, "pct_through": 0.0024, "pct_verticales": 0.5044, "pelotazos_espalda": 0.0955, "press_final": 2.1431, "press_media": 1.6193, "prog_x": 25.1999, "start_x": 44.7429, "starts_from_dispossess": 0.039, "takeons_ok": 0.0416, "tempo": 0.3861, "transition_speed": 3.761, "verticalidad_media": 0.3702}, "Piast Gliwice": {"atk_l": 41.7297, "atk_w": 31.7211, "ball_distance": 127.231, "behind_line_ok": 0.0574, "broke_last_line": 0.0312, "broke_second_last": 0.178, "cross_pvadded_max": 0.0006, "dang_runs": 0.1276, "deep_completions": 0.4409, "def_h": 30.3292, "dribbles_box": 0.0096, "dribbles_last_third": 0.0463, "duration_s": 22.565, "hold_max": 9.6392, "hold_mean": 5.8021, "hold_min": 3.6699, "line_breaks": 0.6183, "max_x": 69.5335, "n_centros": 0.1481, "n_events": 5.3487, "n_involved": 1.8981, "n_passes": 3.3294, "opt_quality_mean": 0.1855, "paredes": 0.3246, "pass_options_mean": 8.7222, "passes_behind_line": 0.1329, "pct_adentro": 0.5158, "pct_afuera": 0.4039, "pct_cortos": 0.3912, "pct_headpass": 0.0508, "pct_largos": 0.2106, "pct_launch": 0.0845, "pct_layoff": 0.009, "pct_medios": 0.3191, "pct_switch": 0.0033, "pct_through": 0.0012, "pct_verticales": 0.4676, "pelotazos_espalda": 0.0997, "press_final": 2.3898, "press_media": 1.8277, "prog_x": 24.1158, "start_x": 46.5433, "starts_from_dispossess": 0.0338, "takeons_ok": 0.0419, "tempo": 0.3722, "transition_speed": 3.2354, "verticalidad_media": 0.3173}, "Pogoń Szczecin": {"atk_l": 40.7996, "atk_w": 32.0702, "ball_distance": 129.2023, "behind_line_ok": 0.0542, "broke_last_line": 0.0343, "broke_second_last": 0.1501, "cross_pvadded_max": 0.0011, "dang_runs": 0.1675, "deep_completions": 0.3593, "def_h": 31.3232, "dribbles_box": 0.0098, "dribbles_last_third": 0.0478, "duration_s": 24.3619, "hold_max": 10.6951, "hold_mean": 6.4098, "hold_min": 4.0904, "line_breaks": 0.5796, "max_x": 68.5859, "n_centros": 0.1345, "n_events": 5.3758, "n_involved": 1.853, "n_passes": 3.1964, "opt_quality_mean": 0.1022, "paredes": 0.2774, "pass_options_mean": 8.7284, "passes_behind_line": 0.1316, "pct_adentro": 0.4972, "pct_afuera": 0.411, "pct_cortos": 0.3575, "pct_headpass": 0.0438, "pct_largos": 0.2153, "pct_launch": 0.0825, "pct_layoff": 0.009, "pct_medios": 0.3361, "pct_switch": 0.0039, "pct_through": 0.003, "pct_verticales": 0.4884, "pelotazos_espalda": 0.0925, "press_final": 2.4548, "press_media": 1.7722, "prog_x": 25.4986, "start_x": 44.5496, "starts_from_dispossess": 0.0393, "takeons_ok": 0.0443, "tempo": 0.3678, "transition_speed": 3.6127, "verticalidad_media": 0.3577}, "Radomiak Radom": {"atk_l": 41.2555, "atk_w": 31.7154, "ball_distance": 110.9141, "behind_line_ok": 0.0487, "broke_last_line": 0.0293, "broke_second_last": 0.1478, "cross_pvadded_max": 0.0011, "dang_runs": 0.1194, "deep_completions": 0.3672, "def_h": 31.6452, "dribbles_box": 0.0111, "dribbles_last_third": 0.0575, "duration_s": 38.4478, "hold_max": 11.1944, "hold_mean": 6.3627, "hold_min": 4.0068, "line_breaks": 0.5764, "max_x": 67.6228, "n_centros": 0.1255, "n_events": 6.4711, "n_involved": 1.8722, "n_passes": 3.0727, "opt_quality_mean": 0.1118, "paredes": 0.2687, "pass_options_mean": 8.7042, "passes_behind_line": 0.126, "pct_adentro": 0.504, "pct_afuera": 0.4043, "pct_cortos": 0.3961, "pct_headpass": 0.0515, "pct_largos": 0.2042, "pct_launch": 0.0894, "pct_layoff": 0.0098, "pct_medios": 0.3089, "pct_switch": 0.0067, "pct_through": 0.0026, "pct_verticales": 0.4624, "pelotazos_espalda": 0.0831, "press_final": 2.454, "press_media": 1.8371, "prog_x": 24.6683, "start_x": 44.367, "starts_from_dispossess": 0.0394, "takeons_ok": 0.0568, "tempo": 0.3656, "transition_speed": 3.2425, "verticalidad_media": 0.3345}, "Raków Częstochowa": {"atk_l": 41.1362, "atk_w": 30.9564, "ball_distance": 141.765, "behind_line_ok": 0.0554, "broke_last_line": 0.031, "broke_second_last": 0.1649, "cross_pvadded_max": 0.0019, "dang_runs": 0.124, "deep_completions": 0.369, "def_h": 31.3034, "dribbles_box": 0.0135, "dribbles_last_third": 0.067, "duration_s": 28.743, "hold_max": 10.8742, "hold_mean": 6.1601, "hold_min": 3.7821, "line_breaks": 0.7423, "max_x": 67.9874, "n_centros": 0.1327, "n_events": 5.9498, "n_involved": 1.9087, "n_passes": 3.3286, "opt_quality_mean": 0.1172, "paredes": 0.2551, "pass_options_mean": 9.0457, "passes_behind_line": 0.1376, "pct_adentro": 0.5046, "pct_afuera": 0.4063, "pct_cortos": 0.3805, "pct_headpass": 0.0581, "pct_largos": 0.2027, "pct_launch": 0.0734, "pct_layoff": 0.0066, "pct_medios": 0.3291, "pct_switch": 0.0028, "pct_through": 0.0035, "pct_verticales": 0.4515, "pelotazos_espalda": 0.0973, "press_final": 2.4894, "press_media": 1.8163, "prog_x": 23.7342, "start_x": 45.4382, "starts_from_dispossess": 0.0386, "takeons_ok": 0.0584, "tempo": 0.3534, "transition_speed": 2.9737, "verticalidad_media": 0.3096}, "Widzew Łódź": {"atk_l": 40.6443, "atk_w": 31.5628, "ball_distance": 118.9586, "behind_line_ok": 0.0426, "broke_last_line": 0.0301, "broke_second_last": 0.139, "cross_pvadded_max": 0.0006, "dang_runs": 0.1377, "deep_completions": 0.2851, "def_h": 31.4008, "dribbles_box": 0.0155, "dribbles_last_third": 0.0678, "duration_s": 31.5799, "hold_max": 10.7164, "hold_mean": 6.4637, "hold_min": 4.2973, "line_breaks": 0.5296, "max_x": 67.426, "n_centros": 0.1201, "n_events": 5.8172, "n_involved": 1.8247, "n_passes": 2.8606, "opt_quality_mean": 0.0718, "paredes": 0.2153, "pass_options_mean": 8.9093, "passes_behind_line": 0.1259, "pct_adentro": 0.4898, "pct_afuera": 0.4113, "pct_cortos": 0.3659, "pct_headpass": 0.046, "pct_largos": 0.2189, "pct_launch": 0.1021, "pct_layoff": 0.0078, "pct_medios": 0.3175, "pct_switch": 0.0053, "pct_through": 0.0029, "pct_verticales": 0.4934, "pelotazos_espalda": 0.0961, "press_final": 2.5506, "press_media": 1.8227, "prog_x": 24.6233, "start_x": 44.0307, "starts_from_dispossess": 0.0401, "takeons_ok": 0.056, "tempo": 0.3425, "transition_speed": 3.1335, "verticalidad_media": 0.3601}, "Wisła Płock": {"atk_l": 42.2721, "atk_w": 31.6553, "ball_distance": 115.9551, "behind_line_ok": 0.0538, "broke_last_line": 0.0258, "broke_second_last": 0.139, "cross_pvadded_max": 0.0015, "dang_runs": 0.1255, "deep_completions": 0.3449, "def_h": 33.0165, "dribbles_box": 0.0133, "dribbles_last_third": 0.0475, "duration_s": 33.5702, "hold_max": 10.6296, "hold_mean": 6.14, "hold_min": 3.6889, "line_breaks": 0.4882, "max_x": 67.6786, "n_centros": 0.146, "n_events": 5.8667, "n_involved": 1.797, "n_passes": 3.0345, "opt_quality_mean": 0.0459, "paredes": 0.2736, "pass_options_mean": 9.0142, "passes_behind_line": 0.1381, "pct_adentro": 0.4894, "pct_afuera": 0.4181, "pct_cortos": 0.3559, "pct_headpass": 0.0448, "pct_largos": 0.2263, "pct_launch": 0.101, "pct_layoff": 0.0092, "pct_medios": 0.3266, "pct_switch": 0.0069, "pct_through": 0.001, "pct_verticales": 0.4614, "pelotazos_espalda": 0.1073, "press_final": 2.3115, "press_media": 1.7546, "prog_x": 27.1917, "start_x": 41.8131, "starts_from_dispossess": 0.0384, "takeons_ok": 0.0461, "tempo": 0.3645, "transition_speed": 3.5865, "verticalidad_media": 0.3261}, "Zagłębie Lubin": {"atk_l": 38.4661, "atk_w": 31.4386, "ball_distance": 85.6358, "behind_line_ok": 0.0365, "broke_last_line": 0.0187, "broke_second_last": 0.1303, "cross_pvadded_max": 0.0014, "dang_runs": 0.0776, "deep_completions": 0.2722, "def_h": 31.7668, "dribbles_box": 0.007, "dribbles_last_third": 0.0427, "duration_s": 24.7583, "hold_max": 11.8857, "hold_mean": 7.0629, "hold_min": 4.4486, "line_breaks": 0.3817, "max_x": 67.9216, "n_centros": 0.119, "n_events": 4.9481, "n_involved": 1.7307, "n_passes": 2.3983, "opt_quality_mean": 0.0651, "paredes": 0.1323, "pass_options_mean": 8.4855, "passes_behind_line": 0.1185, "pct_adentro": 0.4979, "pct_afuera": 0.397, "pct_cortos": 0.3118, "pct_headpass": 0.071, "pct_largos": 0.2524, "pct_launch": 0.1057, "pct_layoff": 0.0061, "pct_medios": 0.3317, "pct_switch": 0.0046, "pct_through": 0.0021, "pct_verticales": 0.5114, "pelotazos_espalda": 0.0884, "press_final": 2.4223, "press_media": 1.8015, "prog_x": 25.611, "start_x": 43.63, "starts_from_dispossess": 0.0349, "takeons_ok": 0.0362, "tempo": 0.3623, "transition_speed": 4.1759, "verticalidad_media": 0.4163}}, "team_eje_norm_gen": {"Arka Gdynia": {"eje_verticalidad": 0.0165, "eje_elaboracion": -0.0636, "eje_individual": -0.0288, "eje_rotura_lineas": -0.0461, "eje_amplitud_centro": -0.0089, "eje_profundidad_espalda": -0.0283, "eje_robo_alto": -0.0321, "eje_aereo_segunda": 0.0364}, "Cracovia": {"eje_verticalidad": -0.0058, "eje_elaboracion": 0.0413, "eje_individual": -0.0038, "eje_rotura_lineas": -0.0061, "eje_amplitud_centro": 0.0154, "eje_profundidad_espalda": 0.0003, "eje_robo_alto": -0.0153, "eje_aereo_segunda": 0.0276}, "GKS Katowice": {"eje_verticalidad": 0.0054, "eje_elaboracion": -0.0538, "eje_individual": -0.0386, "eje_rotura_lineas": -0.0137, "eje_amplitud_centro": -0.017, "eje_profundidad_espalda": 0.0021, "eje_robo_alto": -0.013, "eje_aereo_segunda": 0.027}, "Górnik Zabrze": {"eje_verticalidad": -0.109, "eje_elaboracion": 0.0538, "eje_individual": 0.0375, "eje_rotura_lineas": 0.0189, "eje_amplitud_centro": 0.0016, "eje_profundidad_espalda": 0.0268, "eje_robo_alto": 0.0468, "eje_aereo_segunda": -0.0382}, "Jagiellonia Białystok": {"eje_verticalidad": -0.1059, "eje_elaboracion": 0.1174, "eje_individual": 0.0103, "eje_rotura_lineas": 0.0133, "eje_amplitud_centro": -0.0232, "eje_profundidad_espalda": -0.0098, "eje_robo_alto": 0.0331, "eje_aereo_segunda": -0.0381}, "Korona Kielce": {"eje_verticalidad": 0.0046, "eje_elaboracion": -0.0588, "eje_individual": 0.0047, "eje_rotura_lineas": -0.0209, "eje_amplitud_centro": -0.0014, "eje_profundidad_espalda": -0.0196, "eje_robo_alto": -0.0136, "eje_aereo_segunda": 0.0112}, "Lech Poznań": {"eje_verticalidad": -0.1272, "eje_elaboracion": 0.0979, "eje_individual": 0.0235, "eje_rotura_lineas": 0.068, "eje_amplitud_centro": 0.0188, "eje_profundidad_espalda": 0.0172, "eje_robo_alto": 0.0213, "eje_aereo_segunda": -0.0653}, "Lechia Gdańsk": {"eje_verticalidad": 0.0169, "eje_elaboracion": -0.0301, "eje_individual": 0.0105, "eje_rotura_lineas": 0.0055, "eje_amplitud_centro": -0.0069, "eje_profundidad_espalda": -0.0188, "eje_robo_alto": 0.0412, "eje_aereo_segunda": -0.0128}, "Legia Warszawa": {"eje_verticalidad": -0.0553, "eje_elaboracion": 0.007, "eje_individual": 0.0143, "eje_rotura_lineas": -0.0002, "eje_amplitud_centro": 0.0021, "eje_profundidad_espalda": 0.0185, "eje_robo_alto": 0.0642, "eje_aereo_segunda": 0.0084}, "Motor Lublin": {"eje_verticalidad": -0.0683, "eje_elaboracion": 0.0153, "eje_individual": -0.0041, "eje_rotura_lineas": 0.0101, "eje_amplitud_centro": 0.0089, "eje_profundidad_espalda": -0.0496, "eje_robo_alto": -0.0335, "eje_aereo_segunda": -0.0452}, "Nieciecza": {"eje_verticalidad": 0.0401, "eje_elaboracion": -0.019, "eje_individual": -0.0223, "eje_rotura_lineas": -0.0011, "eje_amplitud_centro": -0.0078, "eje_profundidad_espalda": -0.0033, "eje_robo_alto": -0.0155, "eje_aereo_segunda": 0.0125}, "Piast Gliwice": {"eje_verticalidad": -0.0403, "eje_elaboracion": 0.0479, "eje_individual": -0.0201, "eje_rotura_lineas": 0.0185, "eje_amplitud_centro": 0.0057, "eje_profundidad_espalda": 0.0541, "eje_robo_alto": 0.004, "eje_aereo_segunda": 0.0046}, "Pogoń Szczecin": {"eje_verticalidad": 0.0105, "eje_elaboracion": -0.0001, "eje_individual": -0.0031, "eje_rotura_lineas": 0.0121, "eje_amplitud_centro": 0.0034, "eje_profundidad_espalda": 0.0185, "eje_robo_alto": -0.0183, "eje_aereo_segunda": -0.0125}, "Radomiak Radom": {"eje_verticalidad": -0.0431, "eje_elaboracion": 0.0239, "eje_individual": 0.0082, "eje_rotura_lineas": 0.0003, "eje_amplitud_centro": 0.0084, "eje_profundidad_espalda": 0.0023, "eje_robo_alto": -0.0213, "eje_aereo_segunda": 0.0177}, "Raków Częstochowa": {"eje_verticalidad": -0.076, "eje_elaboracion": 0.0198, "eje_individual": 0.0263, "eje_rotura_lineas": 0.0385, "eje_amplitud_centro": -0.0101, "eje_profundidad_espalda": 0.0312, "eje_robo_alto": -0.0038, "eje_aereo_segunda": -0.0117}, "Widzew Łódź": {"eje_verticalidad": -0.0048, "eje_elaboracion": -0.0361, "eje_individual": 0.0331, "eje_rotura_lineas": -0.0074, "eje_amplitud_centro": -0.0, "eje_profundidad_espalda": -0.0181, "eje_robo_alto": -0.0257, "eje_aereo_segunda": 0.0106}, "Wisła Płock": {"eje_verticalidad": -0.0192, "eje_elaboracion": -0.0074, "eje_individual": -0.007, "eje_rotura_lineas": -0.0305, "eje_amplitud_centro": 0.0421, "eje_profundidad_espalda": 0.0312, "eje_robo_alto": -0.071, "eje_aereo_segunda": 0.0156}, "Zagłębie Lubin": {"eje_verticalidad": 0.1018, "eje_elaboracion": -0.1407, "eje_individual": -0.0511, "eje_rotura_lineas": -0.0519, "eje_amplitud_centro": -0.0196, "eje_profundidad_espalda": -0.0409, "eje_robo_alto": -0.0467, "eje_aereo_segunda": 0.0555}}, "team_eje_norm_con": {"Arka Gdynia": {"eje_verticalidad": -0.0568, "eje_elaboracion": 0.0213, "eje_individual": -0.0082, "eje_rotura_lineas": -0.0184, "eje_amplitud_centro": -0.0074, "eje_profundidad_espalda": -0.0241, "eje_robo_alto": 0.0174, "eje_aereo_segunda": 0.0074}, "Cracovia": {"eje_verticalidad": 0.0035, "eje_elaboracion": -0.0175, "eje_individual": -0.0184, "eje_rotura_lineas": -0.0405, "eje_amplitud_centro": -0.008, "eje_profundidad_espalda": 0.0034, "eje_robo_alto": 0.001, "eje_aereo_segunda": 0.0126}, "GKS Katowice": {"eje_verticalidad": -0.0549, "eje_elaboracion": 0.0046, "eje_individual": -0.0183, "eje_rotura_lineas": -0.0006, "eje_amplitud_centro": 0.006, "eje_profundidad_espalda": -0.0141, "eje_robo_alto": 0.0138, "eje_aereo_segunda": 0.0192}, "Górnik Zabrze": {"eje_verticalidad": -0.0616, "eje_elaboracion": 0.0535, "eje_individual": -0.0004, "eje_rotura_lineas": -0.0016, "eje_amplitud_centro": -0.0085, "eje_profundidad_espalda": -0.0494, "eje_robo_alto": -0.0162, "eje_aereo_segunda": 0.0006}, "Jagiellonia Białystok": {"eje_verticalidad": -0.0226, "eje_elaboracion": -0.0377, "eje_individual": 0.0025, "eje_rotura_lineas": -0.0265, "eje_amplitud_centro": 0.0127, "eje_profundidad_espalda": -0.0359, "eje_robo_alto": 0.0014, "eje_aereo_segunda": -0.0069}, "Korona Kielce": {"eje_verticalidad": -0.0446, "eje_elaboracion": -0.0119, "eje_individual": -0.0051, "eje_rotura_lineas": 0.0056, "eje_amplitud_centro": -0.0118, "eje_profundidad_espalda": -0.0046, "eje_robo_alto": 0.0018, "eje_aereo_segunda": -0.0148}, "Lech Poznań": {"eje_verticalidad": -0.0177, "eje_elaboracion": -0.0069, "eje_individual": -0.0134, "eje_rotura_lineas": 0.0106, "eje_amplitud_centro": 0.0302, "eje_profundidad_espalda": 0.0007, "eje_robo_alto": -0.0477, "eje_aereo_segunda": -0.0039}, "Lechia Gdańsk": {"eje_verticalidad": -0.0019, "eje_elaboracion": -0.0211, "eje_individual": 0.0066, "eje_rotura_lineas": -0.0022, "eje_amplitud_centro": -0.0093, "eje_profundidad_espalda": -0.0258, "eje_robo_alto": -0.053, "eje_aereo_segunda": 0.0246}, "Legia Warszawa": {"eje_verticalidad": 0.0038, "eje_elaboracion": 0.0038, "eje_individual": -0.0321, "eje_rotura_lineas": 0.0008, "eje_amplitud_centro": -0.0246, "eje_profundidad_espalda": -0.0382, "eje_robo_alto": -0.0488, "eje_aereo_segunda": 0.0318}, "Motor Lublin": {"eje_verticalidad": -0.0124, "eje_elaboracion": -0.0214, "eje_individual": 0.0605, "eje_rotura_lineas": 0.021, "eje_amplitud_centro": -0.008, "eje_profundidad_espalda": 0.0401, "eje_robo_alto": 0.0473, "eje_aereo_segunda": -0.0158}, "Nieciecza": {"eje_verticalidad": -0.0641, "eje_elaboracion": 0.0197, "eje_individual": 0.0339, "eje_rotura_lineas": 0.0555, "eje_amplitud_centro": 0.0068, "eje_profundidad_espalda": 0.0508, "eje_robo_alto": 0.0064, "eje_aereo_segunda": -0.0149}, "Piast Gliwice": {"eje_verticalidad": 0.0529, "eje_elaboracion": -0.0419, "eje_individual": -0.0351, "eje_rotura_lineas": 0.0017, "eje_amplitud_centro": -0.01, "eje_profundidad_espalda": -0.0047, "eje_robo_alto": -0.0561, "eje_aereo_segunda": 0.0228}, "Pogoń Szczecin": {"eje_verticalidad": -0.0137, "eje_elaboracion": 0.0051, "eje_individual": -0.0116, "eje_rotura_lineas": 0.0298, "eje_amplitud_centro": 0.006, "eje_profundidad_espalda": 0.0082, "eje_robo_alto": -0.0207, "eje_aereo_segunda": -0.0039}, "Radomiak Radom": {"eje_verticalidad": -0.014, "eje_elaboracion": -0.023, "eje_individual": 0.0161, "eje_rotura_lineas": 0.0224, "eje_amplitud_centro": 0.0111, "eje_profundidad_espalda": 0.039, "eje_robo_alto": 0.0156, "eje_aereo_segunda": -0.0083}, "Raków Częstochowa": {"eje_verticalidad": 0.0191, "eje_elaboracion": -0.0188, "eje_individual": -0.027, "eje_rotura_lineas": -0.0291, "eje_amplitud_centro": -0.0065, "eje_profundidad_espalda": -0.0262, "eje_robo_alto": -0.0255, "eje_aereo_segunda": 0.0241}, "Widzew Łódź": {"eje_verticalidad": 0.0054, "eje_elaboracion": -0.0253, "eje_individual": 0.0038, "eje_rotura_lineas": -0.0153, "eje_amplitud_centro": -0.0159, "eje_profundidad_espalda": 0.0198, "eje_robo_alto": -0.0051, "eje_aereo_segunda": -0.0145}, "Wisła Płock": {"eje_verticalidad": -0.1003, "eje_elaboracion": 0.0958, "eje_individual": 0.0155, "eje_rotura_lineas": 0.0047, "eje_amplitud_centro": 0.0451, "eje_profundidad_espalda": 0.0533, "eje_robo_alto": 0.0288, "eje_aereo_segunda": -0.0574}, "Zagłębie Lubin": {"eje_verticalidad": -0.079, "eje_elaboracion": 0.0361, "eje_individual": 0.0205, "eje_rotura_lineas": -0.0106, "eje_amplitud_centro": 0.0038, "eje_profundidad_espalda": 0.0214, "eje_robo_alto": 0.0408, "eje_aereo_segunda": 0.0006}}} \ No newline at end of file diff --git a/vendor/data/ejes/polish-ekstraklasa/25-26/team_profiles.parquet b/vendor/data/ejes/polish-ekstraklasa/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..84bf502953aa49339d6157cce4b5c27504855cca --- /dev/null +++ b/vendor/data/ejes/polish-ekstraklasa/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbec6ae0f1a468e6494dac63a09ee5fa29a006f94bffbc55fd311da2ff10806b +size 9621 diff --git a/vendor/data/ejes/portuguese-primeira-liga/25-26/ejes_definition.json b/vendor/data/ejes/portuguese-primeira-liga/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/portuguese-primeira-liga/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/portuguese-primeira-liga/25-26/match_team_ejes.parquet b/vendor/data/ejes/portuguese-primeira-liga/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..e9c2ecef7a0c52a09a7f36e1fa7815888ae383ff --- /dev/null +++ b/vendor/data/ejes/portuguese-primeira-liga/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30d62c88aa7dee2bd54a0fa70c575ace08a5255ba64b3892c01ba0c34bec192c +size 73753 diff --git a/vendor/data/ejes/portuguese-primeira-liga/25-26/match_team_vars.parquet b/vendor/data/ejes/portuguese-primeira-liga/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..634c0fd269fb05ccc9b2a1b8c4048fdf661f0a0e --- /dev/null +++ b/vendor/data/ejes/portuguese-primeira-liga/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5787b372f96100cfe041ccc93cb25a7b919914f606cc8564e8014142b5e99ce7 +size 273562 diff --git a/vendor/data/ejes/portuguese-primeira-liga/25-26/predictor.json b/vendor/data/ejes/portuguese-primeira-liga/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..9d07e7b6ab598009669dfe69089295ad3ef67a05 --- /dev/null +++ b/vendor/data/ejes/portuguese-primeira-liga/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.9664, "con": 0.6588, "intercept": 0.0168}, "elaboracion": {"gen": 0.9883, "con": 0.7469, "intercept": -0.0014}, "individual": {"gen": 0.9452, "con": 0.6697, "intercept": 0.0004}, "rotura_lineas": {"gen": 0.9766, "con": 0.8194, "intercept": -0.0009}, "amplitud_centro": {"gen": 0.5623, "con": 0.6251, "intercept": 0.0}, "profundidad_espalda": {"gen": 0.8676, "con": 0.8284, "intercept": 0.0002}, "robo_alto": {"gen": 0.9053, "con": 0.8653, "intercept": 0.0042}, "aereo_segunda": {"gen": 0.8923, "con": 0.554, "intercept": 0.0}} \ No newline at end of file diff --git a/vendor/data/ejes/portuguese-primeira-liga/25-26/scales.json b/vendor/data/ejes/portuguese-primeira-liga/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..d6521c1e866d4f285d49608eaf3a4fb5911918a7 --- /dev/null +++ b/vendor/data/ejes/portuguese-primeira-liga/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 2.0089, "atk_w": 1.4978, "ball_distance": 50.8328, "behind_line_ok": 0.0269, "broke_last_line": 0.0199, "broke_second_last": 0.0508, "cross_pvadded_max": 0.0015, "dang_runs": 0.0878, "deep_completions": 0.1212, "def_h": 3.2327, "dribbles_box": 0.0104, "dribbles_last_third": 0.0259, "duration_s": 20.9001, "hold_max": 1.7545, "hold_mean": 1.1179, "hold_min": 1.0995, "line_breaks": 0.3155, "max_x": 4.4453, "n_centros": 0.0489, "n_events": 1.8154, "n_involved": 0.1702, "n_passes": 0.5874, "opt_quality_mean": 0.1357, "paredes": 0.1083, "pass_options_mean": 1.1551, "passes_behind_line": 0.0382, "pct_adentro": 0.0377, "pct_afuera": 0.0365, "pct_cortos": 0.0478, "pct_headpass": 0.0145, "pct_largos": 0.0447, "pct_launch": 0.031, "pct_layoff": 0.0051, "pct_medios": 0.0437, "pct_switch": 0.0047, "pct_through": 0.0042, "pct_verticales": 0.0512, "pelotazos_espalda": 0.0317, "press_final": 0.3215, "press_media": 0.1787, "prog_x": 2.4773, "start_x": 4.7668, "starts_from_dispossess": 0.0177, "takeons_ok": 0.0229, "tempo": 0.0374, "transition_speed": 0.6915, "verticalidad_media": 0.061}, "eje_sigma": {"eje_verticalidad": 0.11, "eje_elaboracion": 0.0934, "eje_individual": 0.0641, "eje_rotura_lineas": 0.069, "eje_amplitud_centro": 0.0523, "eje_profundidad_espalda": 0.0908, "eje_robo_alto": 0.0998, "eje_aereo_segunda": 0.0626}, "eje_match_mean": {"eje_verticalidad": -0.0268, "eje_elaboracion": 0.0018, "eje_individual": -0.0007, "eje_rotura_lineas": 0.0011, "eje_amplitud_centro": -0.0001, "eje_profundidad_espalda": -0.0003, "eje_robo_alto": -0.0055, "eje_aereo_segunda": -0.0001}, "eje_match_std": {"eje_verticalidad": 0.1417, "eje_elaboracion": 0.1352, "eje_individual": 0.0768, "eje_rotura_lineas": 0.0895, "eje_amplitud_centro": 0.054, "eje_profundidad_espalda": 0.0998, "eje_robo_alto": 0.1149, "eje_aereo_segunda": 0.07}, "team_var_norm": {"AVS": {"atk_l": 39.6525, "atk_w": 31.467, "ball_distance": 91.8302, "behind_line_ok": 0.0413, "broke_last_line": 0.0221, "broke_second_last": 0.1343, "cross_pvadded_max": 0.0008, "dang_runs": 0.0956, "deep_completions": 0.2244, "def_h": 32.8862, "dribbles_box": 0.0084, "dribbles_last_third": 0.0501, "duration_s": 21.2535, "hold_max": 10.8221, "hold_mean": 6.6525, "hold_min": 4.3001, "line_breaks": 0.4607, "max_x": 66.7312, "n_centros": 0.1106, "n_events": 4.6674, "n_involved": 1.6884, "n_passes": 2.4316, "opt_quality_mean": -0.0329, "paredes": 0.1711, "pass_options_mean": 8.6077, "passes_behind_line": 0.1259, "pct_adentro": 0.4926, "pct_afuera": 0.4062, "pct_cortos": 0.3456, "pct_headpass": 0.0521, "pct_largos": 0.2455, "pct_launch": 0.092, "pct_layoff": 0.0083, "pct_medios": 0.3087, "pct_switch": 0.0052, "pct_through": 0.0022, "pct_verticales": 0.5393, "pelotazos_espalda": 0.1027, "press_final": 2.6131, "press_media": 1.7828, "prog_x": 26.1534, "start_x": 41.8745, "starts_from_dispossess": 0.0439, "takeons_ok": 0.0452, "tempo": 0.3659, "transition_speed": 4.2205, "verticalidad_media": 0.4263}, "Alverca": {"atk_l": 42.3761, "atk_w": 32.8719, "ball_distance": 122.7952, "behind_line_ok": 0.0458, "broke_last_line": 0.0237, "broke_second_last": 0.1651, "cross_pvadded_max": 0.0014, "dang_runs": 0.162, "deep_completions": 0.2795, "def_h": 33.0248, "dribbles_box": 0.0115, "dribbles_last_third": 0.0571, "duration_s": 25.0877, "hold_max": 11.193, "hold_mean": 6.5767, "hold_min": 4.0666, "line_breaks": 0.6598, "max_x": 65.421, "n_centros": 0.1166, "n_events": 5.3406, "n_involved": 1.8743, "n_passes": 2.9986, "opt_quality_mean": -0.0601, "paredes": 0.2347, "pass_options_mean": 8.7374, "passes_behind_line": 0.1256, "pct_adentro": 0.499, "pct_afuera": 0.4044, "pct_cortos": 0.3788, "pct_headpass": 0.0334, "pct_largos": 0.2143, "pct_launch": 0.0892, "pct_layoff": 0.0095, "pct_medios": 0.3116, "pct_switch": 0.0071, "pct_through": 0.0025, "pct_verticales": 0.4697, "pelotazos_espalda": 0.1001, "press_final": 2.5257, "press_media": 1.8366, "prog_x": 24.2303, "start_x": 42.1615, "starts_from_dispossess": 0.0464, "takeons_ok": 0.0582, "tempo": 0.372, "transition_speed": 3.5489, "verticalidad_media": 0.3249}, "Arouca": {"atk_l": 42.9449, "atk_w": 31.5825, "ball_distance": 163.3174, "behind_line_ok": 0.0582, "broke_last_line": 0.0287, "broke_second_last": 0.1683, "cross_pvadded_max": 0.0007, "dang_runs": 0.1296, "deep_completions": 0.2652, "def_h": 33.6813, "dribbles_box": 0.0056, "dribbles_last_third": 0.0402, "duration_s": 33.1836, "hold_max": 11.5269, "hold_mean": 6.3504, "hold_min": 3.7212, "line_breaks": 0.8484, "max_x": 65.6985, "n_centros": 0.1247, "n_events": 6.2445, "n_involved": 1.9815, "n_passes": 3.4815, "opt_quality_mean": -0.057, "paredes": 0.3322, "pass_options_mean": 8.7742, "passes_behind_line": 0.1509, "pct_adentro": 0.4989, "pct_afuera": 0.4199, "pct_cortos": 0.3713, "pct_headpass": 0.0362, "pct_largos": 0.2095, "pct_launch": 0.0836, "pct_layoff": 0.0096, "pct_medios": 0.3398, "pct_switch": 0.0047, "pct_through": 0.0019, "pct_verticales": 0.4825, "pelotazos_espalda": 0.1096, "press_final": 2.3974, "press_media": 1.6829, "prog_x": 24.8403, "start_x": 41.9934, "starts_from_dispossess": 0.0351, "takeons_ok": 0.0393, "tempo": 0.3764, "transition_speed": 3.2925, "verticalidad_media": 0.3211}, "Benfica": {"atk_l": 41.8826, "atk_w": 31.5074, "ball_distance": 153.887, "behind_line_ok": 0.067, "broke_last_line": 0.0538, "broke_second_last": 0.2192, "cross_pvadded_max": 0.0018, "dang_runs": 0.2349, "deep_completions": 0.5218, "def_h": 28.969, "dribbles_box": 0.024, "dribbles_last_third": 0.091, "duration_s": 36.036, "hold_max": 10.4917, "hold_mean": 6.1239, "hold_min": 3.8725, "line_breaks": 0.809, "max_x": 71.7724, "n_centros": 0.1411, "n_events": 6.7558, "n_involved": 2.0145, "n_passes": 3.7241, "opt_quality_mean": 0.1646, "paredes": 0.3464, "pass_options_mean": 8.9129, "passes_behind_line": 0.1321, "pct_adentro": 0.5129, "pct_afuera": 0.3952, "pct_cortos": 0.4199, "pct_headpass": 0.0423, "pct_largos": 0.1637, "pct_launch": 0.0576, "pct_layoff": 0.0094, "pct_medios": 0.3253, "pct_switch": 0.004, "pct_through": 0.0031, "pct_verticales": 0.4251, "pelotazos_espalda": 0.0817, "press_final": 2.6059, "press_media": 1.9282, "prog_x": 23.2662, "start_x": 49.8238, "starts_from_dispossess": 0.044, "takeons_ok": 0.0715, "tempo": 0.3639, "transition_speed": 2.6725, "verticalidad_media": 0.2717}, "Casa Pia": {"atk_l": 41.1241, "atk_w": 32.2364, "ball_distance": 88.6611, "behind_line_ok": 0.0449, "broke_last_line": 0.0258, "broke_second_last": 0.133, "cross_pvadded_max": 0.0011, "dang_runs": 0.1061, "deep_completions": 0.2326, "def_h": 32.3516, "dribbles_box": 0.0093, "dribbles_last_third": 0.0461, "duration_s": 28.7149, "hold_max": 12.0127, "hold_mean": 7.3471, "hold_min": 4.684, "line_breaks": 0.4653, "max_x": 66.4235, "n_centros": 0.118, "n_events": 5.3594, "n_involved": 1.7509, "n_passes": 2.5617, "opt_quality_mean": -0.0153, "paredes": 0.1644, "pass_options_mean": 8.4474, "passes_behind_line": 0.131, "pct_adentro": 0.5088, "pct_afuera": 0.4053, "pct_cortos": 0.3488, "pct_headpass": 0.0551, "pct_largos": 0.2486, "pct_launch": 0.1157, "pct_layoff": 0.0093, "pct_medios": 0.318, "pct_switch": 0.0052, "pct_through": 0.0033, "pct_verticales": 0.5317, "pelotazos_espalda": 0.1051, "press_final": 2.4261, "press_media": 1.7346, "prog_x": 25.4057, "start_x": 42.0622, "starts_from_dispossess": 0.0368, "takeons_ok": 0.0412, "tempo": 0.3908, "transition_speed": 4.1818, "verticalidad_media": 0.4116}, "Estoril": {"atk_l": 40.6793, "atk_w": 30.7218, "ball_distance": 142.8544, "behind_line_ok": 0.0623, "broke_last_line": 0.0405, "broke_second_last": 0.1719, "cross_pvadded_max": 0.0007, "dang_runs": 0.1181, "deep_completions": 0.3274, "def_h": 30.9467, "dribbles_box": 0.0126, "dribbles_last_third": 0.0713, "duration_s": 27.5429, "hold_max": 10.2032, "hold_mean": 5.9301, "hold_min": 3.6728, "line_breaks": 0.8952, "max_x": 68.348, "n_centros": 0.1087, "n_events": 5.773, "n_involved": 1.9145, "n_passes": 3.3898, "opt_quality_mean": 0.0358, "paredes": 0.3424, "pass_options_mean": 8.9535, "passes_behind_line": 0.1339, "pct_adentro": 0.5007, "pct_afuera": 0.4125, "pct_cortos": 0.4254, "pct_headpass": 0.0395, "pct_largos": 0.1988, "pct_launch": 0.0751, "pct_layoff": 0.0113, "pct_medios": 0.2899, "pct_switch": 0.0046, "pct_through": 0.0031, "pct_verticales": 0.4911, "pelotazos_espalda": 0.0977, "press_final": 2.6533, "press_media": 1.8824, "prog_x": 24.484, "start_x": 45.011, "starts_from_dispossess": 0.0407, "takeons_ok": 0.0561, "tempo": 0.3926, "transition_speed": 3.3346, "verticalidad_media": 0.3495}, "Estrela": {"atk_l": 43.2943, "atk_w": 32.7327, "ball_distance": 126.0702, "behind_line_ok": 0.0455, "broke_last_line": 0.0257, "broke_second_last": 0.1388, "cross_pvadded_max": 0.0012, "dang_runs": 0.1127, "deep_completions": 0.2187, "def_h": 34.0879, "dribbles_box": 0.0097, "dribbles_last_third": 0.0477, "duration_s": 25.105, "hold_max": 10.8025, "hold_mean": 6.2816, "hold_min": 3.7352, "line_breaks": 0.6546, "max_x": 64.1579, "n_centros": 0.1088, "n_events": 5.3491, "n_involved": 1.8207, "n_passes": 2.9302, "opt_quality_mean": -0.071, "paredes": 0.2109, "pass_options_mean": 8.9313, "passes_behind_line": 0.1276, "pct_adentro": 0.4799, "pct_afuera": 0.4227, "pct_cortos": 0.3643, "pct_headpass": 0.0413, "pct_largos": 0.2205, "pct_launch": 0.0757, "pct_layoff": 0.0109, "pct_medios": 0.3189, "pct_switch": 0.0098, "pct_through": 0.0043, "pct_verticales": 0.463, "pelotazos_espalda": 0.0984, "press_final": 2.4915, "press_media": 1.791, "prog_x": 24.8268, "start_x": 40.4864, "starts_from_dispossess": 0.0402, "takeons_ok": 0.0624, "tempo": 0.3782, "transition_speed": 3.7198, "verticalidad_media": 0.3141}, "Famalicão": {"atk_l": 43.3889, "atk_w": 33.5216, "ball_distance": 123.3487, "behind_line_ok": 0.0619, "broke_last_line": 0.0397, "broke_second_last": 0.1482, "cross_pvadded_max": 0.0017, "dang_runs": 0.151, "deep_completions": 0.3585, "def_h": 30.9208, "dribbles_box": 0.0133, "dribbles_last_third": 0.0563, "duration_s": 27.4168, "hold_max": 10.508, "hold_mean": 5.8281, "hold_min": 3.4038, "line_breaks": 0.5616, "max_x": 68.5891, "n_centros": 0.1451, "n_events": 5.6277, "n_involved": 1.8966, "n_passes": 3.1563, "opt_quality_mean": 0.079, "paredes": 0.2335, "pass_options_mean": 8.9665, "passes_behind_line": 0.1373, "pct_adentro": 0.5201, "pct_afuera": 0.3858, "pct_cortos": 0.3654, "pct_headpass": 0.0385, "pct_largos": 0.1848, "pct_launch": 0.0595, "pct_layoff": 0.012, "pct_medios": 0.3568, "pct_switch": 0.0067, "pct_through": 0.0035, "pct_verticales": 0.4661, "pelotazos_espalda": 0.0995, "press_final": 2.404, "press_media": 1.7399, "prog_x": 24.4353, "start_x": 45.2556, "starts_from_dispossess": 0.0456, "takeons_ok": 0.0423, "tempo": 0.3876, "transition_speed": 3.4977, "verticalidad_media": 0.3298}, "Gil Vicente": {"atk_l": 43.029, "atk_w": 31.7285, "ball_distance": 131.3543, "behind_line_ok": 0.053, "broke_last_line": 0.0283, "broke_second_last": 0.1457, "cross_pvadded_max": 0.0015, "dang_runs": 0.1702, "deep_completions": 0.3242, "def_h": 30.73, "dribbles_box": 0.0123, "dribbles_last_third": 0.0659, "duration_s": 28.353, "hold_max": 11.5115, "hold_mean": 6.9387, "hold_min": 4.4821, "line_breaks": 0.6121, "max_x": 68.4948, "n_centros": 0.1323, "n_events": 5.5809, "n_involved": 1.8621, "n_passes": 2.9791, "opt_quality_mean": 0.1128, "paredes": 0.2708, "pass_options_mean": 8.8752, "passes_behind_line": 0.1272, "pct_adentro": 0.5131, "pct_afuera": 0.3918, "pct_cortos": 0.3544, "pct_headpass": 0.0458, "pct_largos": 0.2041, "pct_launch": 0.0745, "pct_layoff": 0.0103, "pct_medios": 0.347, "pct_switch": 0.0055, "pct_through": 0.0023, "pct_verticales": 0.4651, "pelotazos_espalda": 0.0904, "press_final": 2.4965, "press_media": 1.7603, "prog_x": 23.2979, "start_x": 46.5591, "starts_from_dispossess": 0.0385, "takeons_ok": 0.0489, "tempo": 0.3687, "transition_speed": 3.1008, "verticalidad_media": 0.3402}, "Moreirense": {"atk_l": 43.5522, "atk_w": 32.4781, "ball_distance": 167.8495, "behind_line_ok": 0.0487, "broke_last_line": 0.0264, "broke_second_last": 0.1414, "cross_pvadded_max": 0.0009, "dang_runs": 0.2015, "deep_completions": 0.2871, "def_h": 34.6291, "dribbles_box": 0.0068, "dribbles_last_third": 0.0487, "duration_s": 26.3953, "hold_max": 11.2988, "hold_mean": 6.4064, "hold_min": 3.7928, "line_breaks": 0.8437, "max_x": 63.6308, "n_centros": 0.1131, "n_events": 5.7978, "n_involved": 2.0098, "n_passes": 3.5857, "opt_quality_mean": -0.0535, "paredes": 0.3394, "pass_options_mean": 8.7972, "passes_behind_line": 0.1298, "pct_adentro": 0.4873, "pct_afuera": 0.4371, "pct_cortos": 0.3889, "pct_headpass": 0.0379, "pct_largos": 0.1968, "pct_launch": 0.0873, "pct_layoff": 0.012, "pct_medios": 0.3392, "pct_switch": 0.0051, "pct_through": 0.0019, "pct_verticales": 0.4765, "pelotazos_espalda": 0.0929, "press_final": 2.3851, "press_media": 1.6674, "prog_x": 24.082, "start_x": 40.4056, "starts_from_dispossess": 0.0396, "takeons_ok": 0.0445, "tempo": 0.3879, "transition_speed": 3.3168, "verticalidad_media": 0.3267}, "Nacional": {"atk_l": 40.2783, "atk_w": 30.6975, "ball_distance": 102.3873, "behind_line_ok": 0.0499, "broke_last_line": 0.0246, "broke_second_last": 0.132, "cross_pvadded_max": 0.0016, "dang_runs": 0.1032, "deep_completions": 0.2444, "def_h": 31.1994, "dribbles_box": 0.0103, "dribbles_last_third": 0.0528, "duration_s": 26.8121, "hold_max": 11.3561, "hold_mean": 7.1699, "hold_min": 4.8639, "line_breaks": 0.445, "max_x": 68.5875, "n_centros": 0.124, "n_events": 5.2604, "n_involved": 1.7388, "n_passes": 2.6464, "opt_quality_mean": 0.0138, "paredes": 0.1706, "pass_options_mean": 8.4503, "passes_behind_line": 0.1419, "pct_adentro": 0.5095, "pct_afuera": 0.3937, "pct_cortos": 0.3369, "pct_headpass": 0.0521, "pct_largos": 0.2588, "pct_launch": 0.0952, "pct_layoff": 0.0098, "pct_medios": 0.3089, "pct_switch": 0.0068, "pct_through": 0.0033, "pct_verticales": 0.5029, "pelotazos_espalda": 0.1122, "press_final": 2.4493, "press_media": 1.737, "prog_x": 25.5489, "start_x": 44.1555, "starts_from_dispossess": 0.0407, "takeons_ok": 0.0453, "tempo": 0.354, "transition_speed": 3.5702, "verticalidad_media": 0.3768}, "Porto": {"atk_l": 40.078, "atk_w": 31.7653, "ball_distance": 144.1549, "behind_line_ok": 0.0513, "broke_last_line": 0.0383, "broke_second_last": 0.1705, "cross_pvadded_max": 0.0009, "dang_runs": 0.2439, "deep_completions": 0.3611, "def_h": 29.6199, "dribbles_box": 0.0166, "dribbles_last_third": 0.0819, "duration_s": 39.9935, "hold_max": 10.3301, "hold_mean": 5.8148, "hold_min": 3.5093, "line_breaks": 0.7082, "max_x": 69.6004, "n_centros": 0.1261, "n_events": 6.786, "n_involved": 1.8957, "n_passes": 3.4829, "opt_quality_mean": 0.1163, "paredes": 0.349, "pass_options_mean": 9.0332, "passes_behind_line": 0.1087, "pct_adentro": 0.5039, "pct_afuera": 0.3893, "pct_cortos": 0.4046, "pct_headpass": 0.0465, "pct_largos": 0.1483, "pct_launch": 0.0524, "pct_layoff": 0.0123, "pct_medios": 0.3412, "pct_switch": 0.0031, "pct_through": 0.0038, "pct_verticales": 0.4364, "pelotazos_espalda": 0.071, "press_final": 2.617, "press_media": 1.9053, "prog_x": 22.5282, "start_x": 48.4685, "starts_from_dispossess": 0.0428, "takeons_ok": 0.0578, "tempo": 0.3491, "transition_speed": 2.701, "verticalidad_media": 0.2829}, "Rio Ave": {"atk_l": 42.9508, "atk_w": 33.2416, "ball_distance": 136.9596, "behind_line_ok": 0.0442, "broke_last_line": 0.0237, "broke_second_last": 0.1481, "cross_pvadded_max": 0.0008, "dang_runs": 0.1052, "deep_completions": 0.2396, "def_h": 34.4161, "dribbles_box": 0.0123, "dribbles_last_third": 0.0651, "duration_s": 28.9553, "hold_max": 10.8808, "hold_mean": 5.8004, "hold_min": 3.2115, "line_breaks": 0.6162, "max_x": 63.9335, "n_centros": 0.1018, "n_events": 5.8092, "n_involved": 1.9249, "n_passes": 3.192, "opt_quality_mean": -0.0781, "paredes": 0.2479, "pass_options_mean": 8.8961, "passes_behind_line": 0.1222, "pct_adentro": 0.4881, "pct_afuera": 0.4149, "pct_cortos": 0.3743, "pct_headpass": 0.0356, "pct_largos": 0.197, "pct_launch": 0.0822, "pct_layoff": 0.0084, "pct_medios": 0.3328, "pct_switch": 0.0069, "pct_through": 0.003, "pct_verticales": 0.4603, "pelotazos_espalda": 0.0971, "press_final": 2.6392, "press_media": 1.8219, "prog_x": 24.159, "start_x": 41.148, "starts_from_dispossess": 0.0516, "takeons_ok": 0.0623, "tempo": 0.3659, "transition_speed": 3.3275, "verticalidad_media": 0.3174}, "Santa Clara": {"atk_l": 41.5899, "atk_w": 32.9237, "ball_distance": 120.4477, "behind_line_ok": 0.0473, "broke_last_line": 0.0292, "broke_second_last": 0.1361, "cross_pvadded_max": 0.0009, "dang_runs": 0.1383, "deep_completions": 0.2699, "def_h": 31.4987, "dribbles_box": 0.0133, "dribbles_last_third": 0.0617, "duration_s": 23.4356, "hold_max": 10.7528, "hold_mean": 6.3613, "hold_min": 4.1034, "line_breaks": 0.5108, "max_x": 67.9838, "n_centros": 0.1332, "n_events": 5.1753, "n_involved": 1.836, "n_passes": 2.9584, "opt_quality_mean": 0.0131, "paredes": 0.2425, "pass_options_mean": 8.8298, "passes_behind_line": 0.1384, "pct_adentro": 0.5113, "pct_afuera": 0.3979, "pct_cortos": 0.3612, "pct_headpass": 0.0429, "pct_largos": 0.2238, "pct_launch": 0.0829, "pct_layoff": 0.0076, "pct_medios": 0.3253, "pct_switch": 0.0042, "pct_through": 0.0015, "pct_verticales": 0.4722, "pelotazos_espalda": 0.113, "press_final": 2.5439, "press_media": 1.7912, "prog_x": 24.4113, "start_x": 44.7666, "starts_from_dispossess": 0.0387, "takeons_ok": 0.0543, "tempo": 0.3604, "transition_speed": 3.4175, "verticalidad_media": 0.3347}, "Sporting Braga": {"atk_l": 43.1565, "atk_w": 30.678, "ball_distance": 237.9133, "behind_line_ok": 0.078, "broke_last_line": 0.0545, "broke_second_last": 0.2382, "cross_pvadded_max": 0.0012, "dang_runs": 0.2048, "deep_completions": 0.5213, "def_h": 30.2785, "dribbles_box": 0.0147, "dribbles_last_third": 0.0693, "duration_s": 33.6906, "hold_max": 10.8197, "hold_mean": 6.0046, "hold_min": 3.5871, "line_breaks": 1.3707, "max_x": 69.8421, "n_centros": 0.1187, "n_events": 7.2933, "n_involved": 2.2223, "n_passes": 4.8346, "opt_quality_mean": 0.0825, "paredes": 0.5425, "pass_options_mean": 9.1139, "passes_behind_line": 0.1598, "pct_adentro": 0.5121, "pct_afuera": 0.4199, "pct_cortos": 0.4702, "pct_headpass": 0.0422, "pct_largos": 0.1548, "pct_launch": 0.0676, "pct_layoff": 0.0125, "pct_medios": 0.308, "pct_switch": 0.0033, "pct_through": 0.0025, "pct_verticales": 0.4286, "pelotazos_espalda": 0.1003, "press_final": 2.5553, "press_media": 1.9427, "prog_x": 22.4387, "start_x": 48.3874, "starts_from_dispossess": 0.0361, "takeons_ok": 0.0511, "tempo": 0.4141, "transition_speed": 2.7146, "verticalidad_media": 0.2474}, "Sporting CP": {"atk_l": 44.0558, "atk_w": 31.6569, "ball_distance": 200.0455, "behind_line_ok": 0.0759, "broke_last_line": 0.0576, "broke_second_last": 0.2269, "cross_pvadded_max": 0.0012, "dang_runs": 0.2294, "deep_completions": 0.4915, "def_h": 30.8731, "dribbles_box": 0.0241, "dribbles_last_third": 0.0992, "duration_s": 42.5073, "hold_max": 10.9778, "hold_mean": 5.2082, "hold_min": 2.8542, "line_breaks": 1.09, "max_x": 70.1023, "n_centros": 0.1324, "n_events": 7.4829, "n_involved": 2.1323, "n_passes": 4.2294, "opt_quality_mean": 0.1495, "paredes": 0.4639, "pass_options_mean": 9.2082, "passes_behind_line": 0.1359, "pct_adentro": 0.5218, "pct_afuera": 0.3856, "pct_cortos": 0.446, "pct_headpass": 0.0288, "pct_largos": 0.1331, "pct_launch": 0.0349, "pct_layoff": 0.0119, "pct_medios": 0.3294, "pct_switch": 0.0045, "pct_through": 0.0071, "pct_verticales": 0.3983, "pelotazos_espalda": 0.0749, "press_final": 2.6496, "press_media": 1.9288, "prog_x": 23.419, "start_x": 48.2639, "starts_from_dispossess": 0.0498, "takeons_ok": 0.0699, "tempo": 0.3822, "transition_speed": 2.5479, "verticalidad_media": 0.2374}, "Tondela": {"atk_l": 42.0531, "atk_w": 32.6955, "ball_distance": 111.2992, "behind_line_ok": 0.0548, "broke_last_line": 0.0266, "broke_second_last": 0.1486, "cross_pvadded_max": 0.0011, "dang_runs": 0.1466, "deep_completions": 0.2725, "def_h": 32.0864, "dribbles_box": 0.0092, "dribbles_last_third": 0.0537, "duration_s": 28.7916, "hold_max": 10.9108, "hold_mean": 6.6854, "hold_min": 4.2653, "line_breaks": 0.559, "max_x": 67.9466, "n_centros": 0.1374, "n_events": 5.4346, "n_involved": 1.8111, "n_passes": 2.845, "opt_quality_mean": 0.004, "paredes": 0.2183, "pass_options_mean": 8.8548, "passes_behind_line": 0.1431, "pct_adentro": 0.4975, "pct_afuera": 0.4148, "pct_cortos": 0.3625, "pct_headpass": 0.0463, "pct_largos": 0.2275, "pct_launch": 0.0903, "pct_layoff": 0.0083, "pct_medios": 0.3232, "pct_switch": 0.0033, "pct_through": 0.0019, "pct_verticales": 0.4994, "pelotazos_espalda": 0.1136, "press_final": 2.3429, "press_media": 1.7208, "prog_x": 26.3209, "start_x": 42.8138, "starts_from_dispossess": 0.0404, "takeons_ok": 0.0443, "tempo": 0.3752, "transition_speed": 3.7396, "verticalidad_media": 0.3681}, "Vitória Guimarães": {"atk_l": 42.4775, "atk_w": 32.6169, "ball_distance": 119.1642, "behind_line_ok": 0.0495, "broke_last_line": 0.0376, "broke_second_last": 0.1563, "cross_pvadded_max": 0.0011, "dang_runs": 0.1314, "deep_completions": 0.3338, "def_h": 30.3236, "dribbles_box": 0.01, "dribbles_last_third": 0.0642, "duration_s": 26.7907, "hold_max": 11.1403, "hold_mean": 6.4129, "hold_min": 3.9113, "line_breaks": 0.6333, "max_x": 68.9406, "n_centros": 0.147, "n_events": 5.4912, "n_involved": 1.8273, "n_passes": 3.1473, "opt_quality_mean": 0.0829, "paredes": 0.283, "pass_options_mean": 8.9272, "passes_behind_line": 0.1148, "pct_adentro": 0.5055, "pct_afuera": 0.4011, "pct_cortos": 0.3805, "pct_headpass": 0.0435, "pct_largos": 0.1917, "pct_launch": 0.0705, "pct_layoff": 0.011, "pct_medios": 0.3351, "pct_switch": 0.0049, "pct_through": 0.0023, "pct_verticales": 0.4646, "pelotazos_espalda": 0.0813, "press_final": 2.4177, "press_media": 1.8109, "prog_x": 23.2359, "start_x": 47.1303, "starts_from_dispossess": 0.0405, "takeons_ok": 0.0479, "tempo": 0.3752, "transition_speed": 3.2999, "verticalidad_media": 0.3211}}, "team_eje_norm_gen": {"AVS": {"eje_verticalidad": 0.135, "eje_elaboracion": -0.1248, "eje_individual": -0.0438, "eje_rotura_lineas": -0.0594, "eje_amplitud_centro": -0.0137, "eje_profundidad_espalda": -0.0445, "eje_robo_alto": -0.0489, "eje_aereo_segunda": 0.0308}, "Alverca": {"eje_verticalidad": -0.0151, "eje_elaboracion": -0.0395, "eje_individual": 0.0002, "eje_rotura_lineas": -0.0181, "eje_amplitud_centro": 0.0029, "eje_profundidad_espalda": -0.0246, "eje_robo_alto": -0.0374, "eje_aereo_segunda": -0.0061}, "Arouca": {"eje_verticalidad": -0.0155, "eje_elaboracion": 0.0275, "eje_individual": -0.0567, "eje_rotura_lineas": 0.0046, "eje_amplitud_centro": 0.0104, "eje_profundidad_espalda": 0.0093, "eje_robo_alto": -0.0687, "eje_aereo_segunda": -0.0073}, "Benfica": {"eje_verticalidad": -0.1418, "eje_elaboracion": 0.0834, "eje_individual": 0.0922, "eje_rotura_lineas": 0.0735, "eje_amplitud_centro": -0.0017, "eje_profundidad_espalda": 0.0641, "eje_robo_alto": 0.0999, "eje_aereo_segunda": -0.0324}, "Casa Pia": {"eje_verticalidad": 0.1292, "eje_elaboracion": -0.1107, "eje_individual": -0.0471, "eje_rotura_lineas": -0.0488, "eje_amplitud_centro": -0.0074, "eje_profundidad_espalda": -0.0325, "eje_robo_alto": -0.0632, "eje_aereo_segunda": 0.0764}, "Estoril": {"eje_verticalidad": -0.0022, "eje_elaboracion": 0.0567, "eje_individual": 0.0026, "eje_rotura_lineas": 0.0345, "eje_amplitud_centro": -0.0131, "eje_profundidad_espalda": 0.0117, "eje_robo_alto": 0.0016, "eje_aereo_segunda": -0.0022}, "Estrela": {"eje_verticalidad": -0.0134, "eje_elaboracion": -0.0619, "eje_individual": -0.0211, "eje_rotura_lineas": -0.0213, "eje_amplitud_centro": 0.0292, "eje_profundidad_espalda": -0.0443, "eje_robo_alto": -0.0842, "eje_aereo_segunda": 0.0002}, "Famalicão": {"eje_verticalidad": -0.0367, "eje_elaboracion": -0.0363, "eje_individual": -0.0161, "eje_rotura_lineas": -0.0099, "eje_amplitud_centro": 0.0108, "eje_profundidad_espalda": 0.0252, "eje_robo_alto": 0.0185, "eje_aereo_segunda": -0.0222}, "Gil Vicente": {"eje_verticalidad": -0.0303, "eje_elaboracion": -0.0425, "eje_individual": 0.0028, "eje_rotura_lineas": -0.0296, "eje_amplitud_centro": -0.0041, "eje_profundidad_espalda": -0.0098, "eje_robo_alto": 0.025, "eje_aereo_segunda": 0.0044}, "Moreirense": {"eje_verticalidad": -0.0242, "eje_elaboracion": 0.0439, "eje_individual": -0.0218, "eje_rotura_lineas": -0.0154, "eje_amplitud_centro": 0.0173, "eje_profundidad_espalda": -0.0222, "eje_robo_alto": -0.0872, "eje_aereo_segunda": 0.0157}, "Nacional": {"eje_verticalidad": 0.0715, "eje_elaboracion": -0.1121, "eje_individual": -0.0352, "eje_rotura_lineas": -0.0528, "eje_amplitud_centro": -0.0017, "eje_profundidad_espalda": -0.01, "eje_robo_alto": -0.0143, "eje_aereo_segunda": 0.0438}, "Porto": {"eje_verticalidad": -0.1425, "eje_elaboracion": 0.0604, "eje_individual": 0.0556, "eje_rotura_lineas": 0.0171, "eje_amplitud_centro": -0.0277, "eje_profundidad_espalda": -0.029, "eje_robo_alto": 0.0716, "eje_aereo_segunda": -0.0134}, "Rio Ave": {"eje_verticalidad": -0.0451, "eje_elaboracion": -0.022, "eje_individual": -0.001, "eje_rotura_lineas": -0.03, "eje_amplitud_centro": -0.003, "eje_profundidad_espalda": -0.0438, "eje_robo_alto": -0.0432, "eje_aereo_segunda": -0.0183}, "Santa Clara": {"eje_verticalidad": -0.0019, "eje_elaboracion": -0.0525, "eje_individual": -0.0017, "eje_rotura_lineas": -0.0481, "eje_amplitud_centro": -0.0053, "eje_profundidad_espalda": -0.0063, "eje_robo_alto": -0.0079, "eje_aereo_segunda": -0.0061}, "Sporting Braga": {"eje_verticalidad": -0.1518, "eje_elaboracion": 0.2579, "eje_individual": 0.0225, "eje_rotura_lineas": 0.1357, "eje_amplitud_centro": -0.0047, "eje_profundidad_espalda": 0.1104, "eje_robo_alto": 0.0533, "eje_aereo_segunda": -0.0}, "Sporting CP": {"eje_verticalidad": -0.2065, "eje_elaboracion": 0.1799, "eje_individual": 0.0972, "eje_rotura_lineas": 0.1332, "eje_amplitud_centro": -0.0156, "eje_profundidad_espalda": 0.0605, "eje_robo_alto": 0.0853, "eje_aereo_segunda": -0.0781}, "Tondela": {"eje_verticalidad": 0.0516, "eje_elaboracion": -0.0638, "eje_individual": -0.0263, "eje_rotura_lineas": -0.037, "eje_amplitud_centro": 0.0093, "eje_profundidad_espalda": 0.0062, "eje_robo_alto": -0.0401, "eje_aereo_segunda": 0.0156}, "Vitória Guimarães": {"eje_verticalidad": -0.0429, "eje_elaboracion": -0.0106, "eje_individual": -0.0149, "eje_rotura_lineas": -0.0084, "eje_amplitud_centro": 0.0158, "eje_profundidad_espalda": -0.0268, "eje_robo_alto": 0.0407, "eje_aereo_segunda": -0.0019}}, "team_eje_norm_con": {"AVS": {"eje_verticalidad": -0.0515, "eje_elaboracion": 0.0388, "eje_individual": 0.0278, "eje_rotura_lineas": 0.0325, "eje_amplitud_centro": 0.0266, "eje_profundidad_espalda": 0.0639, "eje_robo_alto": 0.0319, "eje_aereo_segunda": -0.0111}, "Alverca": {"eje_verticalidad": -0.0851, "eje_elaboracion": 0.0893, "eje_individual": 0.0104, "eje_rotura_lineas": 0.0378, "eje_amplitud_centro": 0.0305, "eje_profundidad_espalda": 0.0464, "eje_robo_alto": 0.0452, "eje_aereo_segunda": -0.0262}, "Arouca": {"eje_verticalidad": -0.0532, "eje_elaboracion": 0.0196, "eje_individual": 0.0154, "eje_rotura_lineas": 0.057, "eje_amplitud_centro": 0.0037, "eje_profundidad_espalda": 0.0424, "eje_robo_alto": 0.0178, "eje_aereo_segunda": -0.0199}, "Benfica": {"eje_verticalidad": 0.0047, "eje_elaboracion": -0.0347, "eje_individual": -0.0024, "eje_rotura_lineas": -0.0355, "eje_amplitud_centro": -0.0043, "eje_profundidad_espalda": -0.0449, "eje_robo_alto": -0.0672, "eje_aereo_segunda": 0.0082}, "Casa Pia": {"eje_verticalidad": -0.0535, "eje_elaboracion": 0.0195, "eje_individual": -0.0249, "eje_rotura_lineas": 0.0121, "eje_amplitud_centro": -0.0094, "eje_profundidad_espalda": -0.0074, "eje_robo_alto": 0.028, "eje_aereo_segunda": 0.0072}, "Estoril": {"eje_verticalidad": 0.0185, "eje_elaboracion": -0.0318, "eje_individual": 0.0064, "eje_rotura_lineas": 0.0101, "eje_amplitud_centro": -0.0076, "eje_profundidad_espalda": -0.0094, "eje_robo_alto": -0.0301, "eje_aereo_segunda": 0.0202}, "Estrela": {"eje_verticalidad": -0.0307, "eje_elaboracion": 0.0112, "eje_individual": 0.0012, "eje_rotura_lineas": -0.0142, "eje_amplitud_centro": -0.0051, "eje_profundidad_espalda": 0.0405, "eje_robo_alto": 0.0646, "eje_aereo_segunda": -0.0167}, "Famalicão": {"eje_verticalidad": -0.0305, "eje_elaboracion": -0.0201, "eje_individual": 0.0054, "eje_rotura_lineas": -0.0064, "eje_amplitud_centro": -0.0053, "eje_profundidad_espalda": -0.0224, "eje_robo_alto": -0.033, "eje_aereo_segunda": -0.0099}, "Gil Vicente": {"eje_verticalidad": -0.005, "eje_elaboracion": -0.0175, "eje_individual": -0.0303, "eje_rotura_lineas": -0.0154, "eje_amplitud_centro": -0.0179, "eje_profundidad_espalda": -0.0264, "eje_robo_alto": -0.0344, "eje_aereo_segunda": 0.0177}, "Moreirense": {"eje_verticalidad": -0.077, "eje_elaboracion": 0.0223, "eje_individual": 0.0135, "eje_rotura_lineas": 0.0093, "eje_amplitud_centro": 0.0157, "eje_profundidad_espalda": 0.0178, "eje_robo_alto": 0.0547, "eje_aereo_segunda": 0.0014}, "Nacional": {"eje_verticalidad": -0.0351, "eje_elaboracion": -0.0353, "eje_individual": -0.0007, "eje_rotura_lineas": -0.0223, "eje_amplitud_centro": 0.001, "eje_profundidad_espalda": 0.0103, "eje_robo_alto": 0.0074, "eje_aereo_segunda": -0.018}, "Porto": {"eje_verticalidad": 0.0018, "eje_elaboracion": -0.0341, "eje_individual": -0.0285, "eje_rotura_lineas": -0.0391, "eje_amplitud_centro": 0.0042, "eje_profundidad_espalda": -0.0756, "eje_robo_alto": -0.0929, "eje_aereo_segunda": -0.005}, "Rio Ave": {"eje_verticalidad": -0.0865, "eje_elaboracion": 0.0417, "eje_individual": 0.0173, "eje_rotura_lineas": 0.0554, "eje_amplitud_centro": 0.0128, "eje_profundidad_espalda": 0.0419, "eje_robo_alto": 0.0794, "eje_aereo_segunda": -0.0207}, "Santa Clara": {"eje_verticalidad": 0.0078, "eje_elaboracion": 0.013, "eje_individual": -0.0109, "eje_rotura_lineas": -0.0122, "eje_amplitud_centro": -0.0173, "eje_profundidad_espalda": 0.0098, "eje_robo_alto": -0.0218, "eje_aereo_segunda": 0.0172}, "Sporting Braga": {"eje_verticalidad": -0.0005, "eje_elaboracion": -0.0453, "eje_individual": -0.0126, "eje_rotura_lineas": -0.0212, "eje_amplitud_centro": -0.0151, "eje_profundidad_espalda": -0.048, "eje_robo_alto": -0.0586, "eje_aereo_segunda": 0.0202}, "Sporting CP": {"eje_verticalidad": 0.0331, "eje_elaboracion": -0.0209, "eje_individual": -0.0118, "eje_rotura_lineas": -0.0068, "eje_amplitud_centro": -0.0041, "eje_profundidad_espalda": -0.0205, "eje_robo_alto": -0.0701, "eje_aereo_segunda": 0.0113}, "Tondela": {"eje_verticalidad": -0.0381, "eje_elaboracion": 0.0377, "eje_individual": 0.0413, "eje_rotura_lineas": -0.0077, "eje_amplitud_centro": 0.011, "eje_profundidad_espalda": 0.004, "eje_robo_alto": 0.0184, "eje_aereo_segunda": -0.0018}, "Vitória Guimarães": {"eje_verticalidad": -0.0019, "eje_elaboracion": -0.0205, "eje_individual": -0.0292, "eje_rotura_lineas": -0.0136, "eje_amplitud_centro": -0.0218, "eje_profundidad_espalda": -0.0287, "eje_robo_alto": -0.0386, "eje_aereo_segunda": 0.0246}}} \ No newline at end of file diff --git a/vendor/data/ejes/portuguese-primeira-liga/25-26/team_profiles.parquet b/vendor/data/ejes/portuguese-primeira-liga/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..0327a23f117524479d1581c5ff6869c0dffe4070 --- /dev/null +++ b/vendor/data/ejes/portuguese-primeira-liga/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4ca8a9d9d89eb719a7d34d58fe1a3943084409e280e5ecfec0ab047ec195714 +size 9457 diff --git a/vendor/data/ejes/serbian-super-liga/25-26/ejes_definition.json b/vendor/data/ejes/serbian-super-liga/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/serbian-super-liga/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/serbian-super-liga/25-26/match_team_ejes.parquet b/vendor/data/ejes/serbian-super-liga/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..923c7003d91eb8b62128ad00aae495164cfc8dbb --- /dev/null +++ b/vendor/data/ejes/serbian-super-liga/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe853ad441ff531b5e95ad19494298d475bca117237f351150b05d07f88600ce +size 71510 diff --git a/vendor/data/ejes/serbian-super-liga/25-26/match_team_vars.parquet b/vendor/data/ejes/serbian-super-liga/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..b84ff452c8d349e099b5ca80dcd2b6a06f3f5642 --- /dev/null +++ b/vendor/data/ejes/serbian-super-liga/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3ba2c107af9b38c99092c9ef1ba13f7e25932130ce9df4db36757f4ad8423ee +size 265657 diff --git a/vendor/data/ejes/serbian-super-liga/25-26/predictor.json b/vendor/data/ejes/serbian-super-liga/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..bcae6d04c62848a51fffba48774e831bd11fa31c --- /dev/null +++ b/vendor/data/ejes/serbian-super-liga/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.9281, "con": 0.8393, "intercept": 0.0187}, "elaboracion": {"gen": 0.943, "con": 0.8913, "intercept": 0.0}, "individual": {"gen": 0.8894, "con": 0.6948, "intercept": 0.0002}, "rotura_lineas": {"gen": 0.9554, "con": 0.7678, "intercept": -0.0004}, "amplitud_centro": {"gen": 0.6309, "con": 0.7396, "intercept": -0.0002}, "profundidad_espalda": {"gen": 0.7734, "con": 0.441, "intercept": -0.0003}, "robo_alto": {"gen": 0.8571, "con": 0.8395, "intercept": 0.0035}, "aereo_segunda": {"gen": 0.849, "con": 0.6859, "intercept": 0.0003}} \ No newline at end of file diff --git a/vendor/data/ejes/serbian-super-liga/25-26/scales.json b/vendor/data/ejes/serbian-super-liga/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..72ba0590c64f3ab7141aa6e5a80630750317e25f --- /dev/null +++ b/vendor/data/ejes/serbian-super-liga/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 2.0749, "atk_w": 1.4379, "ball_distance": 47.7891, "behind_line_ok": 0.0254, "broke_last_line": 0.0174, "broke_second_last": 0.0423, "cross_pvadded_max": 0.0014, "dang_runs": 0.0809, "deep_completions": 0.1193, "def_h": 3.1049, "dribbles_box": 0.0086, "dribbles_last_third": 0.0228, "duration_s": 19.1674, "hold_max": 1.2509, "hold_mean": 0.9822, "hold_min": 0.9643, "line_breaks": 0.2394, "max_x": 4.0715, "n_centros": 0.0482, "n_events": 1.7766, "n_involved": 0.1713, "n_passes": 0.5763, "opt_quality_mean": 0.1369, "paredes": 0.0942, "pass_options_mean": 2.2003, "passes_behind_line": 0.0469, "pct_adentro": 0.0408, "pct_afuera": 0.0376, "pct_cortos": 0.0517, "pct_headpass": 0.0147, "pct_largos": 0.0494, "pct_launch": 0.0357, "pct_layoff": 0.0054, "pct_medios": 0.0438, "pct_switch": 0.0042, "pct_through": 0.0034, "pct_verticales": 0.0563, "pelotazos_espalda": 0.0386, "press_final": 0.4253, "press_media": 0.2742, "prog_x": 2.413, "start_x": 4.7418, "starts_from_dispossess": 0.0162, "takeons_ok": 0.0189, "tempo": 0.0378, "transition_speed": 0.6802, "verticalidad_media": 0.0669}, "eje_sigma": {"eje_verticalidad": 0.1155, "eje_elaboracion": 0.1027, "eje_individual": 0.0626, "eje_rotura_lineas": 0.0653, "eje_amplitud_centro": 0.0565, "eje_profundidad_espalda": 0.0981, "eje_robo_alto": 0.104, "eje_aereo_segunda": 0.067}, "eje_match_mean": {"eje_verticalidad": -0.0244, "eje_elaboracion": -0.0, "eje_individual": -0.0003, "eje_rotura_lineas": 0.0006, "eje_amplitud_centro": 0.0004, "eje_profundidad_espalda": 0.0012, "eje_robo_alto": -0.005, "eje_aereo_segunda": -0.0006}, "eje_match_std": {"eje_verticalidad": 0.1348, "eje_elaboracion": 0.1212, "eje_individual": 0.0691, "eje_rotura_lineas": 0.0771, "eje_amplitud_centro": 0.0585, "eje_profundidad_espalda": 0.1038, "eje_robo_alto": 0.1133, "eje_aereo_segunda": 0.072}, "team_var_norm": {"Crvena zvezda": {"atk_l": 41.4822, "atk_w": 32.5523, "ball_distance": 155.1526, "behind_line_ok": 0.0696, "broke_last_line": 0.0511, "broke_second_last": 0.2006, "cross_pvadded_max": 0.0024, "dang_runs": 0.2213, "deep_completions": 0.5034, "def_h": 28.6756, "dribbles_box": 0.0161, "dribbles_last_third": 0.0657, "duration_s": 29.5362, "hold_max": 9.3265, "hold_mean": 4.9987, "hold_min": 2.8122, "line_breaks": 0.8552, "max_x": 72.2807, "n_centros": 0.1661, "n_events": 6.4076, "n_involved": 2.109, "n_passes": 3.9264, "opt_quality_mean": 0.165, "paredes": 0.3577, "pass_options_mean": 8.9511, "passes_behind_line": 0.1199, "pct_adentro": 0.5415, "pct_afuera": 0.3828, "pct_cortos": 0.4221, "pct_headpass": 0.0428, "pct_largos": 0.1496, "pct_launch": 0.0533, "pct_layoff": 0.013, "pct_medios": 0.3538, "pct_switch": 0.0028, "pct_through": 0.0045, "pct_verticales": 0.43, "pelotazos_espalda": 0.0671, "press_final": 2.5586, "press_media": 1.9179, "prog_x": 23.4705, "start_x": 50.2069, "starts_from_dispossess": 0.043, "takeons_ok": 0.051, "tempo": 0.3985, "transition_speed": 2.8849, "verticalidad_media": 0.2717}, "IMT Novi Beograd": {"atk_l": 40.9965, "atk_w": 33.2101, "ball_distance": 73.9633, "behind_line_ok": 0.0307, "broke_last_line": 0.0212, "broke_second_last": 0.1433, "cross_pvadded_max": 0.001, "dang_runs": 0.0804, "deep_completions": 0.2622, "def_h": 30.288, "dribbles_box": 0.0075, "dribbles_last_third": 0.045, "duration_s": 14.2952, "hold_max": 9.7033, "hold_mean": 6.2037, "hold_min": 4.0828, "line_breaks": 0.3416, "max_x": 67.6908, "n_centros": 0.1314, "n_events": 4.1849, "n_involved": 1.7623, "n_passes": 2.6247, "opt_quality_mean": -0.0035, "paredes": 0.1832, "pass_options_mean": 7.8734, "passes_behind_line": 0.0912, "pct_adentro": 0.5318, "pct_afuera": 0.3902, "pct_cortos": 0.3773, "pct_headpass": 0.0507, "pct_largos": 0.2182, "pct_launch": 0.1107, "pct_layoff": 0.0118, "pct_medios": 0.3269, "pct_switch": 0.0033, "pct_through": 0.0016, "pct_verticales": 0.5026, "pelotazos_espalda": 0.0714, "press_final": 2.4576, "press_media": 1.8023, "prog_x": 23.2561, "start_x": 45.5362, "starts_from_dispossess": 0.0405, "takeons_ok": 0.0421, "tempo": 0.3783, "transition_speed": 3.6423, "verticalidad_media": 0.3698}, "Javor": {"atk_l": 41.5145, "atk_w": 34.1571, "ball_distance": 95.1638, "behind_line_ok": 0.0517, "broke_last_line": 0.0228, "broke_second_last": 0.1322, "cross_pvadded_max": 0.0016, "dang_runs": 0.1245, "deep_completions": 0.2756, "def_h": 32.5585, "dribbles_box": 0.0059, "dribbles_last_third": 0.045, "duration_s": 34.0233, "hold_max": 10.679, "hold_mean": 6.427, "hold_min": 4.0695, "line_breaks": 0.4506, "max_x": 66.7473, "n_centros": 0.1163, "n_events": 5.9254, "n_involved": 1.7581, "n_passes": 2.7783, "opt_quality_mean": -0.0879, "paredes": 0.2224, "pass_options_mean": 8.1901, "passes_behind_line": 0.1419, "pct_adentro": 0.4946, "pct_afuera": 0.4158, "pct_cortos": 0.3115, "pct_headpass": 0.0462, "pct_largos": 0.2537, "pct_launch": 0.1044, "pct_layoff": 0.0102, "pct_medios": 0.3461, "pct_switch": 0.0058, "pct_through": 0.002, "pct_verticales": 0.4949, "pelotazos_espalda": 0.1093, "press_final": 2.3634, "press_media": 1.7092, "prog_x": 26.8873, "start_x": 40.9537, "starts_from_dispossess": 0.0421, "takeons_ok": 0.0466, "tempo": 0.3441, "transition_speed": 3.7472, "verticalidad_media": 0.3711}, "Mladost Lučani": {"atk_l": 40.8105, "atk_w": 34.2946, "ball_distance": 84.373, "behind_line_ok": 0.045, "broke_last_line": 0.0226, "broke_second_last": 0.1391, "cross_pvadded_max": 0.0007, "dang_runs": 0.1086, "deep_completions": 0.2501, "def_h": 32.7867, "dribbles_box": 0.006, "dribbles_last_third": 0.0367, "duration_s": 24.7442, "hold_max": 9.8609, "hold_mean": 5.7944, "hold_min": 3.4921, "line_breaks": 0.3938, "max_x": 65.8201, "n_centros": 0.1065, "n_events": 5.0978, "n_involved": 1.7566, "n_passes": 2.6346, "opt_quality_mean": -0.0761, "paredes": 0.1823, "pass_options_mean": 8.1501, "passes_behind_line": 0.1133, "pct_adentro": 0.4956, "pct_afuera": 0.432, "pct_cortos": 0.3623, "pct_headpass": 0.0502, "pct_largos": 0.2322, "pct_launch": 0.1044, "pct_layoff": 0.0122, "pct_medios": 0.3333, "pct_switch": 0.0028, "pct_through": 0.0011, "pct_verticales": 0.5659, "pelotazos_espalda": 0.0817, "press_final": 2.5181, "press_media": 1.7586, "prog_x": 26.3134, "start_x": 40.3636, "starts_from_dispossess": 0.0351, "takeons_ok": 0.0336, "tempo": 0.3769, "transition_speed": 4.0019, "verticalidad_media": 0.4267}, "Napredak": {"atk_l": 41.0569, "atk_w": 33.046, "ball_distance": 97.54, "behind_line_ok": 0.0458, "broke_last_line": 0.0235, "broke_second_last": 0.127, "cross_pvadded_max": 0.0009, "dang_runs": 0.09, "deep_completions": 0.2699, "def_h": 32.1531, "dribbles_box": 0.0075, "dribbles_last_third": 0.0447, "duration_s": 22.8288, "hold_max": 10.0578, "hold_mean": 5.9571, "hold_min": 3.6034, "line_breaks": 0.5127, "max_x": 65.5465, "n_centros": 0.1127, "n_events": 4.9635, "n_involved": 1.7694, "n_passes": 2.7216, "opt_quality_mean": -0.0395, "paredes": 0.2022, "pass_options_mean": 8.8921, "passes_behind_line": 0.1205, "pct_adentro": 0.5048, "pct_afuera": 0.4124, "pct_cortos": 0.3934, "pct_headpass": 0.0469, "pct_largos": 0.2142, "pct_launch": 0.0957, "pct_layoff": 0.0113, "pct_medios": 0.3104, "pct_switch": 0.0042, "pct_through": 0.0018, "pct_verticales": 0.5159, "pelotazos_espalda": 0.0875, "press_final": 2.609, "press_media": 1.8483, "prog_x": 24.1083, "start_x": 42.3248, "starts_from_dispossess": 0.0329, "takeons_ok": 0.0379, "tempo": 0.3811, "transition_speed": 3.6277, "verticalidad_media": 0.3796}, "Novi Pazar": {"atk_l": 41.8401, "atk_w": 33.5206, "ball_distance": 95.5773, "behind_line_ok": 0.0454, "broke_last_line": 0.0247, "broke_second_last": 0.1292, "cross_pvadded_max": 0.0011, "dang_runs": 0.1139, "deep_completions": 0.2892, "def_h": 30.976, "dribbles_box": 0.0084, "dribbles_last_third": 0.045, "duration_s": 23.9722, "hold_max": 10.4275, "hold_mean": 6.4556, "hold_min": 4.2194, "line_breaks": 0.412, "max_x": 68.0872, "n_centros": 0.1126, "n_events": 4.8717, "n_involved": 1.6837, "n_passes": 2.5411, "opt_quality_mean": -0.0452, "paredes": 0.1793, "pass_options_mean": 8.9368, "passes_behind_line": 0.13, "pct_adentro": 0.5034, "pct_afuera": 0.4104, "pct_cortos": 0.3386, "pct_headpass": 0.0429, "pct_largos": 0.247, "pct_launch": 0.1146, "pct_layoff": 0.0072, "pct_medios": 0.3286, "pct_switch": 0.0067, "pct_through": 0.0013, "pct_verticales": 0.5366, "pelotazos_espalda": 0.1032, "press_final": 2.5362, "press_media": 1.772, "prog_x": 25.9203, "start_x": 43.3965, "starts_from_dispossess": 0.034, "takeons_ok": 0.0343, "tempo": 0.3528, "transition_speed": 3.8547, "verticalidad_media": 0.4095}, "OFK Beograd": {"atk_l": 40.7796, "atk_w": 33.7474, "ball_distance": 104.7002, "behind_line_ok": 0.048, "broke_last_line": 0.0313, "broke_second_last": 0.1297, "cross_pvadded_max": 0.0006, "dang_runs": 0.1275, "deep_completions": 0.3008, "def_h": 31.8701, "dribbles_box": 0.01, "dribbles_last_third": 0.0582, "duration_s": 22.0871, "hold_max": 10.2377, "hold_mean": 6.0857, "hold_min": 3.7414, "line_breaks": 0.4463, "max_x": 67.3983, "n_centros": 0.105, "n_events": 4.98, "n_involved": 1.74, "n_passes": 2.8151, "opt_quality_mean": -0.0277, "paredes": 0.2135, "pass_options_mean": 8.4208, "passes_behind_line": 0.1336, "pct_adentro": 0.507, "pct_afuera": 0.4064, "pct_cortos": 0.355, "pct_headpass": 0.043, "pct_largos": 0.2221, "pct_launch": 0.0967, "pct_layoff": 0.0087, "pct_medios": 0.3374, "pct_switch": 0.0039, "pct_through": 0.0035, "pct_verticales": 0.5129, "pelotazos_espalda": 0.1038, "press_final": 2.4995, "press_media": 1.7161, "prog_x": 25.4174, "start_x": 43.0305, "starts_from_dispossess": 0.0385, "takeons_ok": 0.0548, "tempo": 0.3669, "transition_speed": 3.7239, "verticalidad_media": 0.3746}, "Partizan": {"atk_l": 43.3964, "atk_w": 33.345, "ball_distance": 138.9221, "behind_line_ok": 0.0482, "broke_last_line": 0.0359, "broke_second_last": 0.1623, "cross_pvadded_max": 0.001, "dang_runs": 0.1652, "deep_completions": 0.3644, "def_h": 31.9722, "dribbles_box": 0.0094, "dribbles_last_third": 0.0567, "duration_s": 33.7273, "hold_max": 10.0807, "hold_mean": 5.2858, "hold_min": 2.7343, "line_breaks": 0.6924, "max_x": 66.6874, "n_centros": 0.1142, "n_events": 6.3085, "n_involved": 1.9237, "n_passes": 3.5365, "opt_quality_mean": 0.0493, "paredes": 0.2698, "pass_options_mean": 8.9047, "passes_behind_line": 0.1079, "pct_adentro": 0.5078, "pct_afuera": 0.4159, "pct_cortos": 0.3979, "pct_headpass": 0.0421, "pct_largos": 0.1699, "pct_launch": 0.0685, "pct_layoff": 0.0109, "pct_medios": 0.3572, "pct_switch": 0.004, "pct_through": 0.0035, "pct_verticales": 0.4617, "pelotazos_espalda": 0.0656, "press_final": 2.5503, "press_media": 1.8251, "prog_x": 23.5319, "start_x": 44.3199, "starts_from_dispossess": 0.0386, "takeons_ok": 0.0478, "tempo": 0.3985, "transition_speed": 3.2138, "verticalidad_media": 0.3031}, "Radnik Surdulica": {"atk_l": 41.7707, "atk_w": 33.4416, "ball_distance": 87.1546, "behind_line_ok": 0.0468, "broke_last_line": 0.0282, "broke_second_last": 0.1432, "cross_pvadded_max": 0.0014, "dang_runs": 0.0972, "deep_completions": 0.3002, "def_h": 31.5077, "dribbles_box": 0.0096, "dribbles_last_third": 0.0492, "duration_s": 26.2301, "hold_max": 9.8665, "hold_mean": 6.0502, "hold_min": 3.8008, "line_breaks": 0.4052, "max_x": 67.3693, "n_centros": 0.1055, "n_events": 5.1591, "n_involved": 1.7204, "n_passes": 2.4825, "opt_quality_mean": -0.0237, "paredes": 0.1788, "pass_options_mean": 8.8263, "passes_behind_line": 0.1285, "pct_adentro": 0.5038, "pct_afuera": 0.4098, "pct_cortos": 0.368, "pct_headpass": 0.0442, "pct_largos": 0.2301, "pct_launch": 0.1153, "pct_layoff": 0.012, "pct_medios": 0.3165, "pct_switch": 0.0059, "pct_through": 0.0014, "pct_verticales": 0.5365, "pelotazos_espalda": 0.0998, "press_final": 2.503, "press_media": 1.8403, "prog_x": 24.9289, "start_x": 43.5854, "starts_from_dispossess": 0.0384, "takeons_ok": 0.0376, "tempo": 0.3639, "transition_speed": 3.8612, "verticalidad_media": 0.4093}, "Radnički Kragujevac": {"atk_l": 40.9993, "atk_w": 33.1017, "ball_distance": 91.344, "behind_line_ok": 0.0425, "broke_last_line": 0.0292, "broke_second_last": 0.1284, "cross_pvadded_max": 0.0014, "dang_runs": 0.1069, "deep_completions": 0.3233, "def_h": 31.1405, "dribbles_box": 0.0102, "dribbles_last_third": 0.0592, "duration_s": 25.603, "hold_max": 10.0198, "hold_mean": 5.8088, "hold_min": 3.5047, "line_breaks": 0.4378, "max_x": 67.4829, "n_centros": 0.1292, "n_events": 5.2709, "n_involved": 1.7589, "n_passes": 2.7013, "opt_quality_mean": 0.0106, "paredes": 0.2117, "pass_options_mean": 8.1495, "passes_behind_line": 0.1092, "pct_adentro": 0.5101, "pct_afuera": 0.3848, "pct_cortos": 0.376, "pct_headpass": 0.042, "pct_largos": 0.1857, "pct_launch": 0.0812, "pct_layoff": 0.012, "pct_medios": 0.3335, "pct_switch": 0.0034, "pct_through": 0.0026, "pct_verticales": 0.4866, "pelotazos_espalda": 0.0777, "press_final": 2.4332, "press_media": 1.7727, "prog_x": 23.6889, "start_x": 44.9281, "starts_from_dispossess": 0.0382, "takeons_ok": 0.0486, "tempo": 0.3536, "transition_speed": 3.4183, "verticalidad_media": 0.3479}, "Radnički Niš": {"atk_l": 41.0817, "atk_w": 33.2114, "ball_distance": 104.5721, "behind_line_ok": 0.0567, "broke_last_line": 0.0291, "broke_second_last": 0.1381, "cross_pvadded_max": 0.0014, "dang_runs": 0.1098, "deep_completions": 0.3206, "def_h": 30.8085, "dribbles_box": 0.0088, "dribbles_last_third": 0.0484, "duration_s": 24.2313, "hold_max": 9.9072, "hold_mean": 5.739, "hold_min": 3.3931, "line_breaks": 0.4921, "max_x": 68.5557, "n_centros": 0.1182, "n_events": 5.2031, "n_involved": 1.796, "n_passes": 2.8353, "opt_quality_mean": -0.0086, "paredes": 0.2292, "pass_options_mean": 8.1931, "passes_behind_line": 0.1354, "pct_adentro": 0.5049, "pct_afuera": 0.4079, "pct_cortos": 0.3747, "pct_headpass": 0.0458, "pct_largos": 0.2212, "pct_launch": 0.0977, "pct_layoff": 0.0113, "pct_medios": 0.3178, "pct_switch": 0.0052, "pct_through": 0.0012, "pct_verticales": 0.5095, "pelotazos_espalda": 0.1043, "press_final": 2.5262, "press_media": 1.7891, "prog_x": 26.0064, "start_x": 43.9022, "starts_from_dispossess": 0.0363, "takeons_ok": 0.0427, "tempo": 0.3651, "transition_speed": 3.7601, "verticalidad_media": 0.3712}, "Spartak Subotica": {"atk_l": 39.4546, "atk_w": 33.368, "ball_distance": 88.7133, "behind_line_ok": 0.041, "broke_last_line": 0.0283, "broke_second_last": 0.1536, "cross_pvadded_max": 0.0003, "dang_runs": 0.0887, "deep_completions": 0.2574, "def_h": 33.2822, "dribbles_box": 0.0058, "dribbles_last_third": 0.052, "duration_s": 27.2327, "hold_max": 9.5202, "hold_mean": 5.4631, "hold_min": 3.2172, "line_breaks": 0.5298, "max_x": 64.8991, "n_centros": 0.0735, "n_events": 5.4225, "n_involved": 1.7889, "n_passes": 2.8012, "opt_quality_mean": -0.0786, "paredes": 0.2129, "pass_options_mean": 8.2897, "passes_behind_line": 0.1115, "pct_adentro": 0.5061, "pct_afuera": 0.4138, "pct_cortos": 0.403, "pct_headpass": 0.0386, "pct_largos": 0.2171, "pct_launch": 0.0907, "pct_layoff": 0.0107, "pct_medios": 0.3007, "pct_switch": 0.0036, "pct_through": 0.0025, "pct_verticales": 0.5214, "pelotazos_espalda": 0.0868, "press_final": 2.5867, "press_media": 1.8146, "prog_x": 25.0373, "start_x": 40.7838, "starts_from_dispossess": 0.0444, "takeons_ok": 0.0488, "tempo": 0.3869, "transition_speed": 3.8717, "verticalidad_media": 0.3874}, "TSC": {"atk_l": 41.8813, "atk_w": 34.0961, "ball_distance": 110.5274, "behind_line_ok": 0.0463, "broke_last_line": 0.0339, "broke_second_last": 0.1579, "cross_pvadded_max": 0.0013, "dang_runs": 0.1202, "deep_completions": 0.3272, "def_h": 30.5134, "dribbles_box": 0.011, "dribbles_last_third": 0.0575, "duration_s": 27.3464, "hold_max": 9.4144, "hold_mean": 5.5014, "hold_min": 3.3222, "line_breaks": 0.5553, "max_x": 68.6729, "n_centros": 0.1247, "n_events": 5.6664, "n_involved": 1.8209, "n_passes": 3.1449, "opt_quality_mean": 0.023, "paredes": 0.2799, "pass_options_mean": 8.5045, "passes_behind_line": 0.1185, "pct_adentro": 0.5143, "pct_afuera": 0.4052, "pct_cortos": 0.4066, "pct_headpass": 0.0419, "pct_largos": 0.1948, "pct_launch": 0.1052, "pct_layoff": 0.0104, "pct_medios": 0.3188, "pct_switch": 0.0043, "pct_through": 0.003, "pct_verticales": 0.4846, "pelotazos_espalda": 0.085, "press_final": 2.4845, "press_media": 1.8337, "prog_x": 24.886, "start_x": 45.0462, "starts_from_dispossess": 0.0338, "takeons_ok": 0.0492, "tempo": 0.3789, "transition_speed": 3.5792, "verticalidad_media": 0.332}, "Vojvodina": {"atk_l": 40.4246, "atk_w": 33.4687, "ball_distance": 98.5305, "behind_line_ok": 0.0504, "broke_last_line": 0.0383, "broke_second_last": 0.1366, "cross_pvadded_max": 0.0011, "dang_runs": 0.1462, "deep_completions": 0.3369, "def_h": 30.7626, "dribbles_box": 0.0087, "dribbles_last_third": 0.0506, "duration_s": 28.949, "hold_max": 9.6006, "hold_mean": 5.7669, "hold_min": 3.5774, "line_breaks": 0.5356, "max_x": 69.1305, "n_centros": 0.1311, "n_events": 5.5676, "n_involved": 1.7857, "n_passes": 2.7777, "opt_quality_mean": 0.0273, "paredes": 0.2144, "pass_options_mean": 8.3873, "passes_behind_line": 0.1306, "pct_adentro": 0.5246, "pct_afuera": 0.3918, "pct_cortos": 0.3789, "pct_headpass": 0.0461, "pct_largos": 0.2196, "pct_launch": 0.092, "pct_layoff": 0.01, "pct_medios": 0.3194, "pct_switch": 0.003, "pct_through": 0.0032, "pct_verticales": 0.5217, "pelotazos_espalda": 0.0975, "press_final": 2.4017, "press_media": 1.7791, "prog_x": 25.115, "start_x": 44.964, "starts_from_dispossess": 0.0392, "takeons_ok": 0.0458, "tempo": 0.3777, "transition_speed": 3.8592, "verticalidad_media": 0.3772}, "Čukarički": {"atk_l": 40.8661, "atk_w": 33.4506, "ball_distance": 99.2979, "behind_line_ok": 0.0484, "broke_last_line": 0.0209, "broke_second_last": 0.1489, "cross_pvadded_max": 0.0011, "dang_runs": 0.1181, "deep_completions": 0.2804, "def_h": 30.4914, "dribbles_box": 0.0078, "dribbles_last_third": 0.0398, "duration_s": 27.8515, "hold_max": 10.7029, "hold_mean": 6.6863, "hold_min": 4.4048, "line_breaks": 0.5025, "max_x": 68.7511, "n_centros": 0.1214, "n_events": 5.4007, "n_involved": 1.7624, "n_passes": 2.7005, "opt_quality_mean": -0.0046, "paredes": 0.1758, "pass_options_mean": 8.0492, "passes_behind_line": 0.1258, "pct_adentro": 0.5141, "pct_afuera": 0.4017, "pct_cortos": 0.3216, "pct_headpass": 0.0657, "pct_largos": 0.2542, "pct_launch": 0.1132, "pct_layoff": 0.0095, "pct_medios": 0.3407, "pct_switch": 0.0048, "pct_through": 0.0008, "pct_verticales": 0.5168, "pelotazos_espalda": 0.094, "press_final": 2.3747, "press_media": 1.7129, "prog_x": 25.7851, "start_x": 44.1521, "starts_from_dispossess": 0.0334, "takeons_ok": 0.0337, "tempo": 0.3519, "transition_speed": 3.547, "verticalidad_media": 0.3891}, "Železničar Pančevo": {"atk_l": 43.6162, "atk_w": 33.1493, "ball_distance": 156.9135, "behind_line_ok": 0.0568, "broke_last_line": 0.0333, "broke_second_last": 0.142, "cross_pvadded_max": 0.0012, "dang_runs": 0.1539, "deep_completions": 0.2932, "def_h": 31.7283, "dribbles_box": 0.0122, "dribbles_last_third": 0.0641, "duration_s": 38.4498, "hold_max": 11.2101, "hold_mean": 6.4274, "hold_min": 3.9562, "line_breaks": 0.6796, "max_x": 67.2706, "n_centros": 0.1084, "n_events": 6.6316, "n_involved": 1.8431, "n_passes": 3.4516, "opt_quality_mean": -0.0147, "paredes": 0.3056, "pass_options_mean": 9.012, "passes_behind_line": 0.1473, "pct_adentro": 0.5018, "pct_afuera": 0.4079, "pct_cortos": 0.3498, "pct_headpass": 0.0442, "pct_largos": 0.2183, "pct_launch": 0.097, "pct_layoff": 0.0124, "pct_medios": 0.3433, "pct_switch": 0.0032, "pct_through": 0.002, "pct_verticales": 0.4758, "pelotazos_espalda": 0.1096, "press_final": 2.4661, "press_media": 1.78, "prog_x": 24.3403, "start_x": 44.3799, "starts_from_dispossess": 0.0378, "takeons_ok": 0.0556, "tempo": 0.3362, "transition_speed": 3.0804, "verticalidad_media": 0.3185}}, "team_eje_norm_gen": {"Crvena zvezda": {"eje_verticalidad": -0.1946, "eje_elaboracion": 0.1689, "eje_individual": 0.0709, "eje_rotura_lineas": 0.1259, "eje_amplitud_centro": 0.0199, "eje_profundidad_espalda": 0.068, "eje_robo_alto": 0.1287, "eje_aereo_segunda": -0.0488}, "IMT Novi Beograd": {"eje_verticalidad": -0.0172, "eje_elaboracion": -0.0446, "eje_individual": -0.0267, "eje_rotura_lineas": -0.0381, "eje_amplitud_centro": -0.0055, "eje_profundidad_espalda": -0.0741, "eje_robo_alto": 0.0336, "eje_aereo_segunda": 0.0332}, "Javor": {"eje_verticalidad": 0.0028, "eje_elaboracion": -0.0456, "eje_individual": -0.0119, "eje_rotura_lineas": -0.027, "eje_amplitud_centro": 0.02, "eje_profundidad_espalda": 0.0239, "eje_robo_alto": -0.0494, "eje_aereo_segunda": 0.0065}, "Mladost Lučani": {"eje_verticalidad": 0.0806, "eje_elaboracion": -0.0463, "eje_individual": -0.0402, "eje_rotura_lineas": -0.0359, "eje_amplitud_centro": 0.0042, "eje_profundidad_espalda": -0.0371, "eje_robo_alto": -0.079, "eje_aereo_segunda": 0.0263}, "Napredak": {"eje_verticalidad": -0.0096, "eje_elaboracion": -0.0123, "eje_individual": -0.0288, "eje_rotura_lineas": -0.0236, "eje_amplitud_centro": 0.002, "eje_profundidad_espalda": -0.0192, "eje_robo_alto": -0.0474, "eje_aereo_segunda": 0.0033}, "Novi Pazar": {"eje_verticalidad": 0.0537, "eje_elaboracion": -0.0712, "eje_individual": -0.0229, "eje_rotura_lineas": -0.0359, "eje_amplitud_centro": 0.0181, "eje_profundidad_espalda": 0.0076, "eje_robo_alto": -0.0242, "eje_aereo_segunda": -0.0045}, "OFK Beograd": {"eje_verticalidad": -0.006, "eje_elaboracion": -0.0264, "eje_individual": 0.0228, "eje_rotura_lineas": -0.0071, "eje_amplitud_centro": -0.0131, "eje_profundidad_espalda": 0.0175, "eje_robo_alto": -0.0193, "eje_aereo_segunda": -0.0181}, "Partizan": {"eje_verticalidad": -0.1312, "eje_elaboracion": 0.0898, "eje_individual": 0.0236, "eje_rotura_lineas": 0.0515, "eje_amplitud_centro": 0.0055, "eje_profundidad_espalda": -0.0128, "eje_robo_alto": 0.0054, "eje_aereo_segunda": -0.0428}, "Radnik Surdulica": {"eje_verticalidad": 0.0401, "eje_elaboracion": -0.0546, "eje_individual": -0.0168, "eje_rotura_lineas": -0.0215, "eje_amplitud_centro": 0.0043, "eje_profundidad_espalda": 0.0088, "eje_robo_alto": -0.0089, "eje_aereo_segunda": 0.0265}, "Radnički Kragujevac": {"eje_verticalidad": -0.0822, "eje_elaboracion": -0.0194, "eje_individual": 0.0108, "eje_rotura_lineas": -0.0184, "eje_amplitud_centro": -0.0122, "eje_profundidad_espalda": -0.0216, "eje_robo_alto": 0.016, "eje_aereo_segunda": -0.0209}, "Radnički Niš": {"eje_verticalidad": -0.0094, "eje_elaboracion": -0.0038, "eje_individual": -0.01, "eje_rotura_lineas": -0.0141, "eje_amplitud_centro": 0.0107, "eje_profundidad_espalda": 0.0357, "eje_robo_alto": -0.0086, "eje_aereo_segunda": 0.0037}, "Spartak Subotica": {"eje_verticalidad": 0.0102, "eje_elaboracion": 0.008, "eje_individual": -0.0132, "eje_rotura_lineas": 0.0083, "eje_amplitud_centro": -0.0407, "eje_profundidad_espalda": -0.0359, "eje_robo_alto": -0.0466, "eje_aereo_segunda": -0.0234}, "TSC": {"eje_verticalidad": -0.0702, "eje_elaboracion": 0.0645, "eje_individual": 0.016, "eje_rotura_lineas": 0.0256, "eje_amplitud_centro": 0.0085, "eje_profundidad_espalda": -0.0029, "eje_robo_alto": 0.0068, "eje_aereo_segunda": -0.0004}, "Vojvodina": {"eje_verticalidad": 0.0064, "eje_elaboracion": -0.0079, "eje_individual": 0.007, "eje_rotura_lineas": 0.0169, "eje_amplitud_centro": -0.0067, "eje_profundidad_espalda": 0.0248, "eje_robo_alto": 0.0193, "eje_aereo_segunda": -0.0104}, "Čukarički": {"eje_verticalidad": 0.0237, "eje_elaboracion": -0.0686, "eje_individual": -0.0296, "eje_rotura_lineas": -0.0208, "eje_amplitud_centro": 0.0055, "eje_profundidad_espalda": -0.0032, "eje_robo_alto": -0.0114, "eje_aereo_segunda": 0.054}, "Železničar Pančevo": {"eje_verticalidad": -0.0869, "eje_elaboracion": 0.0694, "eje_individual": 0.0438, "eje_rotura_lineas": 0.0233, "eje_amplitud_centro": -0.0132, "eje_profundidad_espalda": 0.0399, "eje_robo_alto": 0.0044, "eje_aereo_segunda": 0.0059}}, "team_eje_norm_con": {"Crvena zvezda": {"eje_verticalidad": 0.0965, "eje_elaboracion": -0.0812, "eje_individual": -0.0427, "eje_rotura_lineas": -0.0379, "eje_amplitud_centro": -0.0163, "eje_profundidad_espalda": -0.0423, "eje_robo_alto": -0.1256, "eje_aereo_segunda": -0.0128}, "IMT Novi Beograd": {"eje_verticalidad": -0.0142, "eje_elaboracion": 0.019, "eje_individual": -0.0089, "eje_rotura_lineas": -0.0088, "eje_amplitud_centro": -0.0105, "eje_profundidad_espalda": -0.0229, "eje_robo_alto": -0.0248, "eje_aereo_segunda": 0.0253}, "Javor": {"eje_verticalidad": -0.0976, "eje_elaboracion": 0.0822, "eje_individual": 0.0221, "eje_rotura_lineas": 0.0182, "eje_amplitud_centro": 0.0138, "eje_profundidad_espalda": -0.0018, "eje_robo_alto": 0.0567, "eje_aereo_segunda": -0.0235}, "Mladost Lučani": {"eje_verticalidad": -0.1311, "eje_elaboracion": 0.1223, "eje_individual": 0.0135, "eje_rotura_lineas": 0.0341, "eje_amplitud_centro": 0.0325, "eje_profundidad_espalda": 0.05, "eje_robo_alto": 0.0538, "eje_aereo_segunda": -0.026}, "Napredak": {"eje_verticalidad": -0.0722, "eje_elaboracion": 0.0446, "eje_individual": 0.0337, "eje_rotura_lineas": 0.0474, "eje_amplitud_centro": 0.0089, "eje_profundidad_espalda": 0.0254, "eje_robo_alto": 0.0451, "eje_aereo_segunda": -0.0039}, "Novi Pazar": {"eje_verticalidad": -0.0445, "eje_elaboracion": 0.0183, "eje_individual": -0.0049, "eje_rotura_lineas": -0.0119, "eje_amplitud_centro": -0.0267, "eje_profundidad_espalda": 0.0006, "eje_robo_alto": 0.0037, "eje_aereo_segunda": 0.0318}, "OFK Beograd": {"eje_verticalidad": -0.0072, "eje_elaboracion": -0.0283, "eje_individual": 0.0048, "eje_rotura_lineas": -0.0029, "eje_amplitud_centro": -0.0003, "eje_profundidad_espalda": -0.0013, "eje_robo_alto": 0.0039, "eje_aereo_segunda": 0.0017}, "Partizan": {"eje_verticalidad": -0.0097, "eje_elaboracion": -0.06, "eje_individual": -0.0256, "eje_rotura_lineas": -0.0063, "eje_amplitud_centro": 0.0043, "eje_profundidad_espalda": -0.013, "eje_robo_alto": -0.0282, "eje_aereo_segunda": -0.01}, "Radnik Surdulica": {"eje_verticalidad": -0.0083, "eje_elaboracion": -0.0177, "eje_individual": 0.0211, "eje_rotura_lineas": -0.016, "eje_amplitud_centro": 0.0033, "eje_profundidad_espalda": 0.0298, "eje_robo_alto": -0.007, "eje_aereo_segunda": -0.0002}, "Radnički Kragujevac": {"eje_verticalidad": 0.0107, "eje_elaboracion": -0.0354, "eje_individual": 0.006, "eje_rotura_lineas": -0.0167, "eje_amplitud_centro": -0.01, "eje_profundidad_espalda": -0.0172, "eje_robo_alto": -0.0085, "eje_aereo_segunda": 0.0067}, "Radnički Niš": {"eje_verticalidad": -0.0074, "eje_elaboracion": -0.0093, "eje_individual": -0.0058, "eje_rotura_lineas": -0.0038, "eje_amplitud_centro": -0.0246, "eje_profundidad_espalda": -0.0066, "eje_robo_alto": -0.0083, "eje_aereo_segunda": 0.0096}, "Spartak Subotica": {"eje_verticalidad": -0.0453, "eje_elaboracion": 0.0208, "eje_individual": 0.0132, "eje_rotura_lineas": 0.0169, "eje_amplitud_centro": 0.0074, "eje_profundidad_espalda": 0.0002, "eje_robo_alto": 0.0366, "eje_aereo_segunda": -0.0106}, "TSC": {"eje_verticalidad": 0.0218, "eje_elaboracion": -0.0506, "eje_individual": -0.0105, "eje_rotura_lineas": -0.0032, "eje_amplitud_centro": -0.0055, "eje_profundidad_espalda": -0.0027, "eje_robo_alto": -0.0264, "eje_aereo_segunda": 0.0313}, "Vojvodina": {"eje_verticalidad": 0.0014, "eje_elaboracion": -0.0216, "eje_individual": 0.0011, "eje_rotura_lineas": -0.0026, "eje_amplitud_centro": -0.0207, "eje_profundidad_espalda": -0.0099, "eje_robo_alto": -0.0427, "eje_aereo_segunda": -0.0082}, "Čukarički": {"eje_verticalidad": -0.0305, "eje_elaboracion": 0.0042, "eje_individual": -0.011, "eje_rotura_lineas": -0.0141, "eje_amplitud_centro": 0.019, "eje_profundidad_espalda": 0.0074, "eje_robo_alto": -0.0155, "eje_aereo_segunda": 0.0105}, "Železničar Pančevo": {"eje_verticalidad": -0.0524, "eje_elaboracion": -0.0073, "eje_individual": -0.011, "eje_rotura_lineas": 0.017, "eje_amplitud_centro": 0.0325, "eje_profundidad_espalda": 0.0237, "eje_robo_alto": 0.0066, "eje_aereo_segunda": -0.0318}}} \ No newline at end of file diff --git a/vendor/data/ejes/serbian-super-liga/25-26/team_profiles.parquet b/vendor/data/ejes/serbian-super-liga/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..9fed513b87288a19f530332eec7c0c19ccbe6a65 --- /dev/null +++ b/vendor/data/ejes/serbian-super-liga/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:310591e6ad350a4991bb42ee64b603fbb171f40c7b6ac7334d687c23aefb1d3e +size 8961 diff --git a/vendor/data/ejes/spanish-la-liga/25-26/ejes_definition.json b/vendor/data/ejes/spanish-la-liga/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/spanish-la-liga/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/spanish-la-liga/25-26/match_team_ejes.parquet b/vendor/data/ejes/spanish-la-liga/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..b99443fbb24434060e53c8e0127d3ce8f6c1bde4 --- /dev/null +++ b/vendor/data/ejes/spanish-la-liga/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d355e241f58a38522661f2d0ad594e39bc22c9f3c54ee3b033c948d2ed0393e2 +size 88851 diff --git a/vendor/data/ejes/spanish-la-liga/25-26/match_team_vars.parquet b/vendor/data/ejes/spanish-la-liga/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..324fb8591368c3fcdf65e0b6496fd599b04654e9 --- /dev/null +++ b/vendor/data/ejes/spanish-la-liga/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25fe8111d62aeab443207000b6e201a5043baa13f5fbfc312e0b3698ef5124b3 +size 332805 diff --git a/vendor/data/ejes/spanish-la-liga/25-26/predictor.json b/vendor/data/ejes/spanish-la-liga/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..5354b3fddf9721f893e7e96f57300c170ea6b8fd --- /dev/null +++ b/vendor/data/ejes/spanish-la-liga/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.9712, "con": 0.8537, "intercept": 0.0223}, "elaboracion": {"gen": 0.9906, "con": 0.9196, "intercept": -0.0037}, "individual": {"gen": 0.9464, "con": 0.7581, "intercept": -0.0003}, "rotura_lineas": {"gen": 0.9863, "con": 0.8183, "intercept": -0.0022}, "amplitud_centro": {"gen": 0.742, "con": 0.7215, "intercept": 0.0001}, "profundidad_espalda": {"gen": 0.8273, "con": 0.6315, "intercept": -0.0009}, "robo_alto": {"gen": 0.8252, "con": 0.7661, "intercept": 0.0028}, "aereo_segunda": {"gen": 0.979, "con": 0.9084, "intercept": 0.0012}} \ No newline at end of file diff --git a/vendor/data/ejes/spanish-la-liga/25-26/scales.json b/vendor/data/ejes/spanish-la-liga/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..14535aeab0fcb9e6c505aae749ac4b4dae71ca16 --- /dev/null +++ b/vendor/data/ejes/spanish-la-liga/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 1.9512, "atk_w": 1.3659, "ball_distance": 61.1236, "behind_line_ok": 0.0256, "broke_last_line": 0.0189, "broke_second_last": 0.0541, "cross_pvadded_max": 0.0016, "dang_runs": 0.0927, "deep_completions": 0.1426, "def_h": 3.0861, "dribbles_box": 0.0116, "dribbles_last_third": 0.0284, "duration_s": 21.2799, "hold_max": 2.1532, "hold_mean": 1.085, "hold_min": 1.0324, "line_breaks": 0.3599, "max_x": 4.0023, "n_centros": 0.0522, "n_events": 1.7959, "n_involved": 0.1987, "n_passes": 0.7007, "opt_quality_mean": 0.1444, "paredes": 0.1258, "pass_options_mean": 1.4441, "passes_behind_line": 0.0418, "pct_adentro": 0.0352, "pct_afuera": 0.0353, "pct_cortos": 0.0504, "pct_headpass": 0.0154, "pct_largos": 0.0489, "pct_launch": 0.0324, "pct_layoff": 0.0051, "pct_medios": 0.0412, "pct_switch": 0.0049, "pct_through": 0.0049, "pct_verticales": 0.0532, "pelotazos_espalda": 0.0351, "press_final": 0.3704, "press_media": 0.2415, "prog_x": 2.5116, "start_x": 4.79, "starts_from_dispossess": 0.0192, "takeons_ok": 0.0231, "tempo": 0.0383, "transition_speed": 0.7269, "verticalidad_media": 0.0638}, "eje_sigma": {"eje_verticalidad": 0.1178, "eje_elaboracion": 0.1048, "eje_individual": 0.0655, "eje_rotura_lineas": 0.067, "eje_amplitud_centro": 0.0563, "eje_profundidad_espalda": 0.0858, "eje_robo_alto": 0.1032, "eje_aereo_segunda": 0.0688}, "eje_match_mean": {"eje_verticalidad": -0.027, "eje_elaboracion": 0.0041, "eje_individual": 0.0005, "eje_rotura_lineas": 0.0028, "eje_amplitud_centro": -0.0002, "eje_profundidad_espalda": 0.002, "eje_robo_alto": -0.0047, "eje_aereo_segunda": -0.0014}, "eje_match_std": {"eje_verticalidad": 0.1433, "eje_elaboracion": 0.1401, "eje_individual": 0.0772, "eje_rotura_lineas": 0.0876, "eje_amplitud_centro": 0.0591, "eje_profundidad_espalda": 0.0918, "eje_robo_alto": 0.1109, "eje_aereo_segunda": 0.0807}, "team_var_norm": {"Alavés": {"atk_l": 40.479, "atk_w": 30.5226, "ball_distance": 111.7156, "behind_line_ok": 0.0538, "broke_last_line": 0.0277, "broke_second_last": 0.1642, "cross_pvadded_max": 0.0013, "dang_runs": 0.134, "deep_completions": 0.3112, "def_h": 31.9227, "dribbles_box": 0.0111, "dribbles_last_third": 0.0585, "duration_s": 28.0088, "hold_max": 10.8218, "hold_mean": 6.459, "hold_min": 4.0219, "line_breaks": 0.6511, "max_x": 68.0573, "n_centros": 0.1357, "n_events": 5.7068, "n_involved": 1.8892, "n_passes": 3.0595, "opt_quality_mean": -0.0176, "paredes": 0.2775, "pass_options_mean": 8.55, "passes_behind_line": 0.1386, "pct_adentro": 0.4946, "pct_afuera": 0.4079, "pct_cortos": 0.415, "pct_headpass": 0.058, "pct_largos": 0.2144, "pct_launch": 0.0924, "pct_layoff": 0.011, "pct_medios": 0.2743, "pct_switch": 0.0038, "pct_through": 0.0018, "pct_verticales": 0.4839, "pelotazos_espalda": 0.1007, "press_final": 2.5818, "press_media": 1.9041, "prog_x": 24.5947, "start_x": 44.4962, "starts_from_dispossess": 0.053, "takeons_ok": 0.0511, "tempo": 0.3949, "transition_speed": 3.5085, "verticalidad_media": 0.3479}, "Athletic Club": {"atk_l": 39.9628, "atk_w": 30.9909, "ball_distance": 113.2975, "behind_line_ok": 0.0508, "broke_last_line": 0.0312, "broke_second_last": 0.1765, "cross_pvadded_max": 0.0011, "dang_runs": 0.1075, "deep_completions": 0.3479, "def_h": 29.3738, "dribbles_box": 0.0156, "dribbles_last_third": 0.074, "duration_s": 29.1653, "hold_max": 9.8614, "hold_mean": 5.9305, "hold_min": 3.6866, "line_breaks": 0.6494, "max_x": 71.2723, "n_centros": 0.1573, "n_events": 5.6679, "n_involved": 1.8685, "n_passes": 3.0202, "opt_quality_mean": 0.1113, "paredes": 0.2229, "pass_options_mean": 9.0014, "passes_behind_line": 0.1298, "pct_adentro": 0.5106, "pct_afuera": 0.4038, "pct_cortos": 0.3804, "pct_headpass": 0.0559, "pct_largos": 0.2089, "pct_launch": 0.0831, "pct_layoff": 0.01, "pct_medios": 0.3265, "pct_switch": 0.0064, "pct_through": 0.0048, "pct_verticales": 0.4798, "pelotazos_espalda": 0.0946, "press_final": 2.5601, "press_media": 1.8766, "prog_x": 24.8385, "start_x": 47.6992, "starts_from_dispossess": 0.0467, "takeons_ok": 0.0498, "tempo": 0.3927, "transition_speed": 3.5314, "verticalidad_media": 0.3349}, "Atlético de Madrid": {"atk_l": 41.5789, "atk_w": 31.9302, "ball_distance": 183.3156, "behind_line_ok": 0.0717, "broke_last_line": 0.0536, "broke_second_last": 0.2233, "cross_pvadded_max": 0.0016, "dang_runs": 0.2241, "deep_completions": 0.4604, "def_h": 32.1059, "dribbles_box": 0.0122, "dribbles_last_third": 0.0608, "duration_s": 32.2729, "hold_max": 10.1138, "hold_mean": 5.5682, "hold_min": 3.2181, "line_breaks": 1.0143, "max_x": 69.0118, "n_centros": 0.1476, "n_events": 6.6399, "n_involved": 2.1435, "n_passes": 4.0514, "opt_quality_mean": 0.0804, "paredes": 0.3705, "pass_options_mean": 9.0369, "passes_behind_line": 0.144, "pct_adentro": 0.5189, "pct_afuera": 0.4091, "pct_cortos": 0.4172, "pct_headpass": 0.0454, "pct_largos": 0.1804, "pct_launch": 0.0518, "pct_layoff": 0.0127, "pct_medios": 0.3322, "pct_switch": 0.0052, "pct_through": 0.0052, "pct_verticales": 0.4267, "pelotazos_espalda": 0.0895, "press_final": 2.4587, "press_media": 1.8244, "prog_x": 24.8426, "start_x": 45.1703, "starts_from_dispossess": 0.053, "takeons_ok": 0.0509, "tempo": 0.3987, "transition_speed": 3.0823, "verticalidad_media": 0.2634}, "Barcelona": {"atk_l": 44.1321, "atk_w": 31.6996, "ball_distance": 261.7249, "behind_line_ok": 0.0751, "broke_last_line": 0.0544, "broke_second_last": 0.2538, "cross_pvadded_max": 0.0016, "dang_runs": 0.2194, "deep_completions": 0.5754, "def_h": 30.6392, "dribbles_box": 0.0242, "dribbles_last_third": 0.1055, "duration_s": 39.6235, "hold_max": 9.9003, "hold_mean": 4.8549, "hold_min": 2.63, "line_breaks": 1.4716, "max_x": 70.0891, "n_centros": 0.1096, "n_events": 8.0007, "n_involved": 2.2776, "n_passes": 5.1077, "opt_quality_mean": 0.1479, "paredes": 0.6231, "pass_options_mean": 9.0788, "passes_behind_line": 0.1275, "pct_adentro": 0.5026, "pct_afuera": 0.4084, "pct_cortos": 0.463, "pct_headpass": 0.0363, "pct_largos": 0.1113, "pct_launch": 0.038, "pct_layoff": 0.0117, "pct_medios": 0.3382, "pct_switch": 0.0051, "pct_through": 0.0075, "pct_verticales": 0.4008, "pelotazos_espalda": 0.0668, "press_final": 2.5537, "press_media": 1.8816, "prog_x": 23.832, "start_x": 47.8223, "starts_from_dispossess": 0.0573, "takeons_ok": 0.0823, "tempo": 0.3698, "transition_speed": 2.3421, "verticalidad_media": 0.2393}, "Celta de Vigo": {"atk_l": 45.032, "atk_w": 33.7881, "ball_distance": 203.0353, "behind_line_ok": 0.0696, "broke_last_line": 0.0523, "broke_second_last": 0.2257, "cross_pvadded_max": 0.0008, "dang_runs": 0.1665, "deep_completions": 0.3926, "def_h": 33.7135, "dribbles_box": 0.0129, "dribbles_last_third": 0.0649, "duration_s": 30.214, "hold_max": 10.4228, "hold_mean": 5.6521, "hold_min": 3.2469, "line_breaks": 1.0919, "max_x": 66.1532, "n_centros": 0.0895, "n_events": 6.4874, "n_involved": 2.1199, "n_passes": 4.2244, "opt_quality_mean": -0.0379, "paredes": 0.4028, "pass_options_mean": 8.7786, "passes_behind_line": 0.1546, "pct_adentro": 0.4919, "pct_afuera": 0.4325, "pct_cortos": 0.3901, "pct_headpass": 0.0293, "pct_largos": 0.1799, "pct_launch": 0.07, "pct_layoff": 0.0136, "pct_medios": 0.3556, "pct_switch": 0.0061, "pct_through": 0.0076, "pct_verticales": 0.4462, "pelotazos_espalda": 0.1038, "press_final": 2.484, "press_media": 1.7549, "prog_x": 26.0948, "start_x": 41.0259, "starts_from_dispossess": 0.0456, "takeons_ok": 0.0547, "tempo": 0.3889, "transition_speed": 3.1099, "verticalidad_media": 0.2926}, "Elche": {"atk_l": 42.8984, "atk_w": 32.0109, "ball_distance": 145.6529, "behind_line_ok": 0.0552, "broke_last_line": 0.0379, "broke_second_last": 0.221, "cross_pvadded_max": 0.0013, "dang_runs": 0.1147, "deep_completions": 0.4011, "def_h": 32.6583, "dribbles_box": 0.0114, "dribbles_last_third": 0.0599, "duration_s": 31.9034, "hold_max": 10.6718, "hold_mean": 5.755, "hold_min": 3.0908, "line_breaks": 0.894, "max_x": 66.5098, "n_centros": 0.1118, "n_events": 6.4273, "n_involved": 1.9896, "n_passes": 3.7878, "opt_quality_mean": -0.0036, "paredes": 0.4375, "pass_options_mean": 8.722, "passes_behind_line": 0.1207, "pct_adentro": 0.4918, "pct_afuera": 0.4283, "pct_cortos": 0.4334, "pct_headpass": 0.0425, "pct_largos": 0.1842, "pct_launch": 0.0765, "pct_layoff": 0.0138, "pct_medios": 0.3035, "pct_switch": 0.0049, "pct_through": 0.0028, "pct_verticales": 0.4714, "pelotazos_espalda": 0.0866, "press_final": 2.5399, "press_media": 1.7838, "prog_x": 24.7128, "start_x": 42.6503, "starts_from_dispossess": 0.0478, "takeons_ok": 0.0542, "tempo": 0.3886, "transition_speed": 3.3921, "verticalidad_media": 0.2967}, "Espanyol": {"atk_l": 40.3947, "atk_w": 32.0474, "ball_distance": 105.7326, "behind_line_ok": 0.0512, "broke_last_line": 0.0273, "broke_second_last": 0.1694, "cross_pvadded_max": 0.0014, "dang_runs": 0.1296, "deep_completions": 0.2871, "def_h": 31.0322, "dribbles_box": 0.0105, "dribbles_last_third": 0.0583, "duration_s": 29.1788, "hold_max": 10.9502, "hold_mean": 6.554, "hold_min": 4.2257, "line_breaks": 0.6166, "max_x": 70.3881, "n_centros": 0.1528, "n_events": 5.4886, "n_involved": 1.8142, "n_passes": 2.8641, "opt_quality_mean": 0.0322, "paredes": 0.2584, "pass_options_mean": 8.776, "passes_behind_line": 0.1484, "pct_adentro": 0.5201, "pct_afuera": 0.3856, "pct_cortos": 0.3654, "pct_headpass": 0.0449, "pct_largos": 0.2323, "pct_launch": 0.0907, "pct_layoff": 0.01, "pct_medios": 0.3091, "pct_switch": 0.0042, "pct_through": 0.0035, "pct_verticales": 0.4946, "pelotazos_espalda": 0.1213, "press_final": 2.4537, "press_media": 1.7814, "prog_x": 26.3752, "start_x": 45.1779, "starts_from_dispossess": 0.0449, "takeons_ok": 0.0485, "tempo": 0.3747, "transition_speed": 3.7963, "verticalidad_media": 0.3589}, "Getafe": {"atk_l": 38.3303, "atk_w": 30.1368, "ball_distance": 72.0567, "behind_line_ok": 0.0473, "broke_last_line": 0.0221, "broke_second_last": 0.1286, "cross_pvadded_max": 0.001, "dang_runs": 0.0836, "deep_completions": 0.2385, "def_h": 30.5357, "dribbles_box": 0.0082, "dribbles_last_third": 0.0479, "duration_s": 19.3786, "hold_max": 11.3855, "hold_mean": 7.3376, "hold_min": 4.7864, "line_breaks": 0.3772, "max_x": 69.3054, "n_centros": 0.1223, "n_events": 4.3534, "n_involved": 1.6516, "n_passes": 2.206, "opt_quality_mean": -0.0177, "paredes": 0.1169, "pass_options_mean": 8.3064, "passes_behind_line": 0.1432, "pct_adentro": 0.5027, "pct_afuera": 0.4079, "pct_cortos": 0.3504, "pct_headpass": 0.0619, "pct_largos": 0.2892, "pct_launch": 0.1332, "pct_layoff": 0.0098, "pct_medios": 0.272, "pct_switch": 0.0062, "pct_through": 0.0023, "pct_verticales": 0.5424, "pelotazos_espalda": 0.1146, "press_final": 2.5966, "press_media": 1.8235, "prog_x": 25.1711, "start_x": 45.1057, "starts_from_dispossess": 0.0398, "takeons_ok": 0.0409, "tempo": 0.3755, "transition_speed": 4.0663, "verticalidad_media": 0.4237}, "Girona": {"atk_l": 42.7633, "atk_w": 32.6127, "ball_distance": 158.2496, "behind_line_ok": 0.0563, "broke_last_line": 0.0376, "broke_second_last": 0.1781, "cross_pvadded_max": 0.0006, "dang_runs": 0.1702, "deep_completions": 0.4273, "def_h": 33.1787, "dribbles_box": 0.0164, "dribbles_last_third": 0.079, "duration_s": 33.5465, "hold_max": 11.6457, "hold_mean": 5.8393, "hold_min": 3.3852, "line_breaks": 0.8732, "max_x": 66.5069, "n_centros": 0.1155, "n_events": 6.4156, "n_involved": 1.9211, "n_passes": 3.7996, "opt_quality_mean": 0.0262, "paredes": 0.3687, "pass_options_mean": 8.8413, "passes_behind_line": 0.1312, "pct_adentro": 0.4835, "pct_afuera": 0.4316, "pct_cortos": 0.4203, "pct_headpass": 0.0415, "pct_largos": 0.1832, "pct_launch": 0.0685, "pct_layoff": 0.0109, "pct_medios": 0.3127, "pct_switch": 0.005, "pct_through": 0.0033, "pct_verticales": 0.4479, "pelotazos_espalda": 0.0881, "press_final": 2.5475, "press_media": 1.8194, "prog_x": 25.3361, "start_x": 42.2056, "starts_from_dispossess": 0.0451, "takeons_ok": 0.0716, "tempo": 0.3581, "transition_speed": 2.8845, "verticalidad_media": 0.2811}, "Levante": {"atk_l": 39.9584, "atk_w": 31.8795, "ball_distance": 128.3078, "behind_line_ok": 0.048, "broke_last_line": 0.0274, "broke_second_last": 0.153, "cross_pvadded_max": 0.0013, "dang_runs": 0.1339, "deep_completions": 0.2756, "def_h": 32.0105, "dribbles_box": 0.0101, "dribbles_last_third": 0.0513, "duration_s": 30.0161, "hold_max": 11.2817, "hold_mean": 6.5833, "hold_min": 4.0803, "line_breaks": 0.5502, "max_x": 68.3402, "n_centros": 0.1263, "n_events": 5.5894, "n_involved": 1.8681, "n_passes": 2.9177, "opt_quality_mean": 0.0004, "paredes": 0.2249, "pass_options_mean": 8.7875, "passes_behind_line": 0.1409, "pct_adentro": 0.5034, "pct_afuera": 0.3931, "pct_cortos": 0.364, "pct_headpass": 0.0461, "pct_largos": 0.2223, "pct_launch": 0.091, "pct_layoff": 0.0081, "pct_medios": 0.3109, "pct_switch": 0.0049, "pct_through": 0.004, "pct_verticales": 0.4917, "pelotazos_espalda": 0.1106, "press_final": 2.5843, "press_media": 1.8754, "prog_x": 26.1365, "start_x": 43.6803, "starts_from_dispossess": 0.0467, "takeons_ok": 0.0452, "tempo": 0.3651, "transition_speed": 3.899, "verticalidad_media": 0.3662}, "Mallorca": {"atk_l": 40.5157, "atk_w": 32.3925, "ball_distance": 131.4124, "behind_line_ok": 0.0546, "broke_last_line": 0.0275, "broke_second_last": 0.1827, "cross_pvadded_max": 0.0013, "dang_runs": 0.1427, "deep_completions": 0.2961, "def_h": 32.4465, "dribbles_box": 0.0112, "dribbles_last_third": 0.0554, "duration_s": 30.8646, "hold_max": 11.0091, "hold_mean": 6.2762, "hold_min": 3.6329, "line_breaks": 0.6418, "max_x": 67.6356, "n_centros": 0.1429, "n_events": 5.9727, "n_involved": 1.9023, "n_passes": 3.2776, "opt_quality_mean": -0.0295, "paredes": 0.289, "pass_options_mean": 8.7599, "passes_behind_line": 0.1329, "pct_adentro": 0.5052, "pct_afuera": 0.4122, "pct_cortos": 0.3814, "pct_headpass": 0.0555, "pct_largos": 0.2276, "pct_launch": 0.1049, "pct_layoff": 0.0106, "pct_medios": 0.3092, "pct_switch": 0.0051, "pct_through": 0.002, "pct_verticales": 0.4836, "pelotazos_espalda": 0.0972, "press_final": 2.467, "press_media": 1.8182, "prog_x": 25.9372, "start_x": 42.7547, "starts_from_dispossess": 0.0463, "takeons_ok": 0.0493, "tempo": 0.3925, "transition_speed": 3.8929, "verticalidad_media": 0.3396}, "Osasuna": {"atk_l": 41.4358, "atk_w": 32.5225, "ball_distance": 118.7501, "behind_line_ok": 0.0483, "broke_last_line": 0.0316, "broke_second_last": 0.1549, "cross_pvadded_max": 0.0018, "dang_runs": 0.141, "deep_completions": 0.3279, "def_h": 31.7409, "dribbles_box": 0.0133, "dribbles_last_third": 0.0633, "duration_s": 27.5298, "hold_max": 10.7361, "hold_mean": 6.2975, "hold_min": 3.776, "line_breaks": 0.6506, "max_x": 68.2805, "n_centros": 0.1475, "n_events": 5.6318, "n_involved": 1.8515, "n_passes": 3.1191, "opt_quality_mean": 0.0182, "paredes": 0.2383, "pass_options_mean": 8.7629, "passes_behind_line": 0.1234, "pct_adentro": 0.4898, "pct_afuera": 0.4215, "pct_cortos": 0.3933, "pct_headpass": 0.0603, "pct_largos": 0.2174, "pct_launch": 0.0875, "pct_layoff": 0.0107, "pct_medios": 0.3014, "pct_switch": 0.0053, "pct_through": 0.0016, "pct_verticales": 0.4868, "pelotazos_espalda": 0.0897, "press_final": 2.5576, "press_media": 1.8706, "prog_x": 25.2458, "start_x": 44.0782, "starts_from_dispossess": 0.0367, "takeons_ok": 0.0547, "tempo": 0.3876, "transition_speed": 3.9185, "verticalidad_media": 0.3545}, "Rayo Vallecano": {"atk_l": 41.4964, "atk_w": 34.5805, "ball_distance": 136.3532, "behind_line_ok": 0.0496, "broke_last_line": 0.0371, "broke_second_last": 0.1689, "cross_pvadded_max": 0.0013, "dang_runs": 0.1815, "deep_completions": 0.3345, "def_h": 31.3834, "dribbles_box": 0.0135, "dribbles_last_third": 0.0561, "duration_s": 28.1028, "hold_max": 10.4388, "hold_mean": 5.9117, "hold_min": 3.445, "line_breaks": 0.6719, "max_x": 68.5567, "n_centros": 0.1407, "n_events": 5.8156, "n_involved": 1.8612, "n_passes": 3.2498, "opt_quality_mean": 0.0002, "paredes": 0.2943, "pass_options_mean": 8.9855, "passes_behind_line": 0.1346, "pct_adentro": 0.5097, "pct_afuera": 0.4071, "pct_cortos": 0.3777, "pct_headpass": 0.0341, "pct_largos": 0.2141, "pct_launch": 0.0985, "pct_layoff": 0.0095, "pct_medios": 0.3266, "pct_switch": 0.0061, "pct_through": 0.0039, "pct_verticales": 0.4631, "pelotazos_espalda": 0.1023, "press_final": 2.43, "press_media": 1.7827, "prog_x": 25.7403, "start_x": 43.8576, "starts_from_dispossess": 0.0438, "takeons_ok": 0.0523, "tempo": 0.3915, "transition_speed": 3.9145, "verticalidad_media": 0.3027}, "Real Betis": {"atk_l": 43.9324, "atk_w": 33.1045, "ball_distance": 168.342, "behind_line_ok": 0.0558, "broke_last_line": 0.0426, "broke_second_last": 0.1945, "cross_pvadded_max": 0.001, "dang_runs": 0.1729, "deep_completions": 0.4026, "def_h": 32.876, "dribbles_box": 0.0127, "dribbles_last_third": 0.0607, "duration_s": 33.0464, "hold_max": 9.934, "hold_mean": 5.3833, "hold_min": 3.0822, "line_breaks": 0.8595, "max_x": 67.3731, "n_centros": 0.1081, "n_events": 6.5301, "n_involved": 2.0, "n_passes": 3.7974, "opt_quality_mean": -0.0089, "paredes": 0.3973, "pass_options_mean": 9.1047, "passes_behind_line": 0.1258, "pct_adentro": 0.5032, "pct_afuera": 0.4141, "pct_cortos": 0.4436, "pct_headpass": 0.0355, "pct_largos": 0.173, "pct_launch": 0.0729, "pct_layoff": 0.0109, "pct_medios": 0.3014, "pct_switch": 0.0069, "pct_through": 0.0052, "pct_verticales": 0.4681, "pelotazos_espalda": 0.0856, "press_final": 2.5935, "press_media": 1.8632, "prog_x": 25.2237, "start_x": 43.6081, "starts_from_dispossess": 0.0488, "takeons_ok": 0.0513, "tempo": 0.3883, "transition_speed": 3.42, "verticalidad_media": 0.3233}, "Real Madrid": {"atk_l": 44.1642, "atk_w": 32.5192, "ball_distance": 255.5653, "behind_line_ok": 0.082, "broke_last_line": 0.0492, "broke_second_last": 0.234, "cross_pvadded_max": 0.0014, "dang_runs": 0.197, "deep_completions": 0.5688, "def_h": 30.0633, "dribbles_box": 0.0302, "dribbles_last_third": 0.12, "duration_s": 37.2426, "hold_max": 10.4668, "hold_mean": 5.386, "hold_min": 3.0629, "line_breaks": 1.2827, "max_x": 71.0682, "n_centros": 0.1158, "n_events": 7.4967, "n_involved": 2.2168, "n_passes": 4.7506, "opt_quality_mean": 0.1586, "paredes": 0.4986, "pass_options_mean": 9.1779, "passes_behind_line": 0.1508, "pct_adentro": 0.4957, "pct_afuera": 0.41, "pct_cortos": 0.4121, "pct_headpass": 0.0312, "pct_largos": 0.155, "pct_launch": 0.0442, "pct_layoff": 0.0103, "pct_medios": 0.3396, "pct_switch": 0.0083, "pct_through": 0.0056, "pct_verticales": 0.411, "pelotazos_espalda": 0.0872, "press_final": 2.6393, "press_media": 1.8119, "prog_x": 25.3833, "start_x": 47.1443, "starts_from_dispossess": 0.0554, "takeons_ok": 0.0781, "tempo": 0.3638, "transition_speed": 2.8415, "verticalidad_media": 0.2561}, "Real Oviedo": {"atk_l": 43.053, "atk_w": 32.9691, "ball_distance": 140.3406, "behind_line_ok": 0.0523, "broke_last_line": 0.0257, "broke_second_last": 0.1686, "cross_pvadded_max": 0.0016, "dang_runs": 0.1342, "deep_completions": 0.2761, "def_h": 33.6524, "dribbles_box": 0.0125, "dribbles_last_third": 0.0622, "duration_s": 31.7391, "hold_max": 11.2963, "hold_mean": 5.8202, "hold_min": 3.199, "line_breaks": 0.6813, "max_x": 65.4924, "n_centros": 0.1283, "n_events": 6.0423, "n_involved": 1.9443, "n_passes": 3.2482, "opt_quality_mean": -0.047, "paredes": 0.2663, "pass_options_mean": 8.7469, "passes_behind_line": 0.126, "pct_adentro": 0.4904, "pct_afuera": 0.4216, "pct_cortos": 0.3879, "pct_headpass": 0.0466, "pct_largos": 0.2112, "pct_launch": 0.0836, "pct_layoff": 0.0115, "pct_medios": 0.3139, "pct_switch": 0.007, "pct_through": 0.0025, "pct_verticales": 0.4657, "pelotazos_espalda": 0.0913, "press_final": 2.5344, "press_media": 1.8113, "prog_x": 24.2232, "start_x": 42.2583, "starts_from_dispossess": 0.048, "takeons_ok": 0.0609, "tempo": 0.3844, "transition_speed": 3.4965, "verticalidad_media": 0.3061}, "Real Sociedad": {"atk_l": 41.8506, "atk_w": 31.8876, "ball_distance": 151.2032, "behind_line_ok": 0.066, "broke_last_line": 0.0426, "broke_second_last": 0.1759, "cross_pvadded_max": 0.001, "dang_runs": 0.1811, "deep_completions": 0.3492, "def_h": 31.7536, "dribbles_box": 0.0139, "dribbles_last_third": 0.0665, "duration_s": 29.6878, "hold_max": 10.7743, "hold_mean": 6.3258, "hold_min": 3.8927, "line_breaks": 0.8243, "max_x": 68.1009, "n_centros": 0.122, "n_events": 6.0582, "n_involved": 1.9557, "n_passes": 3.4682, "opt_quality_mean": 0.0457, "paredes": 0.3357, "pass_options_mean": 8.8601, "passes_behind_line": 0.1353, "pct_adentro": 0.505, "pct_afuera": 0.4069, "pct_cortos": 0.4116, "pct_headpass": 0.0454, "pct_largos": 0.1961, "pct_launch": 0.0691, "pct_layoff": 0.0115, "pct_medios": 0.3059, "pct_switch": 0.0054, "pct_through": 0.0056, "pct_verticales": 0.4797, "pelotazos_espalda": 0.0915, "press_final": 2.5525, "press_media": 1.8286, "prog_x": 24.5083, "start_x": 44.5894, "starts_from_dispossess": 0.0502, "takeons_ok": 0.0551, "tempo": 0.382, "transition_speed": 3.2986, "verticalidad_media": 0.3376}, "Sevilla": {"atk_l": 43.1127, "atk_w": 33.0635, "ball_distance": 149.253, "behind_line_ok": 0.0501, "broke_last_line": 0.035, "broke_second_last": 0.1705, "cross_pvadded_max": 0.0011, "dang_runs": 0.1262, "deep_completions": 0.3391, "def_h": 31.5847, "dribbles_box": 0.0135, "dribbles_last_third": 0.0643, "duration_s": 21.8837, "hold_max": 11.2851, "hold_mean": 6.6278, "hold_min": 4.2093, "line_breaks": 0.738, "max_x": 68.3347, "n_centros": 0.1187, "n_events": 5.2681, "n_involved": 1.9103, "n_passes": 3.2188, "opt_quality_mean": 0.0012, "paredes": 0.2829, "pass_options_mean": 8.8087, "passes_behind_line": 0.14, "pct_adentro": 0.508, "pct_afuera": 0.4029, "pct_cortos": 0.3731, "pct_headpass": 0.0493, "pct_largos": 0.2124, "pct_launch": 0.0787, "pct_layoff": 0.0083, "pct_medios": 0.3268, "pct_switch": 0.0081, "pct_through": 0.0031, "pct_verticales": 0.48, "pelotazos_espalda": 0.1032, "press_final": 2.4887, "press_media": 1.7727, "prog_x": 24.7668, "start_x": 44.5035, "starts_from_dispossess": 0.0545, "takeons_ok": 0.0545, "tempo": 0.365, "transition_speed": 3.3077, "verticalidad_media": 0.3392}, "Valencia": {"atk_l": 42.9473, "atk_w": 31.7304, "ball_distance": 126.4979, "behind_line_ok": 0.05, "broke_last_line": 0.0338, "broke_second_last": 0.1666, "cross_pvadded_max": 0.0014, "dang_runs": 0.1431, "deep_completions": 0.3187, "def_h": 32.3367, "dribbles_box": 0.0119, "dribbles_last_third": 0.0634, "duration_s": 30.2662, "hold_max": 10.8485, "hold_mean": 6.178, "hold_min": 3.6501, "line_breaks": 0.7078, "max_x": 67.4546, "n_centros": 0.1318, "n_events": 5.8123, "n_involved": 1.9191, "n_passes": 3.2319, "opt_quality_mean": 0.0141, "paredes": 0.2513, "pass_options_mean": 8.7153, "passes_behind_line": 0.1194, "pct_adentro": 0.5034, "pct_afuera": 0.4023, "pct_cortos": 0.3927, "pct_headpass": 0.0418, "pct_largos": 0.1907, "pct_launch": 0.0845, "pct_layoff": 0.0117, "pct_medios": 0.3239, "pct_switch": 0.0062, "pct_through": 0.0033, "pct_verticales": 0.4568, "pelotazos_espalda": 0.0841, "press_final": 2.4271, "press_media": 1.8191, "prog_x": 24.1966, "start_x": 44.3843, "starts_from_dispossess": 0.0475, "takeons_ok": 0.0539, "tempo": 0.3842, "transition_speed": 3.3054, "verticalidad_media": 0.31}, "Villarreal": {"atk_l": 42.8221, "atk_w": 32.2204, "ball_distance": 149.6997, "behind_line_ok": 0.0545, "broke_last_line": 0.0385, "broke_second_last": 0.1848, "cross_pvadded_max": 0.0009, "dang_runs": 0.1658, "deep_completions": 0.3413, "def_h": 33.9146, "dribbles_box": 0.0158, "dribbles_last_third": 0.0691, "duration_s": 30.5529, "hold_max": 10.5814, "hold_mean": 5.771, "hold_min": 3.1934, "line_breaks": 0.9346, "max_x": 66.194, "n_centros": 0.0949, "n_events": 6.0497, "n_involved": 1.992, "n_passes": 3.4362, "opt_quality_mean": 0.013, "paredes": 0.2992, "pass_options_mean": 8.9145, "passes_behind_line": 0.1271, "pct_adentro": 0.5097, "pct_afuera": 0.3969, "pct_cortos": 0.4129, "pct_headpass": 0.0376, "pct_largos": 0.1681, "pct_launch": 0.0621, "pct_layoff": 0.011, "pct_medios": 0.3272, "pct_switch": 0.0051, "pct_through": 0.0062, "pct_verticales": 0.4568, "pelotazos_espalda": 0.0902, "press_final": 2.5408, "press_media": 1.8203, "prog_x": 25.6302, "start_x": 41.6921, "starts_from_dispossess": 0.0438, "takeons_ok": 0.0596, "tempo": 0.3948, "transition_speed": 3.568, "verticalidad_media": 0.327}}, "team_eje_norm_gen": {"Alavés": {"eje_verticalidad": 0.0113, "eje_elaboracion": -0.0283, "eje_individual": -0.0233, "eje_rotura_lineas": -0.0459, "eje_amplitud_centro": -0.0048, "eje_profundidad_espalda": -0.0092, "eje_robo_alto": 0.0133, "eje_aereo_segunda": 0.0455}, "Athletic Club": {"eje_verticalidad": 0.0036, "eje_elaboracion": -0.0703, "eje_individual": -0.0079, "eje_rotura_lineas": -0.0188, "eje_amplitud_centro": 0.0283, "eje_profundidad_espalda": -0.0127, "eje_robo_alto": 0.0583, "eje_aereo_segunda": 0.0221}, "Atlético de Madrid": {"eje_verticalidad": -0.1071, "eje_elaboracion": 0.0676, "eje_individual": 0.004, "eje_rotura_lineas": 0.0696, "eje_amplitud_centro": 0.0168, "eje_profundidad_espalda": 0.0471, "eje_robo_alto": 0.0259, "eje_aereo_segunda": -0.0277}, "Barcelona": {"eje_verticalidad": -0.2224, "eje_elaboracion": 0.2492, "eje_individual": 0.0999, "eje_rotura_lineas": 0.1376, "eje_amplitud_centro": -0.022, "eje_profundidad_espalda": 0.0538, "eje_robo_alto": 0.0855, "eje_aereo_segunda": -0.0721}, "Celta de Vigo": {"eje_verticalidad": -0.0789, "eje_elaboracion": 0.0689, "eje_individual": -0.0017, "eje_rotura_lineas": 0.0879, "eje_amplitud_centro": -0.013, "eje_profundidad_espalda": 0.0446, "eje_robo_alto": -0.069, "eje_aereo_segunda": -0.0308}, "Elche": {"eje_verticalidad": -0.0483, "eje_elaboracion": 0.0829, "eje_individual": -0.0231, "eje_rotura_lineas": 0.0253, "eje_amplitud_centro": -0.0021, "eje_profundidad_espalda": -0.0057, "eje_robo_alto": -0.0334, "eje_aereo_segunda": 0.007}, "Espanyol": {"eje_verticalidad": 0.0498, "eje_elaboracion": -0.0789, "eje_individual": -0.0285, "eje_rotura_lineas": -0.0376, "eje_amplitud_centro": -0.0067, "eje_profundidad_espalda": 0.0054, "eje_robo_alto": 0.0071, "eje_aereo_segunda": 0.0098}, "Getafe": {"eje_verticalidad": 0.1729, "eje_elaboracion": -0.1818, "eje_individual": -0.0619, "eje_rotura_lineas": -0.0935, "eje_amplitud_centro": -0.0031, "eje_profundidad_espalda": -0.0221, "eje_robo_alto": -0.0063, "eje_aereo_segunda": 0.1038}, "Girona": {"eje_verticalidad": -0.0936, "eje_elaboracion": 0.0543, "eje_individual": 0.0362, "eje_rotura_lineas": 0.0013, "eje_amplitud_centro": 0.0054, "eje_profundidad_espalda": 0.0117, "eje_robo_alto": -0.048, "eje_aereo_segunda": -0.0234}, "Levante": {"eje_verticalidad": 0.0446, "eje_elaboracion": -0.0864, "eje_individual": -0.038, "eje_rotura_lineas": -0.0493, "eje_amplitud_centro": -0.0216, "eje_profundidad_espalda": -0.0155, "eje_robo_alto": -0.0167, "eje_aereo_segunda": 0.0011}, "Mallorca": {"eje_verticalidad": 0.0361, "eje_elaboracion": -0.0315, "eje_individual": -0.0256, "eje_rotura_lineas": -0.0348, "eje_amplitud_centro": 0.0144, "eje_profundidad_espalda": -0.0198, "eje_robo_alto": -0.0351, "eje_aereo_segunda": 0.0556}, "Osasuna": {"eje_verticalidad": 0.0381, "eje_elaboracion": -0.0518, "eje_individual": -0.009, "eje_rotura_lineas": -0.047, "eje_amplitud_centro": 0.0287, "eje_profundidad_espalda": -0.0297, "eje_robo_alto": -0.0329, "eje_aereo_segunda": 0.0414}, "Rayo Vallecano": {"eje_verticalidad": -0.0071, "eje_elaboracion": -0.036, "eje_individual": -0.0072, "eje_rotura_lineas": -0.0178, "eje_amplitud_centro": 0.0136, "eje_profundidad_espalda": -0.0078, "eje_robo_alto": -0.0202, "eje_aereo_segunda": -0.0049}, "Real Betis": {"eje_verticalidad": -0.0432, "eje_elaboracion": 0.0785, "eje_individual": -0.0077, "eje_rotura_lineas": 0.0261, "eje_amplitud_centro": -0.0073, "eje_profundidad_espalda": -0.0019, "eje_robo_alto": -0.0133, "eje_aereo_segunda": -0.03}, "Real Madrid": {"eje_verticalidad": -0.1551, "eje_elaboracion": 0.1518, "eje_individual": 0.1153, "eje_rotura_lineas": 0.0939, "eje_amplitud_centro": 0.0052, "eje_profundidad_espalda": 0.0923, "eje_robo_alto": 0.0683, "eje_aereo_segunda": -0.083}, "Real Oviedo": {"eje_verticalidad": -0.024, "eje_elaboracion": -0.0355, "eje_individual": -0.0072, "eje_rotura_lineas": -0.04, "eje_amplitud_centro": 0.0206, "eje_profundidad_espalda": -0.038, "eje_robo_alto": -0.0404, "eje_aereo_segunda": 0.012}, "Real Sociedad": {"eje_verticalidad": -0.0161, "eje_elaboracion": 0.0146, "eje_individual": 0.0058, "eje_rotura_lineas": 0.0146, "eje_amplitud_centro": -0.0095, "eje_profundidad_espalda": 0.0042, "eje_robo_alto": 0.0084, "eje_aereo_segunda": -0.0108}, "Sevilla": {"eje_verticalidad": -0.0012, "eje_elaboracion": -0.0491, "eje_individual": -0.0116, "eje_rotura_lineas": -0.0185, "eje_amplitud_centro": 0.0, "eje_profundidad_espalda": -0.0016, "eje_robo_alto": 0.0169, "eje_aereo_segunda": -0.0081}, "Valencia": {"eje_verticalidad": -0.0512, "eje_elaboracion": -0.0391, "eje_individual": -0.0121, "eje_rotura_lineas": -0.0237, "eje_amplitud_centro": 0.0011, "eje_profundidad_espalda": -0.0383, "eje_robo_alto": -0.0017, "eje_aereo_segunda": 0.0042}, "Villarreal": {"eje_verticalidad": -0.0492, "eje_elaboracion": 0.0025, "eje_individual": 0.0127, "eje_rotura_lineas": 0.0261, "eje_amplitud_centro": -0.0474, "eje_profundidad_espalda": -0.0165, "eje_robo_alto": -0.0608, "eje_aereo_segunda": -0.0396}}, "team_eje_norm_con": {"Alavés": {"eje_verticalidad": -0.0252, "eje_elaboracion": -0.0082, "eje_individual": 0.0178, "eje_rotura_lineas": 0.0034, "eje_amplitud_centro": 0.0041, "eje_profundidad_espalda": 0.0026, "eje_robo_alto": 0.0075, "eje_aereo_segunda": 0.0139}, "Athletic Club": {"eje_verticalidad": 0.0099, "eje_elaboracion": -0.012, "eje_individual": -0.0396, "eje_rotura_lineas": -0.0091, "eje_amplitud_centro": -0.0076, "eje_profundidad_espalda": -0.0222, "eje_robo_alto": -0.1041, "eje_aereo_segunda": -0.0021}, "Atlético de Madrid": {"eje_verticalidad": -0.0474, "eje_elaboracion": 0.0187, "eje_individual": 0.0246, "eje_rotura_lineas": 0.006, "eje_amplitud_centro": 0.0103, "eje_profundidad_espalda": 0.0024, "eje_robo_alto": -0.0088, "eje_aereo_segunda": -0.0054}, "Barcelona": {"eje_verticalidad": 0.0518, "eje_elaboracion": -0.1204, "eje_individual": -0.0318, "eje_rotura_lineas": -0.0093, "eje_amplitud_centro": -0.0086, "eje_profundidad_espalda": -0.0264, "eje_robo_alto": -0.0443, "eje_aereo_segunda": -0.0137}, "Celta de Vigo": {"eje_verticalidad": -0.0964, "eje_elaboracion": 0.0762, "eje_individual": -0.0145, "eje_rotura_lineas": 0.0108, "eje_amplitud_centro": 0.0218, "eje_profundidad_espalda": 0.0585, "eje_robo_alto": 0.0056, "eje_aereo_segunda": -0.0123}, "Elche": {"eje_verticalidad": 0.0357, "eje_elaboracion": -0.0784, "eje_individual": -0.0089, "eje_rotura_lineas": -0.0249, "eje_amplitud_centro": -0.0183, "eje_profundidad_espalda": 0.0026, "eje_robo_alto": 0.0054, "eje_aereo_segunda": 0.0114}, "Espanyol": {"eje_verticalidad": -0.0448, "eje_elaboracion": 0.0387, "eje_individual": 0.0106, "eje_rotura_lineas": 0.0147, "eje_amplitud_centro": 0.005, "eje_profundidad_espalda": -0.0179, "eje_robo_alto": -0.0256, "eje_aereo_segunda": 0.0178}, "Getafe": {"eje_verticalidad": 0.0165, "eje_elaboracion": -0.0138, "eje_individual": -0.0098, "eje_rotura_lineas": -0.0093, "eje_amplitud_centro": -0.0151, "eje_profundidad_espalda": -0.0124, "eje_robo_alto": -0.0221, "eje_aereo_segunda": 0.0602}, "Girona": {"eje_verticalidad": -0.0523, "eje_elaboracion": 0.0378, "eje_individual": 0.0039, "eje_rotura_lineas": 0.0305, "eje_amplitud_centro": 0.0046, "eje_profundidad_espalda": 0.0323, "eje_robo_alto": 0.0488, "eje_aereo_segunda": -0.0053}, "Levante": {"eje_verticalidad": -0.0689, "eje_elaboracion": 0.049, "eje_individual": 0.0033, "eje_rotura_lineas": 0.0466, "eje_amplitud_centro": 0.0079, "eje_profundidad_espalda": 0.0204, "eje_robo_alto": 0.0089, "eje_aereo_segunda": -0.0082}, "Mallorca": {"eje_verticalidad": -0.0413, "eje_elaboracion": 0.0071, "eje_individual": -0.0032, "eje_rotura_lineas": -0.0017, "eje_amplitud_centro": 0.0145, "eje_profundidad_espalda": 0.0257, "eje_robo_alto": 0.0238, "eje_aereo_segunda": -0.0103}, "Osasuna": {"eje_verticalidad": -0.0044, "eje_elaboracion": 0.0033, "eje_individual": -0.0181, "eje_rotura_lineas": 0.0017, "eje_amplitud_centro": -0.0036, "eje_profundidad_espalda": 0.0258, "eje_robo_alto": -0.0067, "eje_aereo_segunda": 0.0186}, "Rayo Vallecano": {"eje_verticalidad": 0.0424, "eje_elaboracion": -0.0832, "eje_individual": 0.0038, "eje_rotura_lineas": -0.0421, "eje_amplitud_centro": -0.0065, "eje_profundidad_espalda": -0.0115, "eje_robo_alto": -0.0109, "eje_aereo_segunda": -0.0003}, "Real Betis": {"eje_verticalidad": -0.0703, "eje_elaboracion": 0.0319, "eje_individual": 0.045, "eje_rotura_lineas": 0.0246, "eje_amplitud_centro": -0.0165, "eje_profundidad_espalda": -0.0118, "eje_robo_alto": 0.0153, "eje_aereo_segunda": -0.043}, "Real Madrid": {"eje_verticalidad": -0.022, "eje_elaboracion": 0.0352, "eje_individual": -0.029, "eje_rotura_lineas": 0.005, "eje_amplitud_centro": 0.0013, "eje_profundidad_espalda": -0.0189, "eje_robo_alto": -0.0615, "eje_aereo_segunda": -0.0332}, "Real Oviedo": {"eje_verticalidad": -0.0803, "eje_elaboracion": 0.0425, "eje_individual": 0.0111, "eje_rotura_lineas": -0.0085, "eje_amplitud_centro": -0.0094, "eje_profundidad_espalda": -0.0075, "eje_robo_alto": 0.0435, "eje_aereo_segunda": 0.0005}, "Real Sociedad": {"eje_verticalidad": -0.0265, "eje_elaboracion": -0.0276, "eje_individual": 0.0031, "eje_rotura_lineas": -0.0149, "eje_amplitud_centro": -0.0016, "eje_profundidad_espalda": -0.0171, "eje_robo_alto": -0.002, "eje_aereo_segunda": 0.016}, "Sevilla": {"eje_verticalidad": 0.0233, "eje_elaboracion": -0.0375, "eje_individual": -0.0035, "eje_rotura_lineas": -0.0386, "eje_amplitud_centro": -0.0373, "eje_profundidad_espalda": -0.0251, "eje_robo_alto": -0.0261, "eje_aereo_segunda": 0.0381}, "Valencia": {"eje_verticalidad": -0.0391, "eje_elaboracion": 0.0206, "eje_individual": -0.0005, "eje_rotura_lineas": 0.0305, "eje_amplitud_centro": 0.0019, "eje_profundidad_espalda": 0.0283, "eje_robo_alto": 0.0203, "eje_aereo_segunda": -0.0143}, "Villarreal": {"eje_verticalidad": -0.1016, "eje_elaboracion": 0.1016, "eje_individual": 0.045, "eje_rotura_lineas": 0.04, "eje_amplitud_centro": 0.0501, "eje_profundidad_espalda": 0.0128, "eje_robo_alto": 0.0391, "eje_aereo_segunda": -0.0565}}} \ No newline at end of file diff --git a/vendor/data/ejes/spanish-la-liga/25-26/team_profiles.parquet b/vendor/data/ejes/spanish-la-liga/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..49967c38b44a58674de9c5fb2c7a4ac8298c2f96 --- /dev/null +++ b/vendor/data/ejes/spanish-la-liga/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46906eda6bb61ac553040e4b2aba07a6c4a311e1469dffc15d5f84fb60da5304 +size 9919 diff --git a/vendor/data/ejes/spanish-segunda-division/25-26/ejes_definition.json b/vendor/data/ejes/spanish-segunda-division/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/spanish-segunda-division/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/spanish-segunda-division/25-26/match_team_ejes.parquet b/vendor/data/ejes/spanish-segunda-division/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..a35e4270078021121ebbb6382c6835d2af35627c --- /dev/null +++ b/vendor/data/ejes/spanish-segunda-division/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b87579affd2f3f2cb9445ff0fafb2469115a5eeb8102d9b5ff3eb0495a06fea +size 106952 diff --git a/vendor/data/ejes/spanish-segunda-division/25-26/match_team_vars.parquet b/vendor/data/ejes/spanish-segunda-division/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..fd527fd2510e319515c8c07df04ac5b767e336bf --- /dev/null +++ b/vendor/data/ejes/spanish-segunda-division/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c119a76c73f5ebe88f6e52c2d5859b2001c06d7625b241d2a922484b867fb463 +size 391770 diff --git a/vendor/data/ejes/spanish-segunda-division/25-26/predictor.json b/vendor/data/ejes/spanish-segunda-division/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..c6053c46369bcb0dc95c455c807ebad90b59f388 --- /dev/null +++ b/vendor/data/ejes/spanish-segunda-division/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.9414, "con": 0.8275, "intercept": 0.02}, "elaboracion": {"gen": 0.9608, "con": 0.9229, "intercept": -0.0014}, "individual": {"gen": 0.8279, "con": 0.6279, "intercept": 0.0001}, "rotura_lineas": {"gen": 0.8729, "con": 0.8055, "intercept": -0.0009}, "amplitud_centro": {"gen": 0.8774, "con": 0.7622, "intercept": -0.0}, "profundidad_espalda": {"gen": 0.6281, "con": 0.7388, "intercept": -0.0006}, "robo_alto": {"gen": 0.713, "con": 0.4812, "intercept": 0.0008}, "aereo_segunda": {"gen": 0.8823, "con": 0.4929, "intercept": -0.0001}} \ No newline at end of file diff --git a/vendor/data/ejes/spanish-segunda-division/25-26/scales.json b/vendor/data/ejes/spanish-segunda-division/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..b91ad8ff2c062681b391aa1022c6d4dfa9be7f58 --- /dev/null +++ b/vendor/data/ejes/spanish-segunda-division/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 1.9611, "atk_w": 1.2224, "ball_distance": 53.3023, "behind_line_ok": 0.0271, "broke_last_line": 0.0192, "broke_second_last": 0.0482, "cross_pvadded_max": 0.0015, "dang_runs": 0.0794, "deep_completions": 0.1225, "def_h": 2.7805, "dribbles_box": 0.0102, "dribbles_last_third": 0.0259, "duration_s": 20.4622, "hold_max": 1.8814, "hold_mean": 1.0789, "hold_min": 1.0215, "line_breaks": 0.2983, "max_x": 3.7573, "n_centros": 0.0496, "n_events": 1.7985, "n_involved": 0.175, "n_passes": 0.6111, "opt_quality_mean": 0.1306, "paredes": 0.1091, "pass_options_mean": 1.5215, "passes_behind_line": 0.0429, "pct_adentro": 0.038, "pct_afuera": 0.0344, "pct_cortos": 0.0477, "pct_headpass": 0.0147, "pct_largos": 0.0472, "pct_launch": 0.0344, "pct_layoff": 0.005, "pct_medios": 0.0427, "pct_switch": 0.0047, "pct_through": 0.0041, "pct_verticales": 0.0508, "pelotazos_espalda": 0.0363, "press_final": 0.3604, "press_media": 0.2216, "prog_x": 2.5339, "start_x": 4.2832, "starts_from_dispossess": 0.0187, "takeons_ok": 0.0225, "tempo": 0.0411, "transition_speed": 0.7075, "verticalidad_media": 0.0625}, "eje_sigma": {"eje_verticalidad": 0.1082, "eje_elaboracion": 0.0962, "eje_individual": 0.065, "eje_rotura_lineas": 0.0658, "eje_amplitud_centro": 0.0584, "eje_profundidad_espalda": 0.0929, "eje_robo_alto": 0.0927, "eje_aereo_segunda": 0.0649}, "eje_match_mean": {"eje_verticalidad": -0.026, "eje_elaboracion": 0.0015, "eje_individual": -0.0003, "eje_rotura_lineas": 0.0013, "eje_amplitud_centro": 0.0, "eje_profundidad_espalda": 0.0017, "eje_robo_alto": -0.0039, "eje_aereo_segunda": 0.0004}, "eje_match_std": {"eje_verticalidad": 0.1247, "eje_elaboracion": 0.1131, "eje_individual": 0.069, "eje_rotura_lineas": 0.0708, "eje_amplitud_centro": 0.063, "eje_profundidad_espalda": 0.0957, "eje_robo_alto": 0.0965, "eje_aereo_segunda": 0.0707}, "team_var_norm": {"Albacete": {"atk_l": 42.3642, "atk_w": 33.7144, "ball_distance": 115.4355, "behind_line_ok": 0.0612, "broke_last_line": 0.0339, "broke_second_last": 0.1426, "cross_pvadded_max": 0.0018, "dang_runs": 0.1561, "deep_completions": 0.3253, "def_h": 30.2601, "dribbles_box": 0.0098, "dribbles_last_third": 0.0447, "duration_s": 26.6837, "hold_max": 10.939, "hold_mean": 6.7496, "hold_min": 4.354, "line_breaks": 0.5233, "max_x": 70.0915, "n_centros": 0.1467, "n_events": 5.2203, "n_involved": 1.7872, "n_passes": 2.7522, "opt_quality_mean": 0.0404, "paredes": 0.2135, "pass_options_mean": 8.5671, "passes_behind_line": 0.1458, "pct_adentro": 0.5091, "pct_afuera": 0.4065, "pct_cortos": 0.3333, "pct_headpass": 0.0453, "pct_largos": 0.2555, "pct_launch": 0.0913, "pct_layoff": 0.0063, "pct_medios": 0.3277, "pct_switch": 0.0069, "pct_through": 0.0023, "pct_verticales": 0.5178, "pelotazos_espalda": 0.1069, "press_final": 2.408, "press_media": 1.7462, "prog_x": 26.3629, "start_x": 44.8487, "starts_from_dispossess": 0.0419, "takeons_ok": 0.0382, "tempo": 0.3688, "transition_speed": 3.9543, "verticalidad_media": 0.3945}, "Almería": {"atk_l": 41.5297, "atk_w": 32.8344, "ball_distance": 132.1143, "behind_line_ok": 0.0552, "broke_last_line": 0.0379, "broke_second_last": 0.1602, "cross_pvadded_max": 0.0015, "dang_runs": 0.1461, "deep_completions": 0.3798, "def_h": 31.618, "dribbles_box": 0.0129, "dribbles_last_third": 0.0611, "duration_s": 29.6472, "hold_max": 10.5026, "hold_mean": 5.7118, "hold_min": 3.2565, "line_breaks": 0.6362, "max_x": 68.4563, "n_centros": 0.1283, "n_events": 5.9295, "n_involved": 1.969, "n_passes": 3.2783, "opt_quality_mean": -0.0017, "paredes": 0.3011, "pass_options_mean": 8.4879, "passes_behind_line": 0.1281, "pct_adentro": 0.5064, "pct_afuera": 0.4002, "pct_cortos": 0.3946, "pct_headpass": 0.0491, "pct_largos": 0.1993, "pct_launch": 0.0864, "pct_layoff": 0.0111, "pct_medios": 0.3135, "pct_switch": 0.0048, "pct_through": 0.0033, "pct_verticales": 0.4728, "pelotazos_espalda": 0.0887, "press_final": 2.5389, "press_media": 1.8391, "prog_x": 25.4731, "start_x": 44.1912, "starts_from_dispossess": 0.042, "takeons_ok": 0.0548, "tempo": 0.3863, "transition_speed": 3.5221, "verticalidad_media": 0.3418}, "Burgos": {"atk_l": 42.0607, "atk_w": 33.1097, "ball_distance": 126.2674, "behind_line_ok": 0.0617, "broke_last_line": 0.032, "broke_second_last": 0.1632, "cross_pvadded_max": 0.0011, "dang_runs": 0.1201, "deep_completions": 0.2932, "def_h": 32.9301, "dribbles_box": 0.0085, "dribbles_last_third": 0.0541, "duration_s": 26.8384, "hold_max": 10.4979, "hold_mean": 6.1365, "hold_min": 3.666, "line_breaks": 0.5922, "max_x": 67.0234, "n_centros": 0.1104, "n_events": 5.5717, "n_involved": 1.8715, "n_passes": 3.0132, "opt_quality_mean": -0.0603, "paredes": 0.2325, "pass_options_mean": 8.8125, "passes_behind_line": 0.1495, "pct_adentro": 0.5021, "pct_afuera": 0.4069, "pct_cortos": 0.3666, "pct_headpass": 0.048, "pct_largos": 0.2337, "pct_launch": 0.0833, "pct_layoff": 0.01, "pct_medios": 0.3097, "pct_switch": 0.0096, "pct_through": 0.002, "pct_verticales": 0.5028, "pelotazos_espalda": 0.1159, "press_final": 2.5208, "press_media": 1.8237, "prog_x": 25.3464, "start_x": 42.8238, "starts_from_dispossess": 0.0397, "takeons_ok": 0.0451, "tempo": 0.3939, "transition_speed": 3.804, "verticalidad_media": 0.3725}, "Castellón": {"atk_l": 41.1834, "atk_w": 31.7138, "ball_distance": 103.7892, "behind_line_ok": 0.054, "broke_last_line": 0.0379, "broke_second_last": 0.1907, "cross_pvadded_max": 0.0011, "dang_runs": 0.1956, "deep_completions": 0.421, "def_h": 29.7654, "dribbles_box": 0.0186, "dribbles_last_third": 0.0708, "duration_s": 25.6227, "hold_max": 10.139, "hold_mean": 5.994, "hold_min": 3.7029, "line_breaks": 0.652, "max_x": 69.8692, "n_centros": 0.1257, "n_events": 5.4315, "n_involved": 1.8457, "n_passes": 2.9588, "opt_quality_mean": 0.1132, "paredes": 0.2292, "pass_options_mean": 8.9409, "passes_behind_line": 0.1111, "pct_adentro": 0.5214, "pct_afuera": 0.3846, "pct_cortos": 0.4089, "pct_headpass": 0.0435, "pct_largos": 0.1792, "pct_launch": 0.0706, "pct_layoff": 0.0092, "pct_medios": 0.3188, "pct_switch": 0.0048, "pct_through": 0.0031, "pct_verticales": 0.4757, "pelotazos_espalda": 0.0763, "press_final": 2.6765, "press_media": 1.9538, "prog_x": 24.0053, "start_x": 47.0719, "starts_from_dispossess": 0.0503, "takeons_ok": 0.0566, "tempo": 0.3791, "transition_speed": 3.4788, "verticalidad_media": 0.3418}, "Ceuta": {"atk_l": 43.0027, "atk_w": 32.5829, "ball_distance": 103.5205, "behind_line_ok": 0.0462, "broke_last_line": 0.0279, "broke_second_last": 0.1564, "cross_pvadded_max": 0.0013, "dang_runs": 0.1329, "deep_completions": 0.3168, "def_h": 32.7447, "dribbles_box": 0.012, "dribbles_last_third": 0.0566, "duration_s": 25.9226, "hold_max": 11.638, "hold_mean": 6.6034, "hold_min": 3.919, "line_breaks": 0.6319, "max_x": 66.6591, "n_centros": 0.1221, "n_events": 5.3967, "n_involved": 1.8589, "n_passes": 3.0116, "opt_quality_mean": -0.0394, "paredes": 0.265, "pass_options_mean": 8.3657, "passes_behind_line": 0.1219, "pct_adentro": 0.5012, "pct_afuera": 0.4168, "pct_cortos": 0.4123, "pct_headpass": 0.0345, "pct_largos": 0.2067, "pct_launch": 0.0877, "pct_layoff": 0.0118, "pct_medios": 0.3002, "pct_switch": 0.0051, "pct_through": 0.0017, "pct_verticales": 0.5068, "pelotazos_espalda": 0.0895, "press_final": 2.5962, "press_media": 1.9044, "prog_x": 24.9657, "start_x": 42.8018, "starts_from_dispossess": 0.0435, "takeons_ok": 0.0469, "tempo": 0.3946, "transition_speed": 3.6105, "verticalidad_media": 0.3601}, "Cultural Leonesa": {"atk_l": 40.8259, "atk_w": 31.5696, "ball_distance": 141.25, "behind_line_ok": 0.0557, "broke_last_line": 0.0303, "broke_second_last": 0.1679, "cross_pvadded_max": 0.0005, "dang_runs": 0.1551, "deep_completions": 0.3192, "def_h": 32.9017, "dribbles_box": 0.0108, "dribbles_last_third": 0.0561, "duration_s": 33.6317, "hold_max": 11.2859, "hold_mean": 6.5691, "hold_min": 4.053, "line_breaks": 0.7916, "max_x": 66.6606, "n_centros": 0.1019, "n_events": 6.1663, "n_involved": 1.8866, "n_passes": 3.3415, "opt_quality_mean": -0.0153, "paredes": 0.304, "pass_options_mean": 8.8397, "passes_behind_line": 0.1386, "pct_adentro": 0.4974, "pct_afuera": 0.4204, "pct_cortos": 0.374, "pct_headpass": 0.0434, "pct_largos": 0.2159, "pct_launch": 0.093, "pct_layoff": 0.0089, "pct_medios": 0.3288, "pct_switch": 0.0044, "pct_through": 0.0031, "pct_verticales": 0.488, "pelotazos_espalda": 0.0963, "press_final": 2.583, "press_media": 1.8025, "prog_x": 26.0259, "start_x": 41.5883, "starts_from_dispossess": 0.0456, "takeons_ok": 0.0534, "tempo": 0.3712, "transition_speed": 3.6043, "verticalidad_media": 0.3453}, "Cádiz": {"atk_l": 40.4759, "atk_w": 32.3812, "ball_distance": 126.7657, "behind_line_ok": 0.0619, "broke_last_line": 0.0273, "broke_second_last": 0.1564, "cross_pvadded_max": 0.0012, "dang_runs": 0.1288, "deep_completions": 0.2894, "def_h": 31.5308, "dribbles_box": 0.0097, "dribbles_last_third": 0.0495, "duration_s": 29.7029, "hold_max": 10.951, "hold_mean": 6.5526, "hold_min": 4.0502, "line_breaks": 0.6447, "max_x": 68.2955, "n_centros": 0.1368, "n_events": 5.7164, "n_involved": 1.9027, "n_passes": 2.9751, "opt_quality_mean": -0.0097, "paredes": 0.2401, "pass_options_mean": 8.806, "passes_behind_line": 0.1537, "pct_adentro": 0.4999, "pct_afuera": 0.4264, "pct_cortos": 0.389, "pct_headpass": 0.0512, "pct_largos": 0.2245, "pct_launch": 0.0953, "pct_layoff": 0.0118, "pct_medios": 0.314, "pct_switch": 0.0063, "pct_through": 0.0021, "pct_verticales": 0.4931, "pelotazos_espalda": 0.1127, "press_final": 2.5589, "press_media": 1.8618, "prog_x": 25.5421, "start_x": 43.6761, "starts_from_dispossess": 0.0413, "takeons_ok": 0.0452, "tempo": 0.3987, "transition_speed": 3.8748, "verticalidad_media": 0.3539}, "Córdoba": {"atk_l": 43.3299, "atk_w": 32.2854, "ball_distance": 111.3505, "behind_line_ok": 0.0604, "broke_last_line": 0.038, "broke_second_last": 0.1684, "cross_pvadded_max": 0.0016, "dang_runs": 0.1456, "deep_completions": 0.4055, "def_h": 30.6061, "dribbles_box": 0.017, "dribbles_last_third": 0.0681, "duration_s": 31.2601, "hold_max": 10.8804, "hold_mean": 5.7349, "hold_min": 3.2567, "line_breaks": 0.6108, "max_x": 69.5627, "n_centros": 0.1393, "n_events": 6.0416, "n_involved": 1.8279, "n_passes": 3.0568, "opt_quality_mean": 0.0915, "paredes": 0.2456, "pass_options_mean": 8.9825, "passes_behind_line": 0.1216, "pct_adentro": 0.5053, "pct_afuera": 0.3981, "pct_cortos": 0.3884, "pct_headpass": 0.0406, "pct_largos": 0.1831, "pct_launch": 0.0768, "pct_layoff": 0.0087, "pct_medios": 0.3333, "pct_switch": 0.0055, "pct_through": 0.0023, "pct_verticales": 0.4562, "pelotazos_espalda": 0.0778, "press_final": 2.6162, "press_media": 1.8997, "prog_x": 24.8701, "start_x": 45.9147, "starts_from_dispossess": 0.0494, "takeons_ok": 0.0642, "tempo": 0.3668, "transition_speed": 3.2672, "verticalidad_media": 0.3233}, "Deportivo de A Coruña": {"atk_l": 44.3992, "atk_w": 33.5686, "ball_distance": 177.0879, "behind_line_ok": 0.0609, "broke_last_line": 0.0432, "broke_second_last": 0.1727, "cross_pvadded_max": 0.0009, "dang_runs": 0.1768, "deep_completions": 0.3616, "def_h": 32.3879, "dribbles_box": 0.0133, "dribbles_last_third": 0.0649, "duration_s": 34.9198, "hold_max": 10.9887, "hold_mean": 6.0511, "hold_min": 3.4513, "line_breaks": 0.8477, "max_x": 67.5919, "n_centros": 0.1279, "n_events": 6.4939, "n_involved": 1.9403, "n_passes": 3.7409, "opt_quality_mean": -0.0091, "paredes": 0.4146, "pass_options_mean": 8.8082, "passes_behind_line": 0.1319, "pct_adentro": 0.5057, "pct_afuera": 0.3953, "pct_cortos": 0.3898, "pct_headpass": 0.0386, "pct_largos": 0.1962, "pct_launch": 0.0782, "pct_layoff": 0.0083, "pct_medios": 0.3155, "pct_switch": 0.0052, "pct_through": 0.0037, "pct_verticales": 0.4419, "pelotazos_espalda": 0.0886, "press_final": 2.4937, "press_media": 1.7915, "prog_x": 25.3541, "start_x": 43.3592, "starts_from_dispossess": 0.0508, "takeons_ok": 0.0624, "tempo": 0.3589, "transition_speed": 3.2256, "verticalidad_media": 0.2974}, "Eibar": {"atk_l": 40.7233, "atk_w": 32.3766, "ball_distance": 153.8964, "behind_line_ok": 0.0647, "broke_last_line": 0.0281, "broke_second_last": 0.1624, "cross_pvadded_max": 0.0014, "dang_runs": 0.1506, "deep_completions": 0.3114, "def_h": 31.8062, "dribbles_box": 0.0103, "dribbles_last_third": 0.0563, "duration_s": 29.0424, "hold_max": 10.5348, "hold_mean": 6.1903, "hold_min": 3.8276, "line_breaks": 0.7433, "max_x": 68.3884, "n_centros": 0.1258, "n_events": 6.0502, "n_involved": 1.9693, "n_passes": 3.343, "opt_quality_mean": 0.0008, "paredes": 0.2989, "pass_options_mean": 8.6064, "passes_behind_line": 0.1535, "pct_adentro": 0.505, "pct_afuera": 0.4056, "pct_cortos": 0.3714, "pct_headpass": 0.0622, "pct_largos": 0.2138, "pct_launch": 0.0956, "pct_layoff": 0.0094, "pct_medios": 0.3264, "pct_switch": 0.0056, "pct_through": 0.0033, "pct_verticales": 0.4927, "pelotazos_espalda": 0.1129, "press_final": 2.4864, "press_media": 1.7727, "prog_x": 25.3336, "start_x": 44.2053, "starts_from_dispossess": 0.0421, "takeons_ok": 0.052, "tempo": 0.3809, "transition_speed": 3.7069, "verticalidad_media": 0.3541}, "FC Andorra": {"atk_l": 44.0278, "atk_w": 32.6711, "ball_distance": 170.113, "behind_line_ok": 0.0587, "broke_last_line": 0.0367, "broke_second_last": 0.1867, "cross_pvadded_max": 0.0009, "dang_runs": 0.146, "deep_completions": 0.3768, "def_h": 32.555, "dribbles_box": 0.0151, "dribbles_last_third": 0.0782, "duration_s": 30.4373, "hold_max": 10.4968, "hold_mean": 5.3762, "hold_min": 2.9432, "line_breaks": 0.8507, "max_x": 67.0082, "n_centros": 0.1173, "n_events": 6.3188, "n_involved": 1.9866, "n_passes": 3.7484, "opt_quality_mean": 0.0083, "paredes": 0.3418, "pass_options_mean": 9.0787, "passes_behind_line": 0.1316, "pct_adentro": 0.5011, "pct_afuera": 0.4083, "pct_cortos": 0.4024, "pct_headpass": 0.0314, "pct_largos": 0.1608, "pct_launch": 0.0695, "pct_layoff": 0.0085, "pct_medios": 0.3469, "pct_switch": 0.0058, "pct_through": 0.0024, "pct_verticales": 0.4294, "pelotazos_espalda": 0.0888, "press_final": 2.6216, "press_media": 1.8569, "prog_x": 23.9995, "start_x": 44.1438, "starts_from_dispossess": 0.0448, "takeons_ok": 0.065, "tempo": 0.371, "transition_speed": 2.9401, "verticalidad_media": 0.2722}, "Granada": {"atk_l": 43.6339, "atk_w": 32.7801, "ball_distance": 124.1337, "behind_line_ok": 0.0549, "broke_last_line": 0.0307, "broke_second_last": 0.151, "cross_pvadded_max": 0.0019, "dang_runs": 0.1415, "deep_completions": 0.2624, "def_h": 32.1845, "dribbles_box": 0.0112, "dribbles_last_third": 0.0587, "duration_s": 26.3023, "hold_max": 11.0584, "hold_mean": 6.2554, "hold_min": 3.6238, "line_breaks": 0.6306, "max_x": 67.8577, "n_centros": 0.1398, "n_events": 5.4503, "n_involved": 1.8089, "n_passes": 2.9829, "opt_quality_mean": -0.0325, "paredes": 0.2415, "pass_options_mean": 8.6287, "passes_behind_line": 0.1328, "pct_adentro": 0.4969, "pct_afuera": 0.3981, "pct_cortos": 0.3592, "pct_headpass": 0.0458, "pct_largos": 0.215, "pct_launch": 0.0911, "pct_layoff": 0.0115, "pct_medios": 0.3217, "pct_switch": 0.007, "pct_through": 0.0029, "pct_verticales": 0.4664, "pelotazos_espalda": 0.101, "press_final": 2.4717, "press_media": 1.7447, "prog_x": 25.2876, "start_x": 43.6084, "starts_from_dispossess": 0.0462, "takeons_ok": 0.0504, "tempo": 0.3734, "transition_speed": 3.903, "verticalidad_media": 0.3326}, "Huesca": {"atk_l": 40.1264, "atk_w": 32.4176, "ball_distance": 101.2064, "behind_line_ok": 0.0483, "broke_last_line": 0.0306, "broke_second_last": 0.1608, "cross_pvadded_max": 0.0008, "dang_runs": 0.1398, "deep_completions": 0.3155, "def_h": 31.7125, "dribbles_box": 0.0101, "dribbles_last_third": 0.0485, "duration_s": 25.4796, "hold_max": 10.8511, "hold_mean": 6.5794, "hold_min": 4.2049, "line_breaks": 0.5376, "max_x": 68.6616, "n_centros": 0.1303, "n_events": 5.2842, "n_involved": 1.786, "n_passes": 2.9126, "opt_quality_mean": 0.0115, "paredes": 0.2414, "pass_options_mean": 8.5375, "passes_behind_line": 0.1353, "pct_adentro": 0.5047, "pct_afuera": 0.4108, "pct_cortos": 0.363, "pct_headpass": 0.0512, "pct_largos": 0.2459, "pct_launch": 0.1145, "pct_layoff": 0.01, "pct_medios": 0.3073, "pct_switch": 0.0042, "pct_through": 0.003, "pct_verticales": 0.5241, "pelotazos_espalda": 0.0984, "press_final": 2.5012, "press_media": 1.7808, "prog_x": 26.5696, "start_x": 43.2767, "starts_from_dispossess": 0.035, "takeons_ok": 0.0418, "tempo": 0.3867, "transition_speed": 3.9829, "verticalidad_media": 0.3905}, "Las Palmas": {"atk_l": 39.7424, "atk_w": 31.5842, "ball_distance": 158.8926, "behind_line_ok": 0.0498, "broke_last_line": 0.0343, "broke_second_last": 0.1953, "cross_pvadded_max": 0.0005, "dang_runs": 0.1199, "deep_completions": 0.3139, "def_h": 32.7102, "dribbles_box": 0.0132, "dribbles_last_third": 0.0555, "duration_s": 31.6262, "hold_max": 11.1531, "hold_mean": 5.9613, "hold_min": 3.3229, "line_breaks": 1.0107, "max_x": 66.5111, "n_centros": 0.0977, "n_events": 6.4486, "n_involved": 2.0776, "n_passes": 3.8527, "opt_quality_mean": -0.0208, "paredes": 0.4315, "pass_options_mean": 8.9773, "passes_behind_line": 0.1186, "pct_adentro": 0.529, "pct_afuera": 0.385, "pct_cortos": 0.4674, "pct_headpass": 0.0338, "pct_largos": 0.155, "pct_launch": 0.0755, "pct_layoff": 0.0124, "pct_medios": 0.2928, "pct_switch": 0.0026, "pct_through": 0.004, "pct_verticales": 0.4599, "pelotazos_espalda": 0.0773, "press_final": 2.6962, "press_media": 1.9736, "prog_x": 23.1897, "start_x": 44.4362, "starts_from_dispossess": 0.0469, "takeons_ok": 0.0482, "tempo": 0.4135, "transition_speed": 3.2003, "verticalidad_media": 0.2917}, "Leganés": {"atk_l": 43.7753, "atk_w": 32.6564, "ball_distance": 119.3491, "behind_line_ok": 0.0499, "broke_last_line": 0.0311, "broke_second_last": 0.1712, "cross_pvadded_max": 0.0014, "dang_runs": 0.1252, "deep_completions": 0.28, "def_h": 31.9092, "dribbles_box": 0.0102, "dribbles_last_third": 0.0623, "duration_s": 30.0365, "hold_max": 11.292, "hold_mean": 6.4115, "hold_min": 3.8201, "line_breaks": 0.6768, "max_x": 67.5412, "n_centros": 0.1414, "n_events": 5.8689, "n_involved": 1.8712, "n_passes": 3.1611, "opt_quality_mean": -0.0062, "paredes": 0.244, "pass_options_mean": 8.7142, "passes_behind_line": 0.1262, "pct_adentro": 0.5192, "pct_afuera": 0.3942, "pct_cortos": 0.3698, "pct_headpass": 0.0436, "pct_largos": 0.2236, "pct_launch": 0.0869, "pct_layoff": 0.0095, "pct_medios": 0.321, "pct_switch": 0.0062, "pct_through": 0.003, "pct_verticales": 0.459, "pelotazos_espalda": 0.0944, "press_final": 2.5475, "press_media": 1.8499, "prog_x": 25.2862, "start_x": 43.3874, "starts_from_dispossess": 0.0467, "takeons_ok": 0.0529, "tempo": 0.378, "transition_speed": 3.5301, "verticalidad_media": 0.3134}, "Mirandés": {"atk_l": 40.3738, "atk_w": 31.2024, "ball_distance": 92.2651, "behind_line_ok": 0.0469, "broke_last_line": 0.0286, "broke_second_last": 0.1405, "cross_pvadded_max": 0.0011, "dang_runs": 0.0953, "deep_completions": 0.2546, "def_h": 31.8035, "dribbles_box": 0.0128, "dribbles_last_third": 0.0543, "duration_s": 29.3928, "hold_max": 12.2037, "hold_mean": 7.4181, "hold_min": 4.8006, "line_breaks": 0.4822, "max_x": 68.3227, "n_centros": 0.1258, "n_events": 5.3307, "n_involved": 1.691, "n_passes": 2.6302, "opt_quality_mean": -0.0063, "paredes": 0.1844, "pass_options_mean": 8.5317, "passes_behind_line": 0.1361, "pct_adentro": 0.4958, "pct_afuera": 0.41, "pct_cortos": 0.3443, "pct_headpass": 0.0561, "pct_largos": 0.2521, "pct_launch": 0.1017, "pct_layoff": 0.0076, "pct_medios": 0.3106, "pct_switch": 0.0048, "pct_through": 0.0029, "pct_verticales": 0.5171, "pelotazos_espalda": 0.1051, "press_final": 2.5719, "press_media": 1.7838, "prog_x": 26.1356, "start_x": 43.4927, "starts_from_dispossess": 0.0384, "takeons_ok": 0.049, "tempo": 0.3522, "transition_speed": 3.6551, "verticalidad_media": 0.3941}, "Málaga": {"atk_l": 43.5615, "atk_w": 33.3793, "ball_distance": 145.5828, "behind_line_ok": 0.0604, "broke_last_line": 0.0367, "broke_second_last": 0.1763, "cross_pvadded_max": 0.0007, "dang_runs": 0.1185, "deep_completions": 0.3529, "def_h": 31.9451, "dribbles_box": 0.0195, "dribbles_last_third": 0.0822, "duration_s": 30.0029, "hold_max": 10.7799, "hold_mean": 5.8668, "hold_min": 3.2536, "line_breaks": 0.7532, "max_x": 67.5545, "n_centros": 0.09, "n_events": 6.0387, "n_involved": 1.9156, "n_passes": 3.3876, "opt_quality_mean": -0.0111, "paredes": 0.296, "pass_options_mean": 8.6616, "passes_behind_line": 0.1372, "pct_adentro": 0.4898, "pct_afuera": 0.4108, "pct_cortos": 0.3695, "pct_headpass": 0.0364, "pct_largos": 0.1932, "pct_launch": 0.0893, "pct_layoff": 0.0088, "pct_medios": 0.339, "pct_switch": 0.0063, "pct_through": 0.0024, "pct_verticales": 0.4541, "pelotazos_espalda": 0.0981, "press_final": 2.6347, "press_media": 1.8571, "prog_x": 24.5255, "start_x": 44.3201, "starts_from_dispossess": 0.049, "takeons_ok": 0.0645, "tempo": 0.3659, "transition_speed": 3.3224, "verticalidad_media": 0.3}, "Racing de Santander": {"atk_l": 38.5159, "atk_w": 31.8275, "ball_distance": 124.4749, "behind_line_ok": 0.0554, "broke_last_line": 0.0393, "broke_second_last": 0.1785, "cross_pvadded_max": 0.0012, "dang_runs": 0.1332, "deep_completions": 0.3587, "def_h": 31.5757, "dribbles_box": 0.0123, "dribbles_last_third": 0.0608, "duration_s": 27.3694, "hold_max": 11.0977, "hold_mean": 6.2153, "hold_min": 3.7212, "line_breaks": 0.7728, "max_x": 68.0143, "n_centros": 0.0984, "n_events": 5.7039, "n_involved": 1.9018, "n_passes": 3.2918, "opt_quality_mean": 0.03, "paredes": 0.3447, "pass_options_mean": 8.8245, "passes_behind_line": 0.1225, "pct_adentro": 0.5089, "pct_afuera": 0.4038, "pct_cortos": 0.4339, "pct_headpass": 0.0378, "pct_largos": 0.1719, "pct_launch": 0.0791, "pct_layoff": 0.0093, "pct_medios": 0.3076, "pct_switch": 0.0031, "pct_through": 0.0048, "pct_verticales": 0.4951, "pelotazos_espalda": 0.0804, "press_final": 2.653, "press_media": 1.8998, "prog_x": 24.2815, "start_x": 44.9291, "starts_from_dispossess": 0.0432, "takeons_ok": 0.052, "tempo": 0.3939, "transition_speed": 3.3888, "verticalidad_media": 0.3614}, "Real Sociedad II": {"atk_l": 41.4375, "atk_w": 32.9711, "ball_distance": 115.7866, "behind_line_ok": 0.0532, "broke_last_line": 0.0289, "broke_second_last": 0.144, "cross_pvadded_max": 0.0009, "dang_runs": 0.1058, "deep_completions": 0.2405, "def_h": 32.7991, "dribbles_box": 0.0095, "dribbles_last_third": 0.0588, "duration_s": 18.8156, "hold_max": 10.5112, "hold_mean": 6.0556, "hold_min": 3.6122, "line_breaks": 0.5719, "max_x": 66.487, "n_centros": 0.1124, "n_events": 4.6489, "n_involved": 1.8093, "n_passes": 2.7343, "opt_quality_mean": -0.0598, "paredes": 0.2142, "pass_options_mean": 8.6048, "passes_behind_line": 0.1286, "pct_adentro": 0.4954, "pct_afuera": 0.4039, "pct_cortos": 0.3553, "pct_headpass": 0.0442, "pct_largos": 0.2415, "pct_launch": 0.1074, "pct_layoff": 0.0093, "pct_medios": 0.3031, "pct_switch": 0.0117, "pct_through": 0.0035, "pct_verticales": 0.491, "pelotazos_espalda": 0.096, "press_final": 2.4872, "press_media": 1.8079, "prog_x": 25.5927, "start_x": 42.5467, "starts_from_dispossess": 0.0426, "takeons_ok": 0.0518, "tempo": 0.3831, "transition_speed": 3.9729, "verticalidad_media": 0.3633}, "Real Valladolid": {"atk_l": 42.1123, "atk_w": 32.5791, "ball_distance": 128.023, "behind_line_ok": 0.0531, "broke_last_line": 0.0249, "broke_second_last": 0.1592, "cross_pvadded_max": 0.0016, "dang_runs": 0.145, "deep_completions": 0.3127, "def_h": 31.1663, "dribbles_box": 0.0124, "dribbles_last_third": 0.0661, "duration_s": 26.1891, "hold_max": 10.5468, "hold_mean": 5.9886, "hold_min": 3.5095, "line_breaks": 0.6419, "max_x": 68.4878, "n_centros": 0.1487, "n_events": 5.541, "n_involved": 1.864, "n_passes": 2.9933, "opt_quality_mean": -0.0111, "paredes": 0.2475, "pass_options_mean": 8.8561, "passes_behind_line": 0.1316, "pct_adentro": 0.5192, "pct_afuera": 0.3959, "pct_cortos": 0.3853, "pct_headpass": 0.0507, "pct_largos": 0.2089, "pct_launch": 0.0827, "pct_layoff": 0.01, "pct_medios": 0.3226, "pct_switch": 0.0092, "pct_through": 0.003, "pct_verticales": 0.4767, "pelotazos_espalda": 0.0935, "press_final": 2.5628, "press_media": 1.8317, "prog_x": 24.3487, "start_x": 45.2637, "starts_from_dispossess": 0.0455, "takeons_ok": 0.0545, "tempo": 0.398, "transition_speed": 3.7626, "verticalidad_media": 0.3386}, "Real Zaragoza": {"atk_l": 40.5688, "atk_w": 31.8485, "ball_distance": 118.6165, "behind_line_ok": 0.0506, "broke_last_line": 0.0274, "broke_second_last": 0.1576, "cross_pvadded_max": 0.0009, "dang_runs": 0.1404, "deep_completions": 0.3116, "def_h": 30.8869, "dribbles_box": 0.0124, "dribbles_last_third": 0.0598, "duration_s": 24.2027, "hold_max": 11.1291, "hold_mean": 6.6706, "hold_min": 4.191, "line_breaks": 0.6216, "max_x": 68.8964, "n_centros": 0.1333, "n_events": 5.2443, "n_involved": 1.8479, "n_passes": 2.8949, "opt_quality_mean": 0.041, "paredes": 0.2159, "pass_options_mean": 8.6356, "passes_behind_line": 0.1418, "pct_adentro": 0.5128, "pct_afuera": 0.3954, "pct_cortos": 0.3755, "pct_headpass": 0.0456, "pct_largos": 0.2239, "pct_launch": 0.0891, "pct_layoff": 0.0091, "pct_medios": 0.3103, "pct_switch": 0.006, "pct_through": 0.0025, "pct_verticales": 0.4909, "pelotazos_espalda": 0.1092, "press_final": 2.526, "press_media": 1.8272, "prog_x": 25.3744, "start_x": 44.5681, "starts_from_dispossess": 0.0443, "takeons_ok": 0.0529, "tempo": 0.3807, "transition_speed": 3.7928, "verticalidad_media": 0.3613}, "Sporting de Gijón": {"atk_l": 38.6049, "atk_w": 30.9048, "ball_distance": 125.5496, "behind_line_ok": 0.0645, "broke_last_line": 0.0405, "broke_second_last": 0.1821, "cross_pvadded_max": 0.0012, "dang_runs": 0.1471, "deep_completions": 0.3657, "def_h": 31.567, "dribbles_box": 0.0132, "dribbles_last_third": 0.0501, "duration_s": 32.8621, "hold_max": 11.1012, "hold_mean": 6.8656, "hold_min": 4.5777, "line_breaks": 0.6631, "max_x": 69.3506, "n_centros": 0.1187, "n_events": 6.0535, "n_involved": 1.8688, "n_passes": 3.1303, "opt_quality_mean": 0.005, "paredes": 0.2601, "pass_options_mean": 8.5906, "passes_behind_line": 0.1575, "pct_adentro": 0.5073, "pct_afuera": 0.4124, "pct_cortos": 0.3684, "pct_headpass": 0.0524, "pct_largos": 0.2419, "pct_launch": 0.0944, "pct_layoff": 0.011, "pct_medios": 0.3104, "pct_switch": 0.0043, "pct_through": 0.0051, "pct_verticales": 0.5204, "pelotazos_espalda": 0.1172, "press_final": 2.5367, "press_media": 1.7962, "prog_x": 26.6228, "start_x": 43.59, "starts_from_dispossess": 0.0467, "takeons_ok": 0.0478, "tempo": 0.3724, "transition_speed": 3.6107, "verticalidad_media": 0.3727}}, "team_eje_norm_gen": {"Albacete": {"eje_verticalidad": 0.0731, "eje_elaboracion": -0.0809, "eje_individual": -0.0307, "eje_rotura_lineas": -0.0305, "eje_amplitud_centro": 0.0321, "eje_profundidad_espalda": 0.0238, "eje_robo_alto": 0.0058, "eje_aereo_segunda": -0.0145}, "Almería": {"eje_verticalidad": -0.0473, "eje_elaboracion": 0.0287, "eje_individual": 0.0061, "eje_rotura_lineas": 0.0024, "eje_amplitud_centro": -0.0053, "eje_profundidad_espalda": 0.0076, "eje_robo_alto": -0.0064, "eje_aereo_segunda": 0.0161}, "Burgos": {"eje_verticalidad": 0.0263, "eje_elaboracion": -0.0341, "eje_individual": -0.0279, "eje_rotura_lineas": -0.0161, "eje_amplitud_centro": 0.0122, "eje_profundidad_espalda": 0.024, "eje_robo_alto": -0.0376, "eje_aereo_segunda": 0.0031}, "Castellón": {"eje_verticalidad": -0.0606, "eje_elaboracion": -0.0119, "eje_individual": 0.0443, "eje_rotura_lineas": 0.0212, "eje_amplitud_centro": -0.0225, "eje_profundidad_espalda": -0.0026, "eje_robo_alto": 0.0679, "eje_aereo_segunda": -0.0286}, "Ceuta": {"eje_verticalidad": -0.0002, "eje_elaboracion": 0.0067, "eje_individual": -0.0122, "eje_rotura_lineas": -0.0238, "eje_amplitud_centro": 0.0062, "eje_profundidad_espalda": -0.0258, "eje_robo_alto": -0.0287, "eje_aereo_segunda": -0.0083}, "Cultural Leonesa": {"eje_verticalidad": -0.0157, "eje_elaboracion": 0.0233, "eje_individual": -0.002, "eje_rotura_lineas": 0.0101, "eje_amplitud_centro": -0.0153, "eje_profundidad_espalda": 0.0021, "eje_robo_alto": -0.0466, "eje_aereo_segunda": -0.0007}, "Cádiz": {"eje_verticalidad": 0.0117, "eje_elaboracion": -0.0172, "eje_individual": -0.0272, "eje_rotura_lineas": -0.0212, "eje_amplitud_centro": 0.0367, "eje_profundidad_espalda": 0.0233, "eje_robo_alto": -0.0177, "eje_aereo_segunda": 0.0365}, "Córdoba": {"eje_verticalidad": -0.0895, "eje_elaboracion": -0.0089, "eje_individual": 0.0312, "eje_rotura_lineas": -0.0006, "eje_amplitud_centro": 0.0081, "eje_profundidad_espalda": 0.0075, "eje_robo_alto": 0.0441, "eje_aereo_segunda": -0.0291}, "Deportivo de A Coruña": {"eje_verticalidad": -0.1063, "eje_elaboracion": 0.1007, "eje_individual": 0.0278, "eje_rotura_lineas": 0.0398, "eje_amplitud_centro": -0.0075, "eje_profundidad_espalda": 0.0101, "eje_robo_alto": -0.0005, "eje_aereo_segunda": -0.0337}, "Eibar": {"eje_verticalidad": -0.0077, "eje_elaboracion": 0.0165, "eje_individual": -0.0057, "eje_rotura_lineas": 0.0003, "eje_amplitud_centro": 0.002, "eje_profundidad_espalda": 0.0333, "eje_robo_alto": -0.0058, "eje_aereo_segunda": 0.0454}, "FC Andorra": {"eje_verticalidad": -0.1617, "eje_elaboracion": 0.081, "eje_individual": 0.038, "eje_rotura_lineas": 0.0321, "eje_amplitud_centro": -0.0026, "eje_profundidad_espalda": 0.0127, "eje_robo_alto": -0.0004, "eje_aereo_segunda": -0.059}, "Granada": {"eje_verticalidad": -0.0356, "eje_elaboracion": -0.0384, "eje_individual": -0.0058, "eje_rotura_lineas": -0.0162, "eje_amplitud_centro": 0.0176, "eje_profundidad_espalda": -0.0172, "eje_robo_alto": -0.0071, "eje_aereo_segunda": 0.0177}, "Huesca": {"eje_verticalidad": 0.0694, "eje_elaboracion": -0.0413, "eje_individual": -0.0274, "eje_rotura_lineas": -0.0186, "eje_amplitud_centro": 0.0031, "eje_profundidad_espalda": -0.0071, "eje_robo_alto": -0.0404, "eje_aereo_segunda": 0.0511}, "Las Palmas": {"eje_verticalidad": -0.1235, "eje_elaboracion": 0.1633, "eje_individual": -0.0135, "eje_rotura_lineas": 0.0589, "eje_amplitud_centro": -0.0632, "eje_profundidad_espalda": -0.0356, "eje_robo_alto": 0.0102, "eje_aereo_segunda": -0.0227}, "Leganés": {"eje_verticalidad": -0.0489, "eje_elaboracion": -0.0154, "eje_individual": -0.0066, "eje_rotura_lineas": 0.0016, "eje_amplitud_centro": 0.0108, "eje_profundidad_espalda": -0.0268, "eje_robo_alto": -0.01, "eje_aereo_segunda": -0.0044}, "Mirandés": {"eje_verticalidad": 0.057, "eje_elaboracion": -0.0902, "eje_individual": -0.0219, "eje_rotura_lineas": -0.0398, "eje_amplitud_centro": 0.0016, "eje_profundidad_espalda": -0.0222, "eje_robo_alto": -0.0283, "eje_aereo_segunda": 0.0295}, "Málaga": {"eje_verticalidad": -0.0952, "eje_elaboracion": 0.0181, "eje_individual": 0.0426, "eje_rotura_lineas": 0.0167, "eje_amplitud_centro": -0.0241, "eje_profundidad_espalda": 0.0186, "eje_robo_alto": 0.013, "eje_aereo_segunda": -0.0209}, "Racing de Santander": {"eje_verticalidad": -0.0443, "eje_elaboracion": 0.069, "eje_individual": -0.0022, "eje_rotura_lineas": 0.0371, "eje_amplitud_centro": -0.0421, "eje_profundidad_espalda": -0.01, "eje_robo_alto": 0.0105, "eje_aereo_segunda": -0.0285}, "Real Sociedad II": {"eje_verticalidad": 0.023, "eje_elaboracion": -0.0731, "eje_individual": -0.0184, "eje_rotura_lineas": -0.0253, "eje_amplitud_centro": 0.024, "eje_profundidad_espalda": -0.0333, "eje_robo_alto": -0.0359, "eje_aereo_segunda": 0.0226}, "Real Valladolid": {"eje_verticalidad": -0.0268, "eje_elaboracion": -0.0184, "eje_individual": 0.0093, "eje_rotura_lineas": -0.0176, "eje_amplitud_centro": 0.0378, "eje_profundidad_espalda": -0.0099, "eje_robo_alto": 0.0225, "eje_aereo_segunda": 0.0074}, "Real Zaragoza": {"eje_verticalidad": 0.0059, "eje_elaboracion": -0.0441, "eje_individual": 0.0001, "eje_rotura_lineas": -0.0199, "eje_amplitud_centro": 0.003, "eje_profundidad_espalda": 0.0076, "eje_robo_alto": 0.0062, "eje_aereo_segunda": -0.0002}, "Sporting de Gijón": {"eje_verticalidad": 0.0407, "eje_elaboracion": -0.0108, "eje_individual": -0.0111, "eje_rotura_lineas": 0.0319, "eje_amplitud_centro": -0.006, "eje_profundidad_espalda": 0.0573, "eje_robo_alto": -0.0063, "eje_aereo_segunda": 0.0329}}, "team_eje_norm_con": {"Albacete": {"eje_verticalidad": -0.0467, "eje_elaboracion": 0.0826, "eje_individual": -0.0133, "eje_rotura_lineas": 0.0606, "eje_amplitud_centro": 0.0109, "eje_profundidad_espalda": 0.0199, "eje_robo_alto": -0.0248, "eje_aereo_segunda": -0.0114}, "Almería": {"eje_verticalidad": -0.0116, "eje_elaboracion": -0.0207, "eje_individual": -0.0144, "eje_rotura_lineas": -0.0167, "eje_amplitud_centro": -0.0082, "eje_profundidad_espalda": -0.0127, "eje_robo_alto": -0.0105, "eje_aereo_segunda": -0.0085}, "Burgos": {"eje_verticalidad": -0.0518, "eje_elaboracion": 0.0407, "eje_individual": 0.0249, "eje_rotura_lineas": -0.0189, "eje_amplitud_centro": -0.0062, "eje_profundidad_espalda": -0.025, "eje_robo_alto": 0.0139, "eje_aereo_segunda": 0.0115}, "Castellón": {"eje_verticalidad": 0.033, "eje_elaboracion": -0.0682, "eje_individual": 0.0027, "eje_rotura_lineas": -0.0111, "eje_amplitud_centro": -0.0238, "eje_profundidad_espalda": -0.0189, "eje_robo_alto": -0.0586, "eje_aereo_segunda": 0.0169}, "Ceuta": {"eje_verticalidad": -0.0211, "eje_elaboracion": -0.0107, "eje_individual": -0.001, "eje_rotura_lineas": -0.0088, "eje_amplitud_centro": -0.023, "eje_profundidad_espalda": 0.0227, "eje_robo_alto": 0.0133, "eje_aereo_segunda": 0.0048}, "Cultural Leonesa": {"eje_verticalidad": -0.0317, "eje_elaboracion": 0.0289, "eje_individual": -0.0015, "eje_rotura_lineas": 0.0195, "eje_amplitud_centro": 0.0241, "eje_profundidad_espalda": 0.0505, "eje_robo_alto": 0.0111, "eje_aereo_segunda": -0.0086}, "Cádiz": {"eje_verticalidad": -0.0437, "eje_elaboracion": 0.0342, "eje_individual": 0.0001, "eje_rotura_lineas": 0.0224, "eje_amplitud_centro": 0.0193, "eje_profundidad_espalda": 0.0374, "eje_robo_alto": 0.0023, "eje_aereo_segunda": -0.0031}, "Córdoba": {"eje_verticalidad": 0.0717, "eje_elaboracion": -0.1158, "eje_individual": -0.0178, "eje_rotura_lineas": -0.0207, "eje_amplitud_centro": -0.0484, "eje_profundidad_espalda": -0.008, "eje_robo_alto": -0.0216, "eje_aereo_segunda": 0.0325}, "Deportivo de A Coruña": {"eje_verticalidad": -0.0886, "eje_elaboracion": 0.0604, "eje_individual": 0.0021, "eje_rotura_lineas": -0.0013, "eje_amplitud_centro": 0.0052, "eje_profundidad_espalda": -0.0521, "eje_robo_alto": 0.0273, "eje_aereo_segunda": -0.017}, "Eibar": {"eje_verticalidad": -0.0715, "eje_elaboracion": 0.0325, "eje_individual": 0.01, "eje_rotura_lineas": -0.0289, "eje_amplitud_centro": -0.0098, "eje_profundidad_espalda": -0.0281, "eje_robo_alto": -0.0251, "eje_aereo_segunda": 0.0031}, "FC Andorra": {"eje_verticalidad": 0.0551, "eje_elaboracion": -0.0912, "eje_individual": -0.0242, "eje_rotura_lineas": -0.0297, "eje_amplitud_centro": -0.0159, "eje_profundidad_espalda": 0.0051, "eje_robo_alto": -0.0147, "eje_aereo_segunda": 0.0018}, "Granada": {"eje_verticalidad": -0.0015, "eje_elaboracion": -0.0252, "eje_individual": -0.0305, "eje_rotura_lineas": -0.0029, "eje_amplitud_centro": -0.008, "eje_profundidad_espalda": 0.0016, "eje_robo_alto": 0.0129, "eje_aereo_segunda": -0.0005}, "Huesca": {"eje_verticalidad": -0.0005, "eje_elaboracion": 0.0299, "eje_individual": -0.004, "eje_rotura_lineas": 0.0002, "eje_amplitud_centro": 0.0098, "eje_profundidad_espalda": 0.0533, "eje_robo_alto": 0.0149, "eje_aereo_segunda": 0.03}, "Las Palmas": {"eje_verticalidad": -0.0396, "eje_elaboracion": -0.0123, "eje_individual": -0.0017, "eje_rotura_lineas": 0.0001, "eje_amplitud_centro": -0.0045, "eje_profundidad_espalda": -0.0254, "eje_robo_alto": -0.0147, "eje_aereo_segunda": -0.0087}, "Leganés": {"eje_verticalidad": -0.0207, "eje_elaboracion": -0.0102, "eje_individual": -0.0161, "eje_rotura_lineas": 0.0178, "eje_amplitud_centro": -0.0008, "eje_profundidad_espalda": 0.0082, "eje_robo_alto": 0.0158, "eje_aereo_segunda": 0.0058}, "Mirandés": {"eje_verticalidad": -0.0431, "eje_elaboracion": 0.013, "eje_individual": 0.0144, "eje_rotura_lineas": 0.0308, "eje_amplitud_centro": 0.0247, "eje_profundidad_espalda": 0.0368, "eje_robo_alto": -0.002, "eje_aereo_segunda": -0.0113}, "Málaga": {"eje_verticalidad": -0.0557, "eje_elaboracion": 0.0309, "eje_individual": 0.0278, "eje_rotura_lineas": -0.0123, "eje_amplitud_centro": 0.009, "eje_profundidad_espalda": -0.015, "eje_robo_alto": 0.0014, "eje_aereo_segunda": -0.006}, "Racing de Santander": {"eje_verticalidad": -0.0452, "eje_elaboracion": -0.0229, "eje_individual": 0.0028, "eje_rotura_lineas": 0.0254, "eje_amplitud_centro": 0.0161, "eje_profundidad_espalda": 0.0082, "eje_robo_alto": 0.0021, "eje_aereo_segunda": -0.0213}, "Real Sociedad II": {"eje_verticalidad": -0.0634, "eje_elaboracion": 0.0089, "eje_individual": 0.0352, "eje_rotura_lineas": 0.0024, "eje_amplitud_centro": 0.0163, "eje_profundidad_espalda": 0.0123, "eje_robo_alto": 0.0108, "eje_aereo_segunda": -0.0207}, "Real Valladolid": {"eje_verticalidad": -0.0094, "eje_elaboracion": -0.0084, "eje_individual": -0.0022, "eje_rotura_lineas": -0.0171, "eje_amplitud_centro": -0.011, "eje_profundidad_espalda": -0.0362, "eje_robo_alto": -0.0226, "eje_aereo_segunda": 0.005}, "Real Zaragoza": {"eje_verticalidad": -0.0096, "eje_elaboracion": 0.0096, "eje_individual": 0.0079, "eje_rotura_lineas": -0.002, "eje_amplitud_centro": 0.0142, "eje_profundidad_espalda": 0.0129, "eje_robo_alto": -0.0296, "eje_aereo_segunda": 0.0073}, "Sporting de Gijón": {"eje_verticalidad": -0.076, "eje_elaboracion": 0.0512, "eje_individual": -0.0097, "eje_rotura_lineas": 0.0223, "eje_amplitud_centro": 0.0112, "eje_profundidad_espalda": -0.0048, "eje_robo_alto": 0.0158, "eje_aereo_segunda": 0.0084}}} \ No newline at end of file diff --git a/vendor/data/ejes/spanish-segunda-division/25-26/team_profiles.parquet b/vendor/data/ejes/spanish-segunda-division/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..c384dea9fbd6856a762beb4f1365aa3f63e7f4c3 --- /dev/null +++ b/vendor/data/ejes/spanish-segunda-division/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b033867a7fa7568e0c5f8beb9956f4f0f496641539d8e9bfa16dd26886bf558b +size 10313 diff --git a/vendor/data/ejes/swedish-allsvenskan/26/ejes_definition.json b/vendor/data/ejes/swedish-allsvenskan/26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/swedish-allsvenskan/26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/swedish-allsvenskan/26/match_team_ejes.parquet b/vendor/data/ejes/swedish-allsvenskan/26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..ab4d576c3478d58fa99c18f6e26c64fbeabb2caf --- /dev/null +++ b/vendor/data/ejes/swedish-allsvenskan/26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86b7956aa76e1190f6c4e4c6c7c6ce8dc2f3d0ba67c94826b000805aa0b4d925 +size 28219 diff --git a/vendor/data/ejes/swedish-allsvenskan/26/match_team_vars.parquet b/vendor/data/ejes/swedish-allsvenskan/26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..43131f5f78b609ff1b47b2538b539548c4abf6c0 --- /dev/null +++ b/vendor/data/ejes/swedish-allsvenskan/26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cf88f85d3389aff6efa752755f12d9b1290bf61535fbcd1594f362c19552b62 +size 100471 diff --git a/vendor/data/ejes/swedish-allsvenskan/26/predictor.json b/vendor/data/ejes/swedish-allsvenskan/26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..4d2f7e569a459911356da85759b9e43c8cd25edb --- /dev/null +++ b/vendor/data/ejes/swedish-allsvenskan/26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.6825, "con": 0.7676, "intercept": 0.0122}, "elaboracion": {"gen": 0.6521, "con": 0.8297, "intercept": -0.0006}, "individual": {"gen": 0.599, "con": 0.5495, "intercept": 0.0001}, "rotura_lineas": {"gen": 0.4089, "con": -0.1344, "intercept": 0.0002}, "amplitud_centro": {"gen": 0.4763, "con": -0.0314, "intercept": -0.0001}, "profundidad_espalda": {"gen": 0.4336, "con": -1.0537, "intercept": 0.0022}, "robo_alto": {"gen": 0.5408, "con": 0.6052, "intercept": 0.0006}, "aereo_segunda": {"gen": 0.4373, "con": 0.471, "intercept": -0.0001}} \ No newline at end of file diff --git a/vendor/data/ejes/swedish-allsvenskan/26/scales.json b/vendor/data/ejes/swedish-allsvenskan/26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..254b53eec3e35a799dfbf1f18581d178790f8c54 --- /dev/null +++ b/vendor/data/ejes/swedish-allsvenskan/26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 1.6232, "atk_w": 1.1735, "ball_distance": 60.7145, "behind_line_ok": 0.0268, "broke_last_line": 0.0188, "broke_second_last": 0.0531, "cross_pvadded_max": 0.0015, "dang_runs": 0.0886, "deep_completions": 0.1209, "def_h": 2.6611, "dribbles_box": 0.0093, "dribbles_last_third": 0.021, "duration_s": 48.7472, "hold_max": 44.9148, "hold_mean": 0.9388, "hold_min": 0.878, "line_breaks": 0.3559, "max_x": 3.41, "n_centros": 0.0395, "n_events": 1.7373, "n_involved": 0.194, "n_passes": 0.6173, "opt_quality_mean": 0.1242, "paredes": 0.1208, "pass_options_mean": 2.4102, "passes_behind_line": 0.0504, "pct_adentro": 0.0337, "pct_afuera": 0.0363, "pct_cortos": 0.0535, "pct_headpass": 0.0132, "pct_largos": 0.045, "pct_launch": 0.0316, "pct_layoff": 0.0048, "pct_medios": 0.0373, "pct_switch": 0.0041, "pct_through": 0.0025, "pct_verticales": 0.0506, "pelotazos_espalda": 0.0393, "press_final": 0.7538, "press_media": 0.5464, "prog_x": 2.1578, "start_x": 4.0022, "starts_from_dispossess": 0.02, "takeons_ok": 0.0196, "tempo": 0.0336, "transition_speed": 0.6118, "verticalidad_media": 0.0583}, "eje_sigma": {"eje_verticalidad": 0.1074, "eje_elaboracion": 0.1031, "eje_individual": 0.0609, "eje_rotura_lineas": 0.0808, "eje_amplitud_centro": 0.0494, "eje_profundidad_espalda": 0.0983, "eje_robo_alto": 0.0896, "eje_aereo_segunda": 0.0655}, "eje_match_mean": {"eje_verticalidad": -0.027, "eje_elaboracion": 0.0013, "eje_individual": -0.0007, "eje_rotura_lineas": 0.0003, "eje_amplitud_centro": -0.0001, "eje_profundidad_espalda": 0.0014, "eje_robo_alto": -0.004, "eje_aereo_segunda": -0.0009}, "eje_match_std": {"eje_verticalidad": 0.12, "eje_elaboracion": 0.1126, "eje_individual": 0.067, "eje_rotura_lineas": 0.0877, "eje_amplitud_centro": 0.0543, "eje_profundidad_espalda": 0.1082, "eje_robo_alto": 0.0972, "eje_aereo_segunda": 0.0707}, "team_var_norm": {"AIK": {"atk_l": 41.7779, "atk_w": 31.1328, "ball_distance": 114.6108, "behind_line_ok": 0.0504, "broke_last_line": 0.0373, "broke_second_last": 0.155, "cross_pvadded_max": -0.0005, "dang_runs": 0.1241, "deep_completions": 0.3981, "def_h": 29.8447, "dribbles_box": 0.0168, "dribbles_last_third": 0.0682, "duration_s": 26.9547, "hold_max": 10.5283, "hold_mean": 6.0558, "hold_min": 3.6301, "line_breaks": 0.5016, "max_x": 70.0591, "n_centros": 0.128, "n_events": 5.5501, "n_involved": 1.8586, "n_passes": 3.3112, "opt_quality_mean": 0.1546, "paredes": 0.2905, "pass_options_mean": 7.1682, "passes_behind_line": 0.1046, "pct_adentro": 0.5138, "pct_afuera": 0.3792, "pct_cortos": 0.3869, "pct_headpass": 0.0351, "pct_largos": 0.1915, "pct_launch": 0.0666, "pct_layoff": 0.0097, "pct_medios": 0.3157, "pct_switch": 0.0091, "pct_through": 0.0005, "pct_verticales": 0.4215, "pelotazos_espalda": 0.0748, "press_final": 2.4786, "press_media": 1.8226, "prog_x": 23.318, "start_x": 47.7922, "starts_from_dispossess": 0.0542, "takeons_ok": 0.0619, "tempo": 0.3604, "transition_speed": 3.0037, "verticalidad_media": 0.2903}, "Brommapojkarna": {"atk_l": 41.9793, "atk_w": 32.7501, "ball_distance": 169.0672, "behind_line_ok": 0.05, "broke_last_line": 0.0489, "broke_second_last": 0.1531, "cross_pvadded_max": 0.0005, "dang_runs": 0.192, "deep_completions": 0.3922, "def_h": 33.8567, "dribbles_box": 0.0083, "dribbles_last_third": 0.0424, "duration_s": 17.3001, "hold_max": 9.4621, "hold_mean": 5.5396, "hold_min": 3.3532, "line_breaks": 0.8509, "max_x": 66.6783, "n_centros": 0.1027, "n_events": 5.1025, "n_involved": 2.0742, "n_passes": 3.5153, "opt_quality_mean": -0.0102, "paredes": 0.3614, "pass_options_mean": 7.9541, "passes_behind_line": 0.145, "pct_adentro": 0.5097, "pct_afuera": 0.3937, "pct_cortos": 0.3894, "pct_headpass": 0.0337, "pct_largos": 0.1814, "pct_launch": 0.0946, "pct_layoff": 0.0083, "pct_medios": 0.3334, "pct_switch": 0.0037, "pct_through": 0.0017, "pct_verticales": 0.4445, "pelotazos_espalda": 0.1097, "press_final": 2.5068, "press_media": 1.9172, "prog_x": 24.9955, "start_x": 43.1055, "starts_from_dispossess": 0.0421, "takeons_ok": 0.0422, "tempo": 0.3761, "transition_speed": 3.4293, "verticalidad_media": 0.3005}, "Degerfors": {"atk_l": 39.452, "atk_w": 31.0017, "ball_distance": 87.4524, "behind_line_ok": 0.0359, "broke_last_line": 0.0168, "broke_second_last": 0.1274, "cross_pvadded_max": 0.0015, "dang_runs": 0.1096, "deep_completions": 0.3374, "def_h": 31.443, "dribbles_box": 0.0088, "dribbles_last_third": 0.04, "duration_s": 20.7745, "hold_max": 9.8705, "hold_mean": 6.0885, "hold_min": 3.9135, "line_breaks": 0.4768, "max_x": 67.5436, "n_centros": 0.1172, "n_events": 4.8494, "n_involved": 1.8576, "n_passes": 2.8599, "opt_quality_mean": 0.0432, "paredes": 0.2477, "pass_options_mean": 6.5446, "passes_behind_line": 0.0957, "pct_adentro": 0.5225, "pct_afuera": 0.3853, "pct_cortos": 0.3985, "pct_headpass": 0.042, "pct_largos": 0.2156, "pct_launch": 0.0984, "pct_layoff": 0.0058, "pct_medios": 0.2952, "pct_switch": 0.0045, "pct_through": 0.0003, "pct_verticales": 0.4917, "pelotazos_espalda": 0.0734, "press_final": 2.3679, "press_media": 1.8235, "prog_x": 24.0357, "start_x": 44.4634, "starts_from_dispossess": 0.0509, "takeons_ok": 0.0461, "tempo": 0.3693, "transition_speed": 3.5792, "verticalidad_media": 0.3626}, "Djurgården": {"atk_l": 39.0779, "atk_w": 31.5135, "ball_distance": 147.2089, "behind_line_ok": 0.0504, "broke_last_line": 0.035, "broke_second_last": 0.1844, "cross_pvadded_max": 0.0026, "dang_runs": 0.1862, "deep_completions": 0.5292, "def_h": 28.4399, "dribbles_box": 0.0138, "dribbles_last_third": 0.0585, "duration_s": 28.7784, "hold_max": 10.2156, "hold_mean": 5.3525, "hold_min": 2.7614, "line_breaks": 0.7182, "max_x": 71.0183, "n_centros": 0.1392, "n_events": 6.0182, "n_involved": 1.9756, "n_passes": 3.7716, "opt_quality_mean": 0.1708, "paredes": 0.4047, "pass_options_mean": 8.2004, "passes_behind_line": 0.1126, "pct_adentro": 0.5164, "pct_afuera": 0.4038, "pct_cortos": 0.4308, "pct_headpass": 0.0393, "pct_largos": 0.1795, "pct_launch": 0.0788, "pct_layoff": 0.0075, "pct_medios": 0.3111, "pct_switch": 0.0067, "pct_through": 0.0023, "pct_verticales": 0.4764, "pelotazos_espalda": 0.0779, "press_final": 2.4816, "press_media": 1.8492, "prog_x": 23.7535, "start_x": 48.3081, "starts_from_dispossess": 0.0393, "takeons_ok": 0.0451, "tempo": 0.3766, "transition_speed": 3.039, "verticalidad_media": 0.3021}, "Elfsborg": {"atk_l": 39.7595, "atk_w": 31.8389, "ball_distance": 130.014, "behind_line_ok": 0.0583, "broke_last_line": 0.0282, "broke_second_last": 0.1608, "cross_pvadded_max": 0.0009, "dang_runs": 0.1521, "deep_completions": 0.3399, "def_h": 31.3826, "dribbles_box": 0.0107, "dribbles_last_third": 0.0479, "duration_s": 32.6182, "hold_max": 10.2601, "hold_mean": 6.192, "hold_min": 3.9447, "line_breaks": 0.6991, "max_x": 68.1019, "n_centros": 0.1027, "n_events": 5.9985, "n_involved": 1.9415, "n_passes": 3.2046, "opt_quality_mean": 0.0009, "paredes": 0.3168, "pass_options_mean": 7.2643, "passes_behind_line": 0.1487, "pct_adentro": 0.4949, "pct_afuera": 0.4148, "pct_cortos": 0.3656, "pct_headpass": 0.0366, "pct_largos": 0.2175, "pct_launch": 0.102, "pct_layoff": 0.0084, "pct_medios": 0.3277, "pct_switch": 0.0023, "pct_through": 0.0012, "pct_verticales": 0.507, "pelotazos_espalda": 0.1103, "press_final": 2.4775, "press_media": 1.8472, "prog_x": 24.7697, "start_x": 44.5002, "starts_from_dispossess": 0.0503, "takeons_ok": 0.044, "tempo": 0.3686, "transition_speed": 3.3285, "verticalidad_media": 0.3601}, "GAIS": {"atk_l": 39.1129, "atk_w": 30.9799, "ball_distance": 133.7755, "behind_line_ok": 0.0583, "broke_last_line": 0.0263, "broke_second_last": 0.1507, "cross_pvadded_max": 0.0015, "dang_runs": 0.1485, "deep_completions": 0.407, "def_h": 30.6974, "dribbles_box": 0.0093, "dribbles_last_third": 0.048, "duration_s": 33.5233, "hold_max": 8.2122, "hold_mean": 4.8273, "hold_min": 2.8724, "line_breaks": 0.634, "max_x": 69.285, "n_centros": 0.116, "n_events": 6.317, "n_involved": 1.9263, "n_passes": 3.2001, "opt_quality_mean": 0.1009, "paredes": 0.3128, "pass_options_mean": 8.3886, "passes_behind_line": 0.1528, "pct_adentro": 0.5115, "pct_afuera": 0.4112, "pct_cortos": 0.4103, "pct_headpass": 0.041, "pct_largos": 0.1881, "pct_launch": 0.1007, "pct_layoff": 0.0056, "pct_medios": 0.3247, "pct_switch": 0.0038, "pct_through": 0.0011, "pct_verticales": 0.5041, "pelotazos_espalda": 0.1187, "press_final": 2.5876, "press_media": 2.0611, "prog_x": 23.901, "start_x": 46.563, "starts_from_dispossess": 0.0516, "takeons_ok": 0.0413, "tempo": 0.3995, "transition_speed": 3.8324, "verticalidad_media": 0.34}, "Halmstad": {"atk_l": 39.1195, "atk_w": 32.237, "ball_distance": 95.7848, "behind_line_ok": 0.0407, "broke_last_line": 0.0211, "broke_second_last": 0.132, "cross_pvadded_max": 0.0006, "dang_runs": 0.0842, "deep_completions": 0.3121, "def_h": 33.0695, "dribbles_box": 0.0074, "dribbles_last_third": 0.0618, "duration_s": 27.0959, "hold_max": 9.5566, "hold_mean": 5.8515, "hold_min": 3.6244, "line_breaks": 0.565, "max_x": 64.6422, "n_centros": 0.0909, "n_events": 5.4689, "n_involved": 1.7917, "n_passes": 2.8037, "opt_quality_mean": -0.0461, "paredes": 0.2475, "pass_options_mean": 7.1572, "passes_behind_line": 0.1121, "pct_adentro": 0.4985, "pct_afuera": 0.4065, "pct_cortos": 0.3869, "pct_headpass": 0.0418, "pct_largos": 0.2217, "pct_launch": 0.0995, "pct_layoff": 0.0092, "pct_medios": 0.2972, "pct_switch": 0.0044, "pct_through": 0.0012, "pct_verticales": 0.5236, "pelotazos_espalda": 0.0856, "press_final": 2.4374, "press_media": 1.7831, "prog_x": 24.3744, "start_x": 41.823, "starts_from_dispossess": 0.0554, "takeons_ok": 0.0481, "tempo": 0.3819, "transition_speed": 3.8449, "verticalidad_media": 0.3916}, "Hammarby": {"atk_l": 39.858, "atk_w": 31.741, "ball_distance": 159.3723, "behind_line_ok": 0.0595, "broke_last_line": 0.0338, "broke_second_last": 0.1716, "cross_pvadded_max": 0.0009, "dang_runs": 0.2107, "deep_completions": 0.5558, "def_h": 29.728, "dribbles_box": 0.0128, "dribbles_last_third": 0.0689, "duration_s": 32.0651, "hold_max": 10.1851, "hold_mean": 4.9006, "hold_min": 2.7587, "line_breaks": 1.0264, "max_x": 70.6914, "n_centros": 0.12, "n_events": 6.6155, "n_involved": 2.0754, "n_passes": 3.9862, "opt_quality_mean": 0.1806, "paredes": 0.4195, "pass_options_mean": 7.8351, "passes_behind_line": 0.1334, "pct_adentro": 0.5019, "pct_afuera": 0.4033, "pct_cortos": 0.4478, "pct_headpass": 0.0367, "pct_largos": 0.152, "pct_launch": 0.0663, "pct_layoff": 0.0102, "pct_medios": 0.3061, "pct_switch": 0.0025, "pct_through": 0.003, "pct_verticales": 0.4582, "pelotazos_espalda": 0.083, "press_final": 2.5435, "press_media": 1.8686, "prog_x": 23.6945, "start_x": 48.4939, "starts_from_dispossess": 0.0452, "takeons_ok": 0.0489, "tempo": 0.3834, "transition_speed": 3.1145, "verticalidad_media": 0.2803}, "Häcken": {"atk_l": 42.2068, "atk_w": 32.3963, "ball_distance": 113.787, "behind_line_ok": 0.0421, "broke_last_line": 0.0347, "broke_second_last": 0.1475, "cross_pvadded_max": 0.0006, "dang_runs": 0.1736, "deep_completions": 0.3619, "def_h": 33.5294, "dribbles_box": 0.0105, "dribbles_last_third": 0.058, "duration_s": 31.7632, "hold_max": 9.2166, "hold_mean": 4.8821, "hold_min": 2.6195, "line_breaks": 0.6162, "max_x": 65.5137, "n_centros": 0.134, "n_events": 6.0526, "n_involved": 2.0, "n_passes": 3.2425, "opt_quality_mean": 0.0425, "paredes": 0.2741, "pass_options_mean": 7.4958, "passes_behind_line": 0.0941, "pct_adentro": 0.505, "pct_afuera": 0.3932, "pct_cortos": 0.4251, "pct_headpass": 0.0295, "pct_largos": 0.164, "pct_launch": 0.0826, "pct_layoff": 0.0097, "pct_medios": 0.3118, "pct_switch": 0.0038, "pct_through": 0.0042, "pct_verticales": 0.4476, "pelotazos_espalda": 0.0646, "press_final": 2.4729, "press_media": 2.0028, "prog_x": 23.243, "start_x": 43.227, "starts_from_dispossess": 0.0436, "takeons_ok": 0.0548, "tempo": 0.3944, "transition_speed": 3.2404, "verticalidad_media": 0.304}, "IFK Göteborg": {"atk_l": 40.3352, "atk_w": 32.0092, "ball_distance": 79.1763, "behind_line_ok": 0.0319, "broke_last_line": 0.0307, "broke_second_last": 0.1254, "cross_pvadded_max": 0.0013, "dang_runs": 0.0668, "deep_completions": 0.3466, "def_h": 30.6965, "dribbles_box": 0.0071, "dribbles_last_third": 0.0366, "duration_s": 82.0706, "hold_max": 65.2269, "hold_mean": 5.4751, "hold_min": 3.258, "line_breaks": 0.4174, "max_x": 69.5427, "n_centros": 0.1671, "n_events": 5.5136, "n_involved": 1.7757, "n_passes": 3.0105, "opt_quality_mean": 0.0717, "paredes": 0.2596, "pass_options_mean": 5.765, "passes_behind_line": 0.0875, "pct_adentro": 0.5199, "pct_afuera": 0.3876, "pct_cortos": 0.3876, "pct_headpass": 0.0429, "pct_largos": 0.2081, "pct_launch": 0.1125, "pct_layoff": 0.0059, "pct_medios": 0.3129, "pct_switch": 0.0063, "pct_through": 0.0019, "pct_verticales": 0.4961, "pelotazos_espalda": 0.0707, "press_final": 2.0767, "press_media": 1.6167, "prog_x": 25.3695, "start_x": 45.3041, "starts_from_dispossess": 0.0374, "takeons_ok": 0.0393, "tempo": 0.3789, "transition_speed": 3.8554, "verticalidad_media": 0.343}, "Kalmar": {"atk_l": 39.8974, "atk_w": 31.3486, "ball_distance": 118.4516, "behind_line_ok": 0.0439, "broke_last_line": 0.0321, "broke_second_last": 0.17, "cross_pvadded_max": 0.001, "dang_runs": 0.1503, "deep_completions": 0.4219, "def_h": 30.8481, "dribbles_box": 0.01, "dribbles_last_third": 0.0528, "duration_s": 22.1849, "hold_max": 9.3822, "hold_mean": 5.7362, "hold_min": 3.6983, "line_breaks": 0.6279, "max_x": 68.9384, "n_centros": 0.112, "n_events": 5.2574, "n_involved": 1.8878, "n_passes": 3.3288, "opt_quality_mean": 0.0671, "paredes": 0.3371, "pass_options_mean": 7.341, "passes_behind_line": 0.1132, "pct_adentro": 0.5164, "pct_afuera": 0.3837, "pct_cortos": 0.3976, "pct_headpass": 0.0429, "pct_largos": 0.1869, "pct_launch": 0.0726, "pct_layoff": 0.0086, "pct_medios": 0.3168, "pct_switch": 0.0036, "pct_through": 0.0019, "pct_verticales": 0.4566, "pelotazos_espalda": 0.0755, "press_final": 2.4792, "press_media": 1.8071, "prog_x": 24.4535, "start_x": 45.7464, "starts_from_dispossess": 0.0377, "takeons_ok": 0.0425, "tempo": 0.3666, "transition_speed": 3.1553, "verticalidad_media": 0.3095}, "Malmö FF": {"atk_l": 41.0271, "atk_w": 32.6029, "ball_distance": 143.1005, "behind_line_ok": 0.0524, "broke_last_line": 0.0293, "broke_second_last": 0.1466, "cross_pvadded_max": 0.0009, "dang_runs": 0.1143, "deep_completions": 0.3853, "def_h": 32.0868, "dribbles_box": 0.0099, "dribbles_last_third": 0.0648, "duration_s": 34.5696, "hold_max": 10.3166, "hold_mean": 5.618, "hold_min": 3.1132, "line_breaks": 0.7418, "max_x": 66.9307, "n_centros": 0.1029, "n_events": 6.3916, "n_involved": 2.0635, "n_passes": 3.5276, "opt_quality_mean": 0.0376, "paredes": 0.3437, "pass_options_mean": 7.1653, "passes_behind_line": 0.1225, "pct_adentro": 0.5142, "pct_afuera": 0.4116, "pct_cortos": 0.3547, "pct_headpass": 0.033, "pct_largos": 0.2217, "pct_launch": 0.0878, "pct_layoff": 0.0114, "pct_medios": 0.3512, "pct_switch": 0.0058, "pct_through": 0.0008, "pct_verticales": 0.486, "pelotazos_espalda": 0.0868, "press_final": 2.504, "press_media": 1.798, "prog_x": 23.8164, "start_x": 43.9074, "starts_from_dispossess": 0.0488, "takeons_ok": 0.042, "tempo": 0.3983, "transition_speed": 3.2304, "verticalidad_media": 0.3258}, "Mjällby": {"atk_l": 40.2945, "atk_w": 31.8528, "ball_distance": 135.7563, "behind_line_ok": 0.0433, "broke_last_line": 0.0228, "broke_second_last": 0.137, "cross_pvadded_max": 0.001, "dang_runs": 0.1231, "deep_completions": 0.3582, "def_h": 33.4345, "dribbles_box": 0.0097, "dribbles_last_third": 0.056, "duration_s": 31.7804, "hold_max": 9.232, "hold_mean": 5.1328, "hold_min": 2.8921, "line_breaks": 0.8013, "max_x": 65.4204, "n_centros": 0.0921, "n_events": 6.2071, "n_involved": 2.0791, "n_passes": 3.4184, "opt_quality_mean": 0.013, "paredes": 0.3198, "pass_options_mean": 7.4757, "passes_behind_line": 0.1206, "pct_adentro": 0.5047, "pct_afuera": 0.4113, "pct_cortos": 0.4234, "pct_headpass": 0.041, "pct_largos": 0.1754, "pct_launch": 0.0706, "pct_layoff": 0.0128, "pct_medios": 0.3184, "pct_switch": 0.0044, "pct_through": 0.001, "pct_verticales": 0.4602, "pelotazos_espalda": 0.0883, "press_final": 2.3453, "press_media": 1.7891, "prog_x": 23.4759, "start_x": 42.9869, "starts_from_dispossess": 0.0459, "takeons_ok": 0.0555, "tempo": 0.3989, "transition_speed": 3.243, "verticalidad_media": 0.2917}, "Sirius": {"atk_l": 41.4313, "atk_w": 32.0374, "ball_distance": 111.3175, "behind_line_ok": 0.0481, "broke_last_line": 0.0348, "broke_second_last": 0.1313, "cross_pvadded_max": 0.0005, "dang_runs": 0.1005, "deep_completions": 0.3791, "def_h": 31.5839, "dribbles_box": 0.0141, "dribbles_last_third": 0.0611, "duration_s": 29.2612, "hold_max": 10.5655, "hold_mean": 6.2528, "hold_min": 3.9699, "line_breaks": 0.6246, "max_x": 67.4031, "n_centros": 0.1077, "n_events": 5.7406, "n_involved": 1.9597, "n_passes": 3.0616, "opt_quality_mean": 0.0605, "paredes": 0.2831, "pass_options_mean": 7.124, "passes_behind_line": 0.1213, "pct_adentro": 0.4894, "pct_afuera": 0.4134, "pct_cortos": 0.394, "pct_headpass": 0.0316, "pct_largos": 0.204, "pct_launch": 0.0947, "pct_layoff": 0.0103, "pct_medios": 0.3051, "pct_switch": 0.0035, "pct_through": 0.0023, "pct_verticales": 0.4843, "pelotazos_espalda": 0.0891, "press_final": 2.3762, "press_media": 1.7758, "prog_x": 23.5742, "start_x": 45.2576, "starts_from_dispossess": 0.053, "takeons_ok": 0.0449, "tempo": 0.3665, "transition_speed": 3.0901, "verticalidad_media": 0.3444}, "Västerås": {"atk_l": 40.3031, "atk_w": 31.3739, "ball_distance": 93.5904, "behind_line_ok": 0.0315, "broke_last_line": 0.022, "broke_second_last": 0.152, "cross_pvadded_max": 0.0012, "dang_runs": 0.1285, "deep_completions": 0.3286, "def_h": 31.8336, "dribbles_box": 0.0042, "dribbles_last_third": 0.0334, "duration_s": 21.7027, "hold_max": 10.5677, "hold_mean": 6.3481, "hold_min": 4.0272, "line_breaks": 0.5972, "max_x": 66.7094, "n_centros": 0.1158, "n_events": 5.2708, "n_involved": 1.9432, "n_passes": 3.2133, "opt_quality_mean": 0.0001, "paredes": 0.2723, "pass_options_mean": 6.4279, "passes_behind_line": 0.0851, "pct_adentro": 0.5284, "pct_afuera": 0.3913, "pct_cortos": 0.411, "pct_headpass": 0.052, "pct_largos": 0.2141, "pct_launch": 0.1159, "pct_layoff": 0.0099, "pct_medios": 0.2953, "pct_switch": 0.0035, "pct_through": 0.0012, "pct_verticales": 0.4846, "pelotazos_espalda": 0.0664, "press_final": 2.1475, "press_media": 1.608, "prog_x": 22.7997, "start_x": 44.9615, "starts_from_dispossess": 0.0386, "takeons_ok": 0.0353, "tempo": 0.3862, "transition_speed": 3.1579, "verticalidad_media": 0.336}, "Örgryte": {"atk_l": 42.3275, "atk_w": 33.4371, "ball_distance": 92.3252, "behind_line_ok": 0.048, "broke_last_line": 0.0208, "broke_second_last": 0.1386, "cross_pvadded_max": 0.0013, "dang_runs": 0.1076, "deep_completions": 0.3132, "def_h": 33.4598, "dribbles_box": 0.0073, "dribbles_last_third": 0.0405, "duration_s": 22.0417, "hold_max": 9.4015, "hold_mean": 5.4213, "hold_min": 3.2244, "line_breaks": 0.469, "max_x": 65.9184, "n_centros": 0.1074, "n_events": 5.0126, "n_involved": 1.8475, "n_passes": 3.0799, "opt_quality_mean": -0.0392, "paredes": 0.2425, "pass_options_mean": 6.5479, "passes_behind_line": 0.1156, "pct_adentro": 0.5172, "pct_afuera": 0.3967, "pct_cortos": 0.4039, "pct_headpass": 0.0361, "pct_largos": 0.1944, "pct_launch": 0.0694, "pct_layoff": 0.0068, "pct_medios": 0.3162, "pct_switch": 0.0037, "pct_through": 0.0001, "pct_verticales": 0.4738, "pelotazos_espalda": 0.0853, "press_final": 2.498, "press_media": 1.8112, "prog_x": 24.1414, "start_x": 43.0359, "starts_from_dispossess": 0.0408, "takeons_ok": 0.0428, "tempo": 0.3795, "transition_speed": 3.2381, "verticalidad_media": 0.3386}}, "team_eje_norm_gen": {"AIK": {"eje_verticalidad": -0.1025, "eje_elaboracion": -0.0126, "eje_individual": 0.0461, "eje_rotura_lineas": -0.0063, "eje_amplitud_centro": 0.0259, "eje_profundidad_espalda": -0.0091, "eje_robo_alto": 0.0679, "eje_aereo_segunda": -0.0314}, "Brommapojkarna": {"eje_verticalidad": -0.0706, "eje_elaboracion": 0.0226, "eje_individual": -0.0037, "eje_rotura_lineas": 0.052, "eje_amplitud_centro": -0.0238, "eje_profundidad_espalda": 0.05, "eje_robo_alto": -0.0482, "eje_aereo_segunda": -0.0061}, "Degerfors": {"eje_verticalidad": 0.0257, "eje_elaboracion": -0.0517, "eje_individual": -0.0232, "eje_rotura_lineas": -0.0581, "eje_amplitud_centro": -0.0112, "eje_profundidad_espalda": -0.0498, "eje_robo_alto": -0.0019, "eje_aereo_segunda": 0.0012}, "Djurgården": {"eje_verticalidad": -0.0602, "eje_elaboracion": 0.0855, "eje_individual": 0.0274, "eje_rotura_lineas": 0.0443, "eje_amplitud_centro": 0.0442, "eje_profundidad_espalda": 0.0361, "eje_robo_alto": 0.0422, "eje_aereo_segunda": -0.0198}, "Elfsborg": {"eje_verticalidad": 0.0274, "eje_elaboracion": -0.0235, "eje_individual": -0.0014, "eje_rotura_lineas": 0.008, "eje_amplitud_centro": -0.0139, "eje_profundidad_espalda": 0.0479, "eje_robo_alto": -0.0025, "eje_aereo_segunda": 0.0102}, "GAIS": {"eje_verticalidad": 0.0179, "eje_elaboracion": 0.0048, "eje_individual": -0.0084, "eje_rotura_lineas": -0.0078, "eje_amplitud_centro": 0.0071, "eje_profundidad_espalda": 0.0771, "eje_robo_alto": 0.039, "eje_aereo_segunda": 0.0006}, "Halmstad": {"eje_verticalidad": 0.0773, "eje_elaboracion": -0.0611, "eje_individual": -0.0086, "eje_rotura_lineas": -0.033, "eje_amplitud_centro": -0.0186, "eje_profundidad_espalda": -0.0285, "eje_robo_alto": -0.0404, "eje_aereo_segunda": 0.0237}, "Hammarby": {"eje_verticalidad": -0.1051, "eje_elaboracion": 0.1173, "eje_individual": 0.0468, "eje_rotura_lineas": 0.0689, "eje_amplitud_centro": -0.0052, "eje_profundidad_espalda": 0.0735, "eje_robo_alto": 0.0595, "eje_aereo_segunda": -0.0245}, "Häcken": {"eje_verticalidad": -0.0913, "eje_elaboracion": 0.0044, "eje_individual": 0.0266, "eje_rotura_lineas": 0.0263, "eje_amplitud_centro": 0.0083, "eje_profundidad_espalda": -0.0452, "eje_robo_alto": -0.0423, "eje_aereo_segunda": -0.0229}, "IFK Göteborg": {"eje_verticalidad": 0.0243, "eje_elaboracion": -0.0235, "eje_individual": -0.0502, "eje_rotura_lineas": -0.0311, "eje_amplitud_centro": 0.0545, "eje_profundidad_espalda": -0.0603, "eje_robo_alto": -0.0183, "eje_aereo_segunda": 0.022}, "Kalmar": {"eje_verticalidad": -0.0645, "eje_elaboracion": 0.0092, "eje_individual": -0.0001, "eje_rotura_lineas": 0.0192, "eje_amplitud_centro": -0.0247, "eje_profundidad_espalda": -0.0027, "eje_robo_alto": -0.0093, "eje_aereo_segunda": -0.0126}, "Malmö FF": {"eje_verticalidad": 0.0004, "eje_elaboracion": 0.0007, "eje_individual": 0.0017, "eje_rotura_lineas": 0.0012, "eje_amplitud_centro": 0.0081, "eje_profundidad_espalda": 0.0135, "eje_robo_alto": -0.0172, "eje_aereo_segunda": 0.0027}, "Mjällby": {"eje_verticalidad": -0.075, "eje_elaboracion": 0.0301, "eje_individual": 0.0095, "eje_rotura_lineas": -0.0073, "eje_amplitud_centro": -0.013, "eje_profundidad_espalda": -0.0041, "eje_robo_alto": -0.0413, "eje_aereo_segunda": 0.0071}, "Sirius": {"eje_verticalidad": -0.0165, "eje_elaboracion": -0.0265, "eje_individual": 0.0071, "eje_rotura_lineas": 0.001, "eje_amplitud_centro": -0.0013, "eje_profundidad_espalda": 0.0082, "eje_robo_alto": 0.0179, "eje_aereo_segunda": 0.0018}, "Västerås": {"eje_verticalidad": -0.0069, "eje_elaboracion": -0.011, "eje_individual": -0.0476, "eje_rotura_lineas": -0.0162, "eje_amplitud_centro": -0.0138, "eje_profundidad_espalda": -0.0713, "eje_robo_alto": -0.0218, "eje_aereo_segunda": 0.0729}, "Örgryte": {"eje_verticalidad": -0.0264, "eje_elaboracion": -0.0344, "eje_individual": -0.0305, "eje_rotura_lineas": -0.0477, "eje_amplitud_centro": -0.016, "eje_profundidad_espalda": -0.0179, "eje_robo_alto": -0.0526, "eje_aereo_segunda": -0.0438}}, "team_eje_norm_con": {"AIK": {"eje_verticalidad": -0.0243, "eje_elaboracion": -0.0292, "eje_individual": -0.0075, "eje_rotura_lineas": 0.0313, "eje_amplitud_centro": 0.0143, "eje_profundidad_espalda": 0.0013, "eje_robo_alto": -0.0294, "eje_aereo_segunda": -0.0045}, "Brommapojkarna": {"eje_verticalidad": -0.1278, "eje_elaboracion": 0.1336, "eje_individual": 0.033, "eje_rotura_lineas": -0.0047, "eje_amplitud_centro": -0.0056, "eje_profundidad_espalda": 0.024, "eje_robo_alto": 0.0183, "eje_aereo_segunda": -0.0332}, "Degerfors": {"eje_verticalidad": 0.0287, "eje_elaboracion": -0.0358, "eje_individual": -0.0158, "eje_rotura_lineas": -0.0212, "eje_amplitud_centro": -0.0353, "eje_profundidad_espalda": 0.0036, "eje_robo_alto": -0.0196, "eje_aereo_segunda": 0.0428}, "Djurgården": {"eje_verticalidad": 0.0442, "eje_elaboracion": -0.0382, "eje_individual": -0.0188, "eje_rotura_lineas": -0.0068, "eje_amplitud_centro": 0.0185, "eje_profundidad_espalda": 0.0194, "eje_robo_alto": -0.0736, "eje_aereo_segunda": -0.0193}, "Elfsborg": {"eje_verticalidad": -0.0849, "eje_elaboracion": 0.0738, "eje_individual": -0.0415, "eje_rotura_lineas": 0.0056, "eje_amplitud_centro": -0.0223, "eje_profundidad_espalda": -0.0153, "eje_robo_alto": 0.0261, "eje_aereo_segunda": -0.0174}, "GAIS": {"eje_verticalidad": -0.0054, "eje_elaboracion": -0.0182, "eje_individual": -0.0323, "eje_rotura_lineas": 0.0089, "eje_amplitud_centro": 0.0137, "eje_profundidad_espalda": -0.0051, "eje_robo_alto": -0.0425, "eje_aereo_segunda": 0.0185}, "Halmstad": {"eje_verticalidad": -0.1095, "eje_elaboracion": 0.0614, "eje_individual": 0.0242, "eje_rotura_lineas": 0.0546, "eje_amplitud_centro": 0.0183, "eje_profundidad_espalda": 0.0391, "eje_robo_alto": 0.0547, "eje_aereo_segunda": -0.0092}, "Hammarby": {"eje_verticalidad": 0.0867, "eje_elaboracion": -0.0914, "eje_individual": -0.0136, "eje_rotura_lineas": -0.0507, "eje_amplitud_centro": -0.0114, "eje_profundidad_espalda": -0.0229, "eje_robo_alto": -0.0983, "eje_aereo_segunda": 0.0617}, "Häcken": {"eje_verticalidad": -0.0322, "eje_elaboracion": -0.0003, "eje_individual": 0.0008, "eje_rotura_lineas": 0.0041, "eje_amplitud_centro": 0.002, "eje_profundidad_espalda": 0.015, "eje_robo_alto": 0.0293, "eje_aereo_segunda": -0.03}, "IFK Göteborg": {"eje_verticalidad": 0.0596, "eje_elaboracion": -0.0796, "eje_individual": 0.0158, "eje_rotura_lineas": -0.0002, "eje_amplitud_centro": 0.023, "eje_profundidad_espalda": -0.0409, "eje_robo_alto": -0.0224, "eje_aereo_segunda": 0.0202}, "Kalmar": {"eje_verticalidad": -0.0714, "eje_elaboracion": 0.0548, "eje_individual": -0.0066, "eje_rotura_lineas": 0.0025, "eje_amplitud_centro": 0.0071, "eje_profundidad_espalda": 0.0358, "eje_robo_alto": -0.0191, "eje_aereo_segunda": -0.0074}, "Malmö FF": {"eje_verticalidad": -0.058, "eje_elaboracion": -0.0324, "eje_individual": -0.007, "eje_rotura_lineas": 0.0065, "eje_amplitud_centro": -0.0056, "eje_profundidad_espalda": -0.0187, "eje_robo_alto": 0.0156, "eje_aereo_segunda": -0.0152}, "Mjällby": {"eje_verticalidad": -0.0124, "eje_elaboracion": -0.0496, "eje_individual": 0.0659, "eje_rotura_lineas": -0.0168, "eje_amplitud_centro": -0.0038, "eje_profundidad_espalda": 0.0068, "eje_robo_alto": 0.0352, "eje_aereo_segunda": -0.0217}, "Sirius": {"eje_verticalidad": -0.1019, "eje_elaboracion": 0.0373, "eje_individual": 0.011, "eje_rotura_lineas": -0.0297, "eje_amplitud_centro": 0.0107, "eje_profundidad_espalda": -0.0118, "eje_robo_alto": 0.009, "eje_aereo_segunda": -0.0295}, "Västerås": {"eje_verticalidad": 0.0046, "eje_elaboracion": -0.0226, "eje_individual": -0.0292, "eje_rotura_lineas": 0.0011, "eje_amplitud_centro": -0.0125, "eje_profundidad_espalda": 0.0156, "eje_robo_alto": 0.0115, "eje_aereo_segunda": 0.027}, "Örgryte": {"eje_verticalidad": -0.03, "eje_elaboracion": 0.0643, "eje_individual": 0.0148, "eje_rotura_lineas": 0.0234, "eje_amplitud_centro": -0.0069, "eje_profundidad_espalda": -0.0138, "eje_robo_alto": 0.0389, "eje_aereo_segunda": -0.0099}}} \ No newline at end of file diff --git a/vendor/data/ejes/swedish-allsvenskan/26/team_profiles.parquet b/vendor/data/ejes/swedish-allsvenskan/26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..99ab8def061472224fe0525584854d83509ad1a8 --- /dev/null +++ b/vendor/data/ejes/swedish-allsvenskan/26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c26e30cca817d412e084fdc6f6098664ffbdf70e7aaed248fd3ff6701d4431bb +size 8613 diff --git a/vendor/data/ejes/uefa-champions-league/25-26/ejes_definition.json b/vendor/data/ejes/uefa-champions-league/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/uefa-champions-league/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/uefa-champions-league/25-26/match_team_ejes.parquet b/vendor/data/ejes/uefa-champions-league/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..823623c5ab10459be62f46aabf78197b1b0cd7b9 --- /dev/null +++ b/vendor/data/ejes/uefa-champions-league/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a131c70e2a66a9a289073c477b44badf72d8defde02146730b6e9cfe65e22ae2 +size 53898 diff --git a/vendor/data/ejes/uefa-champions-league/25-26/match_team_vars.parquet b/vendor/data/ejes/uefa-champions-league/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..f7d1b8709dfb365e6f08b273475dbdf5bbdd0a34 --- /dev/null +++ b/vendor/data/ejes/uefa-champions-league/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:147e66b4f5eba888c9a38847b9f1468fe692012f2e6e748fe651399b149f2db5 +size 193541 diff --git a/vendor/data/ejes/uefa-champions-league/25-26/predictor.json b/vendor/data/ejes/uefa-champions-league/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..043fcf88fe6282c5046e5fa99773fc6f60ddc502 --- /dev/null +++ b/vendor/data/ejes/uefa-champions-league/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.8015, "con": 0.5506, "intercept": 0.0163}, "elaboracion": {"gen": 0.642, "con": 0.5583, "intercept": -0.4905}, "individual": {"gen": 0.5363, "con": 0.6177, "intercept": -0.3738}, "rotura_lineas": {"gen": 0.8001, "con": 0.4658, "intercept": 0.0055}, "amplitud_centro": {"gen": 0.5947, "con": 0.6089, "intercept": -0.2367}, "profundidad_espalda": {"gen": 0.5234, "con": 0.6521, "intercept": -0.1647}, "robo_alto": {"gen": 0.6755, "con": 0.5174, "intercept": 0.0218}, "aereo_segunda": {"gen": 0.7309, "con": 0.4525, "intercept": -0.0006}} \ No newline at end of file diff --git a/vendor/data/ejes/uefa-champions-league/25-26/scales.json b/vendor/data/ejes/uefa-champions-league/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..44f6269b5bd9658796f8cf1d1c81d69fb30956cd --- /dev/null +++ b/vendor/data/ejes/uefa-champions-league/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 1.7078, "atk_w": 1.4119, "ball_distance": 72.3027, "behind_line_ok": 0.0231, "broke_last_line": 0.0181, "broke_second_last": 0.0585, "cross_pvadded_max": 0.0279, "dang_runs": 0.1136, "deep_completions": 16.2805, "def_h": 3.3982, "dribbles_box": 0.7796, "dribbles_last_third": 2.7619, "duration_s": 792.29, "hold_max": 83.9895, "hold_mean": 1.0162, "hold_min": 1.0431, "line_breaks": 0.4348, "max_x": 6.6334, "n_centros": 5.2495, "n_events": 231.0183, "n_involved": 0.2013, "n_passes": 134.6942, "opt_quality_mean": 0.1526, "paredes": 14.289, "pass_options_mean": 1.5369, "passes_behind_line": 0.0362, "pct_adentro": 0.0349, "pct_afuera": 0.0336, "pct_cortos": 0.048, "pct_headpass": 0.0136, "pct_largos": 0.0454, "pct_launch": 0.0287, "pct_layoff": 0.0053, "pct_medios": 0.0373, "pct_switch": 0.0046, "pct_through": 0.0052, "pct_verticales": 0.0503, "pelotazos_espalda": 0.0313, "press_final": 0.4594, "press_media": 0.305, "prog_x": 10.9282, "start_x": 7.6426, "starts_from_dispossess": 0.0208, "takeons_ok": 2.2634, "tempo": 0.0487, "transition_speed": 0.7969, "verticalidad_media": 0.0616}, "eje_sigma": {"eje_verticalidad": 0.1192, "eje_elaboracion": 3.1057, "eje_individual": 3.3999, "eje_rotura_lineas": 0.07, "eje_amplitud_centro": 1.7413, "eje_profundidad_espalda": 1.3952, "eje_robo_alto": 0.1638, "eje_aereo_segunda": 0.0659}, "eje_match_mean": {"eje_verticalidad": -0.0448, "eje_elaboracion": 1.8828, "eje_individual": 1.7265, "eje_rotura_lineas": -0.0191, "eje_amplitud_centro": 1.0011, "eje_profundidad_espalda": 0.7342, "eje_robo_alto": -0.0892, "eje_aereo_segunda": 0.0025}, "eje_match_std": {"eje_verticalidad": 0.1521, "eje_elaboracion": 6.1218, "eje_individual": 5.8798, "eje_rotura_lineas": 0.1068, "eje_amplitud_centro": 3.347, "eje_profundidad_espalda": 2.4342, "eje_robo_alto": 0.2947, "eje_aereo_segunda": 0.0801}, "team_var_norm": {"Ajax": {"atk_l": 43.4782, "atk_w": 32.4354, "ball_distance": 203.3635, "behind_line_ok": 0.0636, "broke_last_line": 0.0369, "broke_second_last": 0.1886, "cross_pvadded_max": 0.0004, "dang_runs": 0.1731, "deep_completions": 0.3212, "def_h": 34.6589, "dribbles_box": 0.0077, "dribbles_last_third": 0.0597, "duration_s": 34.6943, "hold_max": 10.5072, "hold_mean": 5.5538, "hold_min": 3.0799, "line_breaks": 0.8926, "max_x": 66.1069, "n_centros": 0.1336, "n_events": 7.0617, "n_involved": 2.095, "n_passes": 4.6075, "opt_quality_mean": 0.0035, "paredes": 0.5511, "pass_options_mean": 8.9788, "passes_behind_line": 0.142, "pct_adentro": 0.5024, "pct_afuera": 0.4253, "pct_cortos": 0.3908, "pct_headpass": 0.0323, "pct_largos": 0.1758, "pct_launch": 0.062, "pct_layoff": 0.0143, "pct_medios": 0.3615, "pct_switch": 0.0093, "pct_through": 0.0036, "pct_verticales": 0.4172, "pelotazos_espalda": 0.0952, "press_final": 2.3737, "press_media": 1.729, "prog_x": 25.052, "start_x": 41.8611, "starts_from_dispossess": 0.0522, "takeons_ok": 0.0723, "tempo": 0.3713, "transition_speed": 2.8014, "verticalidad_media": 0.2412}, "Arsenal": {"atk_l": 40.2651, "atk_w": 31.5059, "ball_distance": 161.8504, "behind_line_ok": 0.0675, "broke_last_line": 0.0411, "broke_second_last": 0.1996, "cross_pvadded_max": 0.002, "dang_runs": 0.186, "deep_completions": 0.4695, "def_h": 29.1293, "dribbles_box": 0.0164, "dribbles_last_third": 0.0944, "duration_s": 27.7979, "hold_max": 11.5607, "hold_mean": 6.719, "hold_min": 4.0552, "line_breaks": 0.8435, "max_x": 71.6554, "n_centros": 0.1249, "n_events": 5.9437, "n_involved": 1.9604, "n_passes": 3.7167, "opt_quality_mean": 0.1633, "paredes": 0.374, "pass_options_mean": 8.9387, "passes_behind_line": 0.1333, "pct_adentro": 0.5021, "pct_afuera": 0.405, "pct_cortos": 0.41, "pct_headpass": 0.0489, "pct_largos": 0.177, "pct_launch": 0.0806, "pct_layoff": 0.0091, "pct_medios": 0.322, "pct_switch": 0.0028, "pct_through": 0.0107, "pct_verticales": 0.4592, "pelotazos_espalda": 0.0909, "press_final": 2.8542, "press_media": 2.0307, "prog_x": 24.8248, "start_x": 47.967, "starts_from_dispossess": 0.0509, "takeons_ok": 0.0574, "tempo": 0.3863, "transition_speed": 3.4962, "verticalidad_media": 0.3226}, "Atalanta": {"atk_l": 43.9261, "atk_w": 31.9916, "ball_distance": 153.1024, "behind_line_ok": 0.0379, "broke_last_line": 0.0401, "broke_second_last": 0.2104, "cross_pvadded_max": 0.0022, "dang_runs": 0.1799, "deep_completions": 0.3383, "def_h": 33.5911, "dribbles_box": 0.0081, "dribbles_last_third": 0.0555, "duration_s": 35.1341, "hold_max": 9.6309, "hold_mean": 5.3916, "hold_min": 3.1272, "line_breaks": 0.6737, "max_x": 65.9108, "n_centros": 0.1195, "n_events": 6.5855, "n_involved": 2.0411, "n_passes": 3.6131, "opt_quality_mean": 0.0212, "paredes": 0.2661, "pass_options_mean": 9.0606, "passes_behind_line": 0.1001, "pct_adentro": 0.4778, "pct_afuera": 0.4367, "pct_cortos": 0.4131, "pct_headpass": 0.0451, "pct_largos": 0.1832, "pct_launch": 0.0746, "pct_layoff": 0.0127, "pct_medios": 0.3203, "pct_switch": 0.0047, "pct_through": 0.0022, "pct_verticales": 0.4639, "pelotazos_espalda": 0.0689, "press_final": 2.5885, "press_media": 1.9372, "prog_x": 24.0412, "start_x": 43.3402, "starts_from_dispossess": 0.0332, "takeons_ok": 0.0448, "tempo": 0.3713, "transition_speed": 3.0208, "verticalidad_media": 0.3174}, "Athletic Club": {"atk_l": 38.1972, "atk_w": 29.8997, "ball_distance": 92.5517, "behind_line_ok": 0.0415, "broke_last_line": 0.0206, "broke_second_last": 0.1791, "cross_pvadded_max": 0.0011, "dang_runs": 0.0944, "deep_completions": 0.2864, "def_h": 30.1369, "dribbles_box": 0.0079, "dribbles_last_third": 0.0656, "duration_s": 32.103, "hold_max": 10.3369, "hold_mean": 6.4535, "hold_min": 4.1834, "line_breaks": 0.655, "max_x": 68.6828, "n_centros": 0.1093, "n_events": 5.5887, "n_involved": 1.7689, "n_passes": 2.6578, "opt_quality_mean": 0.0492, "paredes": 0.1715, "pass_options_mean": 9.4014, "passes_behind_line": 0.1243, "pct_adentro": 0.5191, "pct_afuera": 0.3922, "pct_cortos": 0.3719, "pct_headpass": 0.05, "pct_largos": 0.2148, "pct_launch": 0.1058, "pct_layoff": 0.0102, "pct_medios": 0.3258, "pct_switch": 0.0043, "pct_through": 0.0044, "pct_verticales": 0.5205, "pelotazos_espalda": 0.1023, "press_final": 2.6603, "press_media": 1.8923, "prog_x": 23.1435, "start_x": 46.5832, "starts_from_dispossess": 0.0441, "takeons_ok": 0.0455, "tempo": 0.3847, "transition_speed": 3.162, "verticalidad_media": 0.3623}, "Atlético de Madrid": {"atk_l": 41.0638, "atk_w": 31.4906, "ball_distance": 183.6601, "behind_line_ok": 0.0689, "broke_last_line": 0.0509, "broke_second_last": 0.186, "cross_pvadded_max": 0.001, "dang_runs": 0.2286, "deep_completions": 0.4083, "def_h": 34.2686, "dribbles_box": 0.0129, "dribbles_last_third": 0.0587, "duration_s": 25.6967, "hold_max": 10.2746, "hold_mean": 5.8155, "hold_min": 3.4469, "line_breaks": 0.9135, "max_x": 65.6795, "n_centros": 0.1308, "n_events": 5.9844, "n_involved": 2.1508, "n_passes": 3.9037, "opt_quality_mean": 0.0229, "paredes": 0.3444, "pass_options_mean": 8.7701, "passes_behind_line": 0.1333, "pct_adentro": 0.4949, "pct_afuera": 0.4148, "pct_cortos": 0.4305, "pct_headpass": 0.0404, "pct_largos": 0.176, "pct_launch": 0.0596, "pct_layoff": 0.0115, "pct_medios": 0.3043, "pct_switch": 0.0048, "pct_through": 0.0059, "pct_verticales": 0.4258, "pelotazos_espalda": 0.0859, "press_final": 2.5643, "press_media": 1.9228, "prog_x": 23.5597, "start_x": 43.6337, "starts_from_dispossess": 0.0477, "takeons_ok": 0.0586, "tempo": 0.4015, "transition_speed": 3.1161, "verticalidad_media": 0.2666}, "Barcelona": {"atk_l": 44.0041, "atk_w": 31.8139, "ball_distance": 251.9195, "behind_line_ok": 0.0489, "broke_last_line": 0.041, "broke_second_last": 0.1981, "cross_pvadded_max": 0.001, "dang_runs": 0.2019, "deep_completions": 0.4095, "def_h": 32.0225, "dribbles_box": 0.0238, "dribbles_last_third": 0.0985, "duration_s": 43.5057, "hold_max": 10.1663, "hold_mean": 4.9877, "hold_min": 2.7001, "line_breaks": 1.4282, "max_x": 66.824, "n_centros": 0.0834, "n_events": 7.764, "n_involved": 2.3428, "n_passes": 4.4837, "opt_quality_mean": 0.0701, "paredes": 0.4975, "pass_options_mean": 9.0877, "passes_behind_line": 0.1132, "pct_adentro": 0.4961, "pct_afuera": 0.41, "pct_cortos": 0.4147, "pct_headpass": 0.0315, "pct_largos": 0.1323, "pct_launch": 0.0495, "pct_layoff": 0.0156, "pct_medios": 0.362, "pct_switch": 0.0033, "pct_through": 0.0055, "pct_verticales": 0.4233, "pelotazos_espalda": 0.0669, "press_final": 2.7333, "press_media": 2.0085, "prog_x": 22.6429, "start_x": 45.7457, "starts_from_dispossess": 0.0547, "takeons_ok": 0.0831, "tempo": 0.3903, "transition_speed": 2.6127, "verticalidad_media": 0.2653}, "Basel": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1702, "dang_runs": 0.0, "deep_completions": 107.0, "def_h": NaN, "dribbles_box": 4.0, "dribbles_last_third": 14.0, "duration_s": 5641.0, "hold_max": 106.0, "hold_mean": 3.5892, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 27.0, "n_events": 1645.0, "n_involved": NaN, "n_passes": 1023.0, "opt_quality_mean": NaN, "paredes": 132.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.521, "pct_afuera": 0.479, "pct_cortos": 0.4379, "pct_headpass": 0.0371, "pct_largos": 0.1075, "pct_launch": 0.0235, "pct_layoff": 0.0166, "pct_medios": 0.4545, "pct_switch": 0.002, "pct_through": 0.0049, "pct_verticales": 0.391, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 12.0, "tempo": 0.1814, "transition_speed": 0.0177, "verticalidad_media": 0.1624}, "Bayer Leverkusen": {"atk_l": 43.2558, "atk_w": 31.3382, "ball_distance": 214.4684, "behind_line_ok": 0.0448, "broke_last_line": 0.0306, "broke_second_last": 0.2327, "cross_pvadded_max": 0.001, "dang_runs": 0.1909, "deep_completions": 0.3709, "def_h": 36.0151, "dribbles_box": 0.0152, "dribbles_last_third": 0.0529, "duration_s": 29.8369, "hold_max": 10.0489, "hold_mean": 5.4118, "hold_min": 3.0823, "line_breaks": 1.4853, "max_x": 62.8631, "n_centros": 0.1036, "n_events": 6.5901, "n_involved": 2.2316, "n_passes": 4.3892, "opt_quality_mean": -0.0332, "paredes": 0.505, "pass_options_mean": 9.1033, "passes_behind_line": 0.1199, "pct_adentro": 0.5092, "pct_afuera": 0.41, "pct_cortos": 0.4775, "pct_headpass": 0.0373, "pct_largos": 0.154, "pct_launch": 0.0577, "pct_layoff": 0.0112, "pct_medios": 0.2891, "pct_switch": 0.0064, "pct_through": 0.0034, "pct_verticales": 0.4249, "pelotazos_espalda": 0.0847, "press_final": 2.5373, "press_media": 1.9513, "prog_x": 23.4906, "start_x": 40.3535, "starts_from_dispossess": 0.0521, "takeons_ok": 0.0541, "tempo": 0.4154, "transition_speed": 2.7298, "verticalidad_media": 0.2387}, "Bayern München": {"atk_l": 41.785, "atk_w": 30.2694, "ball_distance": 275.2717, "behind_line_ok": 0.077, "broke_last_line": 0.0508, "broke_second_last": 0.2496, "cross_pvadded_max": 0.0006, "dang_runs": 0.2872, "deep_completions": 0.6221, "def_h": 29.9207, "dribbles_box": 0.0291, "dribbles_last_third": 0.1048, "duration_s": 38.4655, "hold_max": 9.8929, "hold_mean": 5.472, "hold_min": 3.0737, "line_breaks": 1.5282, "max_x": 71.4164, "n_centros": 0.0923, "n_events": 7.6679, "n_involved": 2.2543, "n_passes": 5.0365, "opt_quality_mean": 0.1585, "paredes": 0.5676, "pass_options_mean": 9.0396, "passes_behind_line": 0.1496, "pct_adentro": 0.5049, "pct_afuera": 0.4131, "pct_cortos": 0.4519, "pct_headpass": 0.0339, "pct_largos": 0.1704, "pct_launch": 0.0378, "pct_layoff": 0.0132, "pct_medios": 0.2968, "pct_switch": 0.0083, "pct_through": 0.0081, "pct_verticales": 0.4174, "pelotazos_espalda": 0.0956, "press_final": 2.6935, "press_media": 1.8878, "prog_x": 24.938, "start_x": 47.8404, "starts_from_dispossess": 0.0531, "takeons_ok": 0.0838, "tempo": 0.3754, "transition_speed": 2.6475, "verticalidad_media": 0.2318}, "Benfica": {"atk_l": 41.6777, "atk_w": 31.9028, "ball_distance": 126.6817, "behind_line_ok": 0.032, "broke_last_line": 0.0306, "broke_second_last": 0.1517, "cross_pvadded_max": 0.0103, "dang_runs": 0.2395, "deep_completions": 10.1799, "def_h": 31.8949, "dribbles_box": 0.1959, "dribbles_last_third": 1.6134, "duration_s": 551.447, "hold_max": 21.4742, "hold_mean": 5.7436, "hold_min": 3.2498, "line_breaks": 0.6857, "max_x": 70.1679, "n_centros": 3.1933, "n_events": 159.5707, "n_involved": 2.0194, "n_passes": 92.6655, "opt_quality_mean": 0.0843, "paredes": 10.9942, "pass_options_mean": 8.39, "passes_behind_line": 0.0931, "pct_adentro": 0.4959, "pct_afuera": 0.421, "pct_cortos": 0.4585, "pct_headpass": 0.0433, "pct_largos": 0.1683, "pct_launch": 0.0656, "pct_layoff": 0.0086, "pct_medios": 0.2908, "pct_switch": 0.0059, "pct_through": 0.004, "pct_verticales": 0.4383, "pelotazos_espalda": 0.0695, "press_final": 2.5461, "press_media": 1.7717, "prog_x": 30.0957, "start_x": 41.1395, "starts_from_dispossess": 0.0543, "takeons_ok": 0.6915, "tempo": 0.3618, "transition_speed": 2.8433, "verticalidad_media": 0.2906}, "Bodø / Glimt": {"atk_l": 38.9564, "atk_w": 30.7424, "ball_distance": 119.7664, "behind_line_ok": 0.0428, "broke_last_line": 0.0232, "broke_second_last": 0.1578, "cross_pvadded_max": 0.0101, "dang_runs": 0.1359, "deep_completions": 9.8073, "def_h": 33.9194, "dribbles_box": 0.3972, "dribbles_last_third": 1.6773, "duration_s": 452.1005, "hold_max": 17.4547, "hold_mean": 5.7428, "hold_min": 3.2648, "line_breaks": 0.5405, "max_x": 67.8949, "n_centros": 1.9111, "n_events": 147.4269, "n_involved": 1.9004, "n_passes": 85.5543, "opt_quality_mean": 0.0072, "paredes": 8.5611, "pass_options_mean": 8.2716, "passes_behind_line": 0.1151, "pct_adentro": 0.4713, "pct_afuera": 0.4395, "pct_cortos": 0.4574, "pct_headpass": 0.039, "pct_largos": 0.1838, "pct_launch": 0.0822, "pct_layoff": 0.0108, "pct_medios": 0.2702, "pct_switch": 0.0049, "pct_through": 0.0008, "pct_verticales": 0.4545, "pelotazos_espalda": 0.0916, "press_final": 2.6322, "press_media": 1.8847, "prog_x": 30.8787, "start_x": 38.2539, "starts_from_dispossess": 0.0472, "takeons_ok": 1.5923, "tempo": 0.3756, "transition_speed": 3.1568, "verticalidad_media": 0.3039}, "Borussia Dortmund": {"atk_l": 41.8054, "atk_w": 31.0014, "ball_distance": 171.1492, "behind_line_ok": 0.0485, "broke_last_line": 0.0408, "broke_second_last": 0.2644, "cross_pvadded_max": 0.0011, "dang_runs": 0.2061, "deep_completions": 0.3644, "def_h": 31.7531, "dribbles_box": 0.0117, "dribbles_last_third": 0.0718, "duration_s": 26.2533, "hold_max": 10.4801, "hold_mean": 5.9643, "hold_min": 3.6409, "line_breaks": 0.977, "max_x": 68.5869, "n_centros": 0.1165, "n_events": 6.066, "n_involved": 2.1119, "n_passes": 3.8598, "opt_quality_mean": 0.0849, "paredes": 0.3689, "pass_options_mean": 9.0985, "passes_behind_line": 0.125, "pct_adentro": 0.504, "pct_afuera": 0.4047, "pct_cortos": 0.3845, "pct_headpass": 0.0326, "pct_largos": 0.1816, "pct_launch": 0.0676, "pct_layoff": 0.0114, "pct_medios": 0.3433, "pct_switch": 0.0052, "pct_through": 0.0025, "pct_verticales": 0.4239, "pelotazos_espalda": 0.0875, "press_final": 2.7125, "press_media": 1.9697, "prog_x": 23.3993, "start_x": 46.3707, "starts_from_dispossess": 0.0548, "takeons_ok": 0.0532, "tempo": 0.3855, "transition_speed": 2.8679, "verticalidad_media": 0.2733}, "Brann": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1368, "dang_runs": 0.0, "deep_completions": 85.5, "def_h": NaN, "dribbles_box": 2.0, "dribbles_last_third": 16.5, "duration_s": 5625.0, "hold_max": 81.5, "hold_mean": 3.3799, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 24.0, "n_events": 1711.5, "n_involved": NaN, "n_passes": 964.5, "opt_quality_mean": NaN, "paredes": 89.5, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5261, "pct_afuera": 0.4723, "pct_cortos": 0.4829, "pct_headpass": 0.0421, "pct_largos": 0.1333, "pct_launch": 0.0444, "pct_layoff": 0.0197, "pct_medios": 0.3839, "pct_switch": 0.0067, "pct_through": 0.0032, "pct_verticales": 0.4012, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 13.5, "tempo": 0.1715, "transition_speed": 0.0178, "verticalidad_media": 0.1745}, "Celtic": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.0911, "dang_runs": 0.0, "deep_completions": 93.5, "def_h": NaN, "dribbles_box": 3.5, "dribbles_last_third": 22.0, "duration_s": 5841.0, "hold_max": 150.5, "hold_mean": 3.4981, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 36.0, "n_events": 1706.5, "n_involved": NaN, "n_passes": 946.5, "opt_quality_mean": NaN, "paredes": 96.5, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5405, "pct_afuera": 0.458, "pct_cortos": 0.5163, "pct_headpass": 0.0625, "pct_largos": 0.1179, "pct_launch": 0.0477, "pct_layoff": 0.0227, "pct_medios": 0.3658, "pct_switch": 0.0059, "pct_through": 0.0021, "pct_verticales": 0.444, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 13.5, "tempo": 0.1619, "transition_speed": 0.0171, "verticalidad_media": 0.2205}, "Chelsea": {"atk_l": 44.6212, "atk_w": 31.3176, "ball_distance": 198.8755, "behind_line_ok": 0.0628, "broke_last_line": 0.0425, "broke_second_last": 0.2124, "cross_pvadded_max": 0.0012, "dang_runs": 0.1539, "deep_completions": 0.4434, "def_h": 30.075, "dribbles_box": 0.0239, "dribbles_last_third": 0.0882, "duration_s": 34.1335, "hold_max": 10.4693, "hold_mean": 5.4165, "hold_min": 2.932, "line_breaks": 1.1206, "max_x": 68.9189, "n_centros": 0.1197, "n_events": 7.0196, "n_involved": 2.1097, "n_passes": 4.4338, "opt_quality_mean": 0.1091, "paredes": 0.4992, "pass_options_mean": 9.2521, "passes_behind_line": 0.1141, "pct_adentro": 0.5069, "pct_afuera": 0.4075, "pct_cortos": 0.4674, "pct_headpass": 0.037, "pct_largos": 0.1207, "pct_launch": 0.0407, "pct_layoff": 0.0173, "pct_medios": 0.328, "pct_switch": 0.0015, "pct_through": 0.0072, "pct_verticales": 0.3888, "pelotazos_espalda": 0.0702, "press_final": 2.6877, "press_media": 1.8991, "prog_x": 20.8892, "start_x": 49.0954, "starts_from_dispossess": 0.0627, "takeons_ok": 0.0694, "tempo": 0.4081, "transition_speed": 2.3793, "verticalidad_media": 0.2116}, "Club Brugge": {"atk_l": 44.382, "atk_w": 32.4344, "ball_distance": 164.6419, "behind_line_ok": 0.0541, "broke_last_line": 0.0394, "broke_second_last": 0.1661, "cross_pvadded_max": 0.0335, "dang_runs": 0.19, "deep_completions": 24.9171, "def_h": 34.1899, "dribbles_box": 1.2616, "dribbles_last_third": 3.0448, "duration_s": 946.6209, "hold_max": 166.4011, "hold_mean": 4.7287, "hold_min": 1.9823, "line_breaks": 0.9412, "max_x": 71.6097, "n_centros": 5.9983, "n_events": 274.1322, "n_involved": 2.1347, "n_passes": 170.7598, "opt_quality_mean": 0.0003, "paredes": 16.1582, "pass_options_mean": 7.8266, "passes_behind_line": 0.1092, "pct_adentro": 0.4981, "pct_afuera": 0.43, "pct_cortos": 0.4468, "pct_headpass": 0.0363, "pct_largos": 0.1581, "pct_launch": 0.0581, "pct_layoff": 0.0135, "pct_medios": 0.3245, "pct_switch": 0.0061, "pct_through": 0.0038, "pct_verticales": 0.427, "pelotazos_espalda": 0.0682, "press_final": 2.3232, "press_media": 1.5896, "prog_x": 37.9614, "start_x": 34.6321, "starts_from_dispossess": 0.0398, "takeons_ok": 3.0452, "tempo": 0.3791, "transition_speed": 2.7315, "verticalidad_media": 0.2432}, "Drita": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1922, "dang_runs": 0.0, "deep_completions": 88.0, "def_h": NaN, "dribbles_box": 1.0, "dribbles_last_third": 9.0, "duration_s": 5686.0, "hold_max": 105.5, "hold_mean": 3.8377, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 37.0, "n_events": 1539.0, "n_involved": NaN, "n_passes": 920.5, "opt_quality_mean": NaN, "paredes": 106.5, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5224, "pct_afuera": 0.4765, "pct_cortos": 0.3994, "pct_headpass": 0.0473, "pct_largos": 0.1512, "pct_launch": 0.0364, "pct_layoff": 0.018, "pct_medios": 0.4494, "pct_switch": 0.0044, "pct_through": 0.0022, "pct_verticales": 0.3994, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 10.0, "tempo": 0.1619, "transition_speed": 0.0176, "verticalidad_media": 0.1791}, "Eintracht Frankfurt": {"atk_l": 40.9366, "atk_w": 31.809, "ball_distance": 170.8986, "behind_line_ok": 0.0482, "broke_last_line": 0.0201, "broke_second_last": 0.1564, "cross_pvadded_max": 0.0005, "dang_runs": 0.2548, "deep_completions": 0.2813, "def_h": 35.8465, "dribbles_box": 0.0061, "dribbles_last_third": 0.0493, "duration_s": 27.0867, "hold_max": 10.2022, "hold_mean": 5.752, "hold_min": 3.2411, "line_breaks": 0.9877, "max_x": 63.4917, "n_centros": 0.0771, "n_events": 5.7225, "n_involved": 2.1833, "n_passes": 3.643, "opt_quality_mean": -0.0729, "paredes": 0.3595, "pass_options_mean": 9.6801, "passes_behind_line": 0.1515, "pct_adentro": 0.5074, "pct_afuera": 0.4161, "pct_cortos": 0.419, "pct_headpass": 0.0407, "pct_largos": 0.1895, "pct_launch": 0.0988, "pct_layoff": 0.0098, "pct_medios": 0.3154, "pct_switch": 0.0021, "pct_through": 0.0024, "pct_verticales": 0.4887, "pelotazos_espalda": 0.1089, "press_final": 2.7564, "press_media": 1.8093, "prog_x": 24.2965, "start_x": 39.8229, "starts_from_dispossess": 0.0499, "takeons_ok": 0.0402, "tempo": 0.4234, "transition_speed": 3.6101, "verticalidad_media": 0.3064}, "Fenerbahçe": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1265, "dang_runs": 0.0, "deep_completions": 78.25, "def_h": NaN, "dribbles_box": 1.0, "dribbles_last_third": 15.0, "duration_s": 5766.5, "hold_max": 128.0, "hold_mean": 3.7825, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 35.75, "n_events": 1588.25, "n_involved": NaN, "n_passes": 862.75, "opt_quality_mean": NaN, "paredes": 89.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5373, "pct_afuera": 0.4618, "pct_cortos": 0.5016, "pct_headpass": 0.0738, "pct_largos": 0.1331, "pct_launch": 0.0528, "pct_layoff": 0.0226, "pct_medios": 0.3652, "pct_switch": 0.0049, "pct_through": 0.0024, "pct_verticales": 0.4079, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 13.0, "tempo": 0.1498, "transition_speed": 0.0173, "verticalidad_media": 0.1966}, "Ferencváros": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1686, "dang_runs": 0.0, "deep_completions": 92.75, "def_h": NaN, "dribbles_box": 3.0, "dribbles_last_third": 16.75, "duration_s": 5736.75, "hold_max": 106.25, "hold_mean": 3.9976, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 99.85, "n_centros": 28.75, "n_events": 1471.75, "n_involved": NaN, "n_passes": 819.25, "opt_quality_mean": NaN, "paredes": 78.5, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5253, "pct_afuera": 0.4747, "pct_cortos": 0.4309, "pct_headpass": 0.078, "pct_largos": 0.1751, "pct_launch": 0.0585, "pct_layoff": 0.0142, "pct_medios": 0.394, "pct_switch": 0.0068, "pct_through": 0.0027, "pct_verticales": 0.4592, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 99.85, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 13.5, "tempo": 0.1427, "transition_speed": 0.0174, "verticalidad_media": 0.2364}, "Galatasaray": {"atk_l": 41.8973, "atk_w": 32.6797, "ball_distance": 162.8546, "behind_line_ok": 0.0463, "broke_last_line": 0.0251, "broke_second_last": 0.1573, "cross_pvadded_max": 0.0016, "dang_runs": 0.184, "deep_completions": 0.2973, "def_h": 32.4659, "dribbles_box": 0.0117, "dribbles_last_third": 0.0562, "duration_s": 38.7571, "hold_max": 10.9568, "hold_mean": 5.99, "hold_min": 3.3707, "line_breaks": 0.8265, "max_x": 66.8929, "n_centros": 0.1273, "n_events": 6.741, "n_involved": 2.007, "n_passes": 3.5493, "opt_quality_mean": 0.0044, "paredes": 0.3251, "pass_options_mean": 8.9949, "passes_behind_line": 0.123, "pct_adentro": 0.5087, "pct_afuera": 0.4091, "pct_cortos": 0.3841, "pct_headpass": 0.0468, "pct_largos": 0.2139, "pct_launch": 0.1011, "pct_layoff": 0.0157, "pct_medios": 0.3201, "pct_switch": 0.0038, "pct_through": 0.0035, "pct_verticales": 0.4581, "pelotazos_espalda": 0.0934, "press_final": 2.6061, "press_media": 1.8227, "prog_x": 24.0229, "start_x": 44.0404, "starts_from_dispossess": 0.046, "takeons_ok": 0.0595, "tempo": 0.3911, "transition_speed": 3.3442, "verticalidad_media": 0.2961}, "Internazionale": {"atk_l": 42.8285, "atk_w": 31.721, "ball_distance": 160.6401, "behind_line_ok": 0.0603, "broke_last_line": 0.0393, "broke_second_last": 0.2449, "cross_pvadded_max": 0.0019, "dang_runs": 0.2705, "deep_completions": 0.4824, "def_h": 30.7458, "dribbles_box": 0.013, "dribbles_last_third": 0.0472, "duration_s": 44.3581, "hold_max": 9.6055, "hold_mean": 4.8952, "hold_min": 2.6455, "line_breaks": 0.8587, "max_x": 68.8748, "n_centros": 0.1502, "n_events": 7.5866, "n_involved": 2.051, "n_passes": 4.1925, "opt_quality_mean": 0.1444, "paredes": 0.4189, "pass_options_mean": 9.4179, "passes_behind_line": 0.1084, "pct_adentro": 0.5296, "pct_afuera": 0.3806, "pct_cortos": 0.4509, "pct_headpass": 0.038, "pct_largos": 0.1321, "pct_launch": 0.0545, "pct_layoff": 0.0101, "pct_medios": 0.329, "pct_switch": 0.0053, "pct_through": 0.0035, "pct_verticales": 0.3948, "pelotazos_espalda": 0.0597, "press_final": 2.6088, "press_media": 2.0037, "prog_x": 22.4414, "start_x": 48.1082, "starts_from_dispossess": 0.0547, "takeons_ok": 0.0525, "tempo": 0.3812, "transition_speed": 2.5375, "verticalidad_media": 0.2359}, "Juventus": {"atk_l": 42.0726, "atk_w": 32.269, "ball_distance": 143.9033, "behind_line_ok": 0.0437, "broke_last_line": 0.033, "broke_second_last": 0.1802, "cross_pvadded_max": 0.0024, "dang_runs": 0.1793, "deep_completions": 0.41, "def_h": 32.4239, "dribbles_box": 0.018, "dribbles_last_third": 0.0788, "duration_s": 35.2365, "hold_max": 10.1691, "hold_mean": 5.3769, "hold_min": 2.9372, "line_breaks": 0.8252, "max_x": 67.2309, "n_centros": 0.1355, "n_events": 6.5318, "n_involved": 1.983, "n_passes": 3.5996, "opt_quality_mean": 0.1, "paredes": 0.3095, "pass_options_mean": 9.1879, "passes_behind_line": 0.0909, "pct_adentro": 0.496, "pct_afuera": 0.4057, "pct_cortos": 0.4295, "pct_headpass": 0.0369, "pct_largos": 0.1613, "pct_launch": 0.0463, "pct_layoff": 0.0115, "pct_medios": 0.3116, "pct_switch": 0.0058, "pct_through": 0.002, "pct_verticales": 0.4095, "pelotazos_espalda": 0.0511, "press_final": 2.6871, "press_media": 2.0077, "prog_x": 23.3314, "start_x": 45.2144, "starts_from_dispossess": 0.0386, "takeons_ok": 0.0612, "tempo": 0.3817, "transition_speed": 3.1292, "verticalidad_media": 0.2626}, "Kairat": {"atk_l": 40.0816, "atk_w": 32.9443, "ball_distance": 108.884, "behind_line_ok": 0.0367, "broke_last_line": 0.0149, "broke_second_last": 0.1484, "cross_pvadded_max": 0.0005, "dang_runs": 0.1016, "deep_completions": 0.2168, "def_h": 35.7825, "dribbles_box": 0.0055, "dribbles_last_third": 0.0327, "duration_s": 21.7299, "hold_max": 9.7455, "hold_mean": 5.3311, "hold_min": 2.8374, "line_breaks": 0.5862, "max_x": 62.882, "n_centros": 0.0816, "n_events": 5.206, "n_involved": 1.9251, "n_passes": 3.0555, "opt_quality_mean": -0.0919, "paredes": 0.2416, "pass_options_mean": 9.5153, "passes_behind_line": 0.1399, "pct_adentro": 0.4873, "pct_afuera": 0.4525, "pct_cortos": 0.4003, "pct_headpass": 0.0539, "pct_largos": 0.2085, "pct_launch": 0.101, "pct_layoff": 0.0117, "pct_medios": 0.3318, "pct_switch": 0.0051, "pct_through": 0.0022, "pct_verticales": 0.5103, "pelotazos_espalda": 0.1079, "press_final": 2.4706, "press_media": 1.7716, "prog_x": 24.8585, "start_x": 38.8315, "starts_from_dispossess": 0.0342, "takeons_ok": 0.0389, "tempo": 0.4478, "transition_speed": 4.2359, "verticalidad_media": 0.3502}, "København": {"atk_l": 39.4946, "atk_w": 30.4716, "ball_distance": 87.9216, "behind_line_ok": 0.0265, "broke_last_line": 0.0173, "broke_second_last": 0.1258, "cross_pvadded_max": 0.0432, "dang_runs": 0.1468, "deep_completions": 27.5749, "def_h": 34.0351, "dribbles_box": 1.096, "dribbles_last_third": 5.3029, "duration_s": 1537.1801, "hold_max": 27.9356, "hold_mean": 5.8025, "hold_min": 2.9822, "line_breaks": 0.4955, "max_x": 73.9947, "n_centros": 7.7112, "n_events": 460.715, "n_involved": 1.9517, "n_passes": 283.1845, "opt_quality_mean": -0.005, "paredes": 31.6141, "pass_options_mean": 6.6842, "passes_behind_line": 0.0773, "pct_adentro": 0.4955, "pct_afuera": 0.4501, "pct_cortos": 0.4463, "pct_headpass": 0.0437, "pct_largos": 0.1777, "pct_launch": 0.0785, "pct_layoff": 0.0149, "pct_medios": 0.3224, "pct_switch": 0.006, "pct_through": 0.0031, "pct_verticales": 0.4752, "pelotazos_espalda": 0.0635, "press_final": 1.9895, "press_media": 1.4482, "prog_x": 44.0985, "start_x": 30.6845, "starts_from_dispossess": 0.039, "takeons_ok": 3.3056, "tempo": 0.3405, "transition_speed": 2.3389, "verticalidad_media": 0.301}, "Lech Poznań": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1161, "dang_runs": 0.0, "deep_completions": 92.0, "def_h": NaN, "dribbles_box": 3.0, "dribbles_last_third": 22.0, "duration_s": 5830.0, "hold_max": 132.0, "hold_mean": 3.3744, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 36.0, "n_events": 1786.0, "n_involved": NaN, "n_passes": 958.0, "opt_quality_mean": NaN, "paredes": 65.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5428, "pct_afuera": 0.4572, "pct_cortos": 0.4541, "pct_headpass": 0.0449, "pct_largos": 0.1284, "pct_launch": 0.0397, "pct_layoff": 0.0157, "pct_medios": 0.4175, "pct_switch": 0.0104, "pct_through": 0.0042, "pct_verticales": 0.4311, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 17.0, "tempo": 0.1643, "transition_speed": 0.0172, "verticalidad_media": 0.2257}, "Liverpool": {"atk_l": 40.1525, "atk_w": 31.5044, "ball_distance": 147.3927, "behind_line_ok": 0.058, "broke_last_line": 0.046, "broke_second_last": 0.2353, "cross_pvadded_max": 0.0022, "dang_runs": 0.258, "deep_completions": 0.5119, "def_h": 29.3297, "dribbles_box": 0.0198, "dribbles_last_third": 0.1162, "duration_s": 29.9837, "hold_max": 10.12, "hold_mean": 5.6764, "hold_min": 3.3288, "line_breaks": 0.9838, "max_x": 71.4404, "n_centros": 0.1349, "n_events": 6.2826, "n_involved": 1.9961, "n_passes": 3.7895, "opt_quality_mean": 0.2026, "paredes": 0.3886, "pass_options_mean": 9.1632, "passes_behind_line": 0.1151, "pct_adentro": 0.5178, "pct_afuera": 0.3953, "pct_cortos": 0.4488, "pct_headpass": 0.0486, "pct_largos": 0.1852, "pct_launch": 0.0688, "pct_layoff": 0.0125, "pct_medios": 0.28, "pct_switch": 0.0073, "pct_through": 0.0072, "pct_verticales": 0.4361, "pelotazos_espalda": 0.0712, "press_final": 2.8047, "press_media": 2.0372, "prog_x": 23.8312, "start_x": 49.2682, "starts_from_dispossess": 0.0498, "takeons_ok": 0.0687, "tempo": 0.402, "transition_speed": 3.1081, "verticalidad_media": 0.276}, "Ludogorets Razgrad": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1206, "dang_runs": 0.0, "deep_completions": 65.0, "def_h": NaN, "dribbles_box": 5.0, "dribbles_last_third": 14.0, "duration_s": 5583.0, "hold_max": 138.0, "hold_mean": 3.9304, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 35.0, "n_events": 1453.0, "n_involved": NaN, "n_passes": 836.0, "opt_quality_mean": NaN, "paredes": 91.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5467, "pct_afuera": 0.4522, "pct_cortos": 0.4031, "pct_headpass": 0.0467, "pct_largos": 0.1483, "pct_launch": 0.0347, "pct_layoff": 0.0084, "pct_medios": 0.4486, "pct_switch": 0.0096, "pct_through": 0.0, "pct_verticales": 0.3852, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 11.0, "tempo": 0.1497, "transition_speed": 0.0179, "verticalidad_media": 0.1898}, "Manchester City": {"atk_l": 43.3962, "atk_w": 29.6369, "ball_distance": 310.9961, "behind_line_ok": 0.0814, "broke_last_line": 0.0419, "broke_second_last": 0.2598, "cross_pvadded_max": 0.0018, "dang_runs": 0.2729, "deep_completions": 0.6776, "def_h": 29.7831, "dribbles_box": 0.0428, "dribbles_last_third": 0.1364, "duration_s": 32.5884, "hold_max": 9.948, "hold_mean": 5.2445, "hold_min": 2.8664, "line_breaks": 1.6246, "max_x": 71.3902, "n_centros": 0.128, "n_events": 7.3115, "n_involved": 2.2539, "n_passes": 5.101, "opt_quality_mean": 0.2661, "paredes": 0.6731, "pass_options_mean": 9.2541, "passes_behind_line": 0.1233, "pct_adentro": 0.5, "pct_afuera": 0.3962, "pct_cortos": 0.5029, "pct_headpass": 0.0327, "pct_largos": 0.12, "pct_launch": 0.0306, "pct_layoff": 0.0104, "pct_medios": 0.2739, "pct_switch": 0.0041, "pct_through": 0.0128, "pct_verticales": 0.3667, "pelotazos_espalda": 0.0607, "press_final": 2.7774, "press_media": 2.0274, "prog_x": 23.2152, "start_x": 49.5471, "starts_from_dispossess": 0.0506, "takeons_ok": 0.0999, "tempo": 0.3418, "transition_speed": 2.1157, "verticalidad_media": 0.2013}, "Monaco": {"atk_l": 40.5687, "atk_w": 32.4104, "ball_distance": 115.9396, "behind_line_ok": 0.044, "broke_last_line": 0.0404, "broke_second_last": 0.183, "cross_pvadded_max": 0.0016, "dang_runs": 0.1509, "deep_completions": 0.3659, "def_h": 33.5913, "dribbles_box": 0.0106, "dribbles_last_third": 0.0504, "duration_s": 22.8224, "hold_max": 10.8907, "hold_mean": 6.2104, "hold_min": 3.7299, "line_breaks": 0.9078, "max_x": 65.9297, "n_centros": 0.0976, "n_events": 5.2785, "n_involved": 1.8584, "n_passes": 3.1988, "opt_quality_mean": 0.0026, "paredes": 0.2949, "pass_options_mean": 9.0618, "passes_behind_line": 0.1159, "pct_adentro": 0.5045, "pct_afuera": 0.4042, "pct_cortos": 0.4374, "pct_headpass": 0.0335, "pct_largos": 0.1932, "pct_launch": 0.078, "pct_layoff": 0.0149, "pct_medios": 0.2793, "pct_switch": 0.007, "pct_through": 0.004, "pct_verticales": 0.4817, "pelotazos_espalda": 0.0892, "press_final": 2.7479, "press_media": 1.9472, "prog_x": 24.6065, "start_x": 42.4404, "starts_from_dispossess": 0.057, "takeons_ok": 0.0644, "tempo": 0.3939, "transition_speed": 3.6164, "verticalidad_media": 0.3211}, "Napoli": {"atk_l": 43.3519, "atk_w": 31.0333, "ball_distance": 232.8457, "behind_line_ok": 0.0661, "broke_last_line": 0.0437, "broke_second_last": 0.2437, "cross_pvadded_max": 0.0028, "dang_runs": 0.2507, "deep_completions": 0.4928, "def_h": 32.0828, "dribbles_box": 0.0223, "dribbles_last_third": 0.093, "duration_s": 22.5239, "hold_max": 10.7735, "hold_mean": 5.5384, "hold_min": 3.1784, "line_breaks": 1.1011, "max_x": 69.4623, "n_centros": 0.1541, "n_events": 6.2836, "n_involved": 2.1948, "n_passes": 4.5452, "opt_quality_mean": 0.1576, "paredes": 0.4968, "pass_options_mean": 9.5115, "passes_behind_line": 0.1284, "pct_adentro": 0.4858, "pct_afuera": 0.423, "pct_cortos": 0.4371, "pct_headpass": 0.0374, "pct_largos": 0.1599, "pct_launch": 0.0506, "pct_layoff": 0.0125, "pct_medios": 0.313, "pct_switch": 0.0044, "pct_through": 0.006, "pct_verticales": 0.412, "pelotazos_espalda": 0.0803, "press_final": 2.8328, "press_media": 1.9499, "prog_x": 24.7987, "start_x": 45.6707, "starts_from_dispossess": 0.0545, "takeons_ok": 0.0584, "tempo": 0.3877, "transition_speed": 2.7603, "verticalidad_media": 0.2393}, "Newcastle United": {"atk_l": 41.0086, "atk_w": 31.4892, "ball_distance": 141.7749, "behind_line_ok": 0.0533, "broke_last_line": 0.0484, "broke_second_last": 0.1756, "cross_pvadded_max": 0.0022, "dang_runs": 0.222, "deep_completions": 0.3732, "def_h": 31.8602, "dribbles_box": 0.0104, "dribbles_last_third": 0.056, "duration_s": 28.8495, "hold_max": 10.7879, "hold_mean": 6.3419, "hold_min": 3.8168, "line_breaks": 0.8714, "max_x": 67.4568, "n_centros": 0.1273, "n_events": 5.9381, "n_involved": 1.9922, "n_passes": 3.4185, "opt_quality_mean": 0.0727, "paredes": 0.3225, "pass_options_mean": 9.0391, "passes_behind_line": 0.1281, "pct_adentro": 0.4931, "pct_afuera": 0.4158, "pct_cortos": 0.4289, "pct_headpass": 0.0464, "pct_largos": 0.1827, "pct_launch": 0.0646, "pct_layoff": 0.009, "pct_medios": 0.2991, "pct_switch": 0.0064, "pct_through": 0.0041, "pct_verticales": 0.4215, "pelotazos_espalda": 0.0862, "press_final": 2.6418, "press_media": 1.952, "prog_x": 22.232, "start_x": 46.1547, "starts_from_dispossess": 0.0479, "takeons_ok": 0.052, "tempo": 0.3846, "transition_speed": 2.8131, "verticalidad_media": 0.2822}, "Nice": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.0769, "dang_runs": 0.0, "deep_completions": 83.0, "def_h": NaN, "dribbles_box": 4.0, "dribbles_last_third": 22.0, "duration_s": 5648.0, "hold_max": 88.0, "hold_mean": 3.5387, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 21.0, "n_events": 1632.0, "n_involved": NaN, "n_passes": 979.0, "opt_quality_mean": NaN, "paredes": 120.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5169, "pct_afuera": 0.4821, "pct_cortos": 0.5097, "pct_headpass": 0.0347, "pct_largos": 0.1113, "pct_launch": 0.0286, "pct_layoff": 0.0133, "pct_medios": 0.379, "pct_switch": 0.001, "pct_through": 0.0, "pct_verticales": 0.3749, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 20.0, "tempo": 0.1733, "transition_speed": 0.0177, "verticalidad_media": 0.1467}, "Olympiakos Piraeus": {"atk_l": 40.5237, "atk_w": 31.9091, "ball_distance": 116.6408, "behind_line_ok": 0.0595, "broke_last_line": 0.0353, "broke_second_last": 0.1463, "cross_pvadded_max": 0.0015, "dang_runs": 0.1478, "deep_completions": 0.3588, "def_h": 28.413, "dribbles_box": 0.0128, "dribbles_last_third": 0.0607, "duration_s": 18.9471, "hold_max": 9.5037, "hold_mean": 5.7468, "hold_min": 3.5416, "line_breaks": 0.5756, "max_x": 71.65, "n_centros": 0.1641, "n_events": 4.5894, "n_involved": 1.7359, "n_passes": 2.8113, "opt_quality_mean": 0.0613, "paredes": 0.1995, "pass_options_mean": 9.2344, "passes_behind_line": 0.1485, "pct_adentro": 0.4955, "pct_afuera": 0.4262, "pct_cortos": 0.3767, "pct_headpass": 0.057, "pct_largos": 0.217, "pct_launch": 0.1028, "pct_layoff": 0.0084, "pct_medios": 0.3292, "pct_switch": 0.0054, "pct_through": 0.0026, "pct_verticales": 0.4979, "pelotazos_espalda": 0.1089, "press_final": 2.5115, "press_media": 1.7986, "prog_x": 24.1527, "start_x": 48.1222, "starts_from_dispossess": 0.0385, "takeons_ok": 0.059, "tempo": 0.3993, "transition_speed": 3.9512, "verticalidad_media": 0.346}, "Olympique Marseille": {"atk_l": 45.7211, "atk_w": 32.5447, "ball_distance": 195.1821, "behind_line_ok": 0.0385, "broke_last_line": 0.0214, "broke_second_last": 0.2223, "cross_pvadded_max": 0.0009, "dang_runs": 0.2047, "deep_completions": 0.3476, "def_h": 33.6567, "dribbles_box": 0.0129, "dribbles_last_third": 0.0565, "duration_s": 26.2861, "hold_max": 10.3278, "hold_mean": 5.4428, "hold_min": 2.8885, "line_breaks": 1.3444, "max_x": 64.7459, "n_centros": 0.119, "n_events": 6.3538, "n_involved": 2.1971, "n_passes": 4.2845, "opt_quality_mean": 0.0226, "paredes": 0.4785, "pass_options_mean": 8.9923, "passes_behind_line": 0.1157, "pct_adentro": 0.4949, "pct_afuera": 0.4374, "pct_cortos": 0.4684, "pct_headpass": 0.0387, "pct_largos": 0.1547, "pct_launch": 0.0571, "pct_layoff": 0.0193, "pct_medios": 0.3098, "pct_switch": 0.0042, "pct_through": 0.0029, "pct_verticales": 0.4562, "pelotazos_espalda": 0.0821, "press_final": 2.5803, "press_media": 1.8199, "prog_x": 23.1674, "start_x": 42.7075, "starts_from_dispossess": 0.051, "takeons_ok": 0.0396, "tempo": 0.4025, "transition_speed": 2.977, "verticalidad_media": 0.2948}, "PSV": {"atk_l": 43.6651, "atk_w": 30.7353, "ball_distance": 148.7881, "behind_line_ok": 0.0418, "broke_last_line": 0.045, "broke_second_last": 0.2199, "cross_pvadded_max": 0.0009, "dang_runs": 0.1463, "deep_completions": 0.3716, "def_h": 33.3368, "dribbles_box": 0.0122, "dribbles_last_third": 0.0606, "duration_s": 44.646, "hold_max": 10.1468, "hold_mean": 5.6139, "hold_min": 3.3015, "line_breaks": 0.8201, "max_x": 65.3096, "n_centros": 0.1332, "n_events": 7.3173, "n_involved": 1.9907, "n_passes": 3.6822, "opt_quality_mean": 0.0278, "paredes": 0.3155, "pass_options_mean": 9.4949, "passes_behind_line": 0.1089, "pct_adentro": 0.492, "pct_afuera": 0.4408, "pct_cortos": 0.4258, "pct_headpass": 0.0463, "pct_largos": 0.2076, "pct_launch": 0.0766, "pct_layoff": 0.0192, "pct_medios": 0.3016, "pct_switch": 0.0043, "pct_through": 0.0051, "pct_verticales": 0.4557, "pelotazos_espalda": 0.0775, "press_final": 2.4298, "press_media": 1.8377, "prog_x": 23.855, "start_x": 42.3588, "starts_from_dispossess": 0.0387, "takeons_ok": 0.0703, "tempo": 0.4129, "transition_speed": 3.0341, "verticalidad_media": 0.2652}, "Pafos": {"atk_l": 40.3491, "atk_w": 32.9059, "ball_distance": 95.1335, "behind_line_ok": 0.0227, "broke_last_line": 0.017, "broke_second_last": 0.0778, "cross_pvadded_max": 0.0331, "dang_runs": 0.0703, "deep_completions": 21.136, "def_h": 37.4379, "dribbles_box": 0.8038, "dribbles_last_third": 3.327, "duration_s": 1200.2258, "hold_max": 35.0592, "hold_mean": 5.9059, "hold_min": 3.0071, "line_breaks": 0.5011, "max_x": 68.6356, "n_centros": 10.365, "n_events": 316.8671, "n_involved": 1.8821, "n_passes": 164.3338, "opt_quality_mean": -0.1364, "paredes": 13.5817, "pass_options_mean": 7.3775, "passes_behind_line": 0.114, "pct_adentro": 0.4935, "pct_afuera": 0.4396, "pct_cortos": 0.3801, "pct_headpass": 0.0401, "pct_largos": 0.2263, "pct_launch": 0.1076, "pct_layoff": 0.0104, "pct_medios": 0.3274, "pct_switch": 0.0071, "pct_through": 0.0017, "pct_verticales": 0.4947, "pelotazos_espalda": 0.099, "press_final": 2.2289, "press_media": 1.4829, "prog_x": 40.0702, "start_x": 29.3335, "starts_from_dispossess": 0.0421, "takeons_ok": 3.2342, "tempo": 0.3602, "transition_speed": 3.3602, "verticalidad_media": 0.344}, "Panathinaikos": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.2451, "dang_runs": 0.0, "deep_completions": 91.0, "def_h": NaN, "dribbles_box": 1.0, "dribbles_last_third": 13.0, "duration_s": 5700.0, "hold_max": 188.0, "hold_mean": 3.6969, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 41.0, "n_events": 1602.0, "n_involved": NaN, "n_passes": 878.0, "opt_quality_mean": NaN, "paredes": 80.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5569, "pct_afuera": 0.4396, "pct_cortos": 0.4658, "pct_headpass": 0.0456, "pct_largos": 0.156, "pct_launch": 0.041, "pct_layoff": 0.0205, "pct_medios": 0.3781, "pct_switch": 0.0068, "pct_through": 0.0011, "pct_verticales": 0.3918, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 12.0, "tempo": 0.154, "transition_speed": 0.0175, "verticalidad_media": 0.1542}, "Paris Saint-Germain": {"atk_l": 44.0991, "atk_w": 32.223, "ball_distance": 278.7503, "behind_line_ok": 0.0695, "broke_last_line": 0.0521, "broke_second_last": 0.2266, "cross_pvadded_max": 0.0008, "dang_runs": 0.318, "deep_completions": 0.5604, "def_h": 32.3233, "dribbles_box": 0.0216, "dribbles_last_third": 0.0873, "duration_s": 35.643, "hold_max": 10.1583, "hold_mean": 5.3365, "hold_min": 3.0503, "line_breaks": 1.5531, "max_x": 67.6639, "n_centros": 0.0948, "n_events": 7.4689, "n_involved": 2.2275, "n_passes": 4.9805, "opt_quality_mean": 0.1259, "paredes": 0.5577, "pass_options_mean": 8.869, "passes_behind_line": 0.1384, "pct_adentro": 0.4788, "pct_afuera": 0.4211, "pct_cortos": 0.4323, "pct_headpass": 0.0316, "pct_largos": 0.1551, "pct_launch": 0.0565, "pct_layoff": 0.0148, "pct_medios": 0.313, "pct_switch": 0.0082, "pct_through": 0.006, "pct_verticales": 0.3965, "pelotazos_espalda": 0.0884, "press_final": 2.5609, "press_media": 1.8928, "prog_x": 22.8033, "start_x": 46.0587, "starts_from_dispossess": 0.0501, "takeons_ok": 0.0741, "tempo": 0.3716, "transition_speed": 2.3013, "verticalidad_media": 0.2222}, "Qarabağ": {"atk_l": 41.2377, "atk_w": 33.8413, "ball_distance": 129.1803, "behind_line_ok": 0.0405, "broke_last_line": 0.0268, "broke_second_last": 0.0978, "cross_pvadded_max": 0.0229, "dang_runs": 0.1588, "deep_completions": 6.7702, "def_h": 34.6522, "dribbles_box": 0.1891, "dribbles_last_third": 1.2278, "duration_s": 550.6209, "hold_max": 21.0339, "hold_mean": 6.1065, "hold_min": 3.2131, "line_breaks": 0.7557, "max_x": 65.5725, "n_centros": 2.8884, "n_events": 141.5591, "n_involved": 1.8754, "n_passes": 71.7153, "opt_quality_mean": -0.0792, "paredes": 7.7667, "pass_options_mean": 8.2553, "passes_behind_line": 0.0989, "pct_adentro": 0.4729, "pct_afuera": 0.4263, "pct_cortos": 0.4044, "pct_headpass": 0.03, "pct_largos": 0.1921, "pct_launch": 0.0663, "pct_layoff": 0.0098, "pct_medios": 0.303, "pct_switch": 0.0044, "pct_through": 0.0085, "pct_verticales": 0.4737, "pelotazos_espalda": 0.0655, "press_final": 2.4242, "press_media": 1.6669, "prog_x": 30.278, "start_x": 36.5434, "starts_from_dispossess": 0.0408, "takeons_ok": 1.3293, "tempo": 0.3612, "transition_speed": 3.243, "verticalidad_media": 0.3217}, "Rangers": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.2045, "dang_runs": 0.0, "deep_completions": 112.6667, "def_h": NaN, "dribbles_box": 4.3333, "dribbles_last_third": 24.6667, "duration_s": 5791.3333, "hold_max": 94.6667, "hold_mean": 3.5768, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 40.3333, "n_events": 1656.0, "n_involved": NaN, "n_passes": 969.0, "opt_quality_mean": NaN, "paredes": 109.3333, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.536, "pct_afuera": 0.4626, "pct_cortos": 0.4921, "pct_headpass": 0.0403, "pct_largos": 0.125, "pct_launch": 0.0319, "pct_layoff": 0.025, "pct_medios": 0.3829, "pct_switch": 0.0059, "pct_through": 0.0028, "pct_verticales": 0.4143, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 16.3333, "tempo": 0.1673, "transition_speed": 0.0173, "verticalidad_media": 0.1673}, "Real Madrid": {"atk_l": 43.6451, "atk_w": 32.8418, "ball_distance": 243.8135, "behind_line_ok": 0.085, "broke_last_line": 0.0504, "broke_second_last": 0.2227, "cross_pvadded_max": 0.0014, "dang_runs": 0.2604, "deep_completions": 0.4716, "def_h": 33.0913, "dribbles_box": 0.0294, "dribbles_last_third": 0.1029, "duration_s": 35.1254, "hold_max": 10.74, "hold_mean": 5.676, "hold_min": 3.3109, "line_breaks": 1.5235, "max_x": 67.5359, "n_centros": 0.097, "n_events": 7.1102, "n_involved": 2.172, "n_passes": 4.4078, "opt_quality_mean": 0.0427, "paredes": 0.4101, "pass_options_mean": 9.1034, "passes_behind_line": 0.157, "pct_adentro": 0.4663, "pct_afuera": 0.4413, "pct_cortos": 0.3832, "pct_headpass": 0.0292, "pct_largos": 0.184, "pct_launch": 0.0587, "pct_layoff": 0.008, "pct_medios": 0.3412, "pct_switch": 0.0138, "pct_through": 0.0083, "pct_verticales": 0.4308, "pelotazos_espalda": 0.0881, "press_final": 2.7033, "press_media": 1.8785, "prog_x": 26.2838, "start_x": 43.0073, "starts_from_dispossess": 0.0528, "takeons_ok": 0.0854, "tempo": 0.3635, "transition_speed": 3.0894, "verticalidad_media": 0.2846}, "Salzburg": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1281, "dang_runs": 0.0, "deep_completions": 106.0, "def_h": NaN, "dribbles_box": 6.0, "dribbles_last_third": 15.0, "duration_s": 5721.0, "hold_max": 90.0, "hold_mean": 3.3667, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 33.0, "n_events": 1720.0, "n_involved": NaN, "n_passes": 1082.0, "opt_quality_mean": NaN, "paredes": 128.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5342, "pct_afuera": 0.464, "pct_cortos": 0.4205, "pct_headpass": 0.0407, "pct_largos": 0.1183, "pct_launch": 0.025, "pct_layoff": 0.0222, "pct_medios": 0.4612, "pct_switch": 0.0055, "pct_through": 0.0018, "pct_verticales": 0.402, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 13.0, "tempo": 0.1891, "transition_speed": 0.0175, "verticalidad_media": 0.1662}, "Servette": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1024, "dang_runs": 0.0, "deep_completions": 121.5, "def_h": NaN, "dribbles_box": 2.0, "dribbles_last_third": 18.5, "duration_s": 5792.5, "hold_max": 72.0, "hold_mean": 3.4364, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 48.0, "n_events": 1710.5, "n_involved": NaN, "n_passes": 900.5, "opt_quality_mean": NaN, "paredes": 85.5, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5363, "pct_afuera": 0.4615, "pct_cortos": 0.4257, "pct_headpass": 0.0912, "pct_largos": 0.1772, "pct_launch": 0.0423, "pct_layoff": 0.0212, "pct_medios": 0.3971, "pct_switch": 0.0077, "pct_through": 0.0011, "pct_verticales": 0.4601, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 10.5, "tempo": 0.1555, "transition_speed": 0.0173, "verticalidad_media": 0.2655}, "Slavia Praha": {"atk_l": 40.3401, "atk_w": 31.6622, "ball_distance": 90.7014, "behind_line_ok": 0.0463, "broke_last_line": 0.0421, "broke_second_last": 0.159, "cross_pvadded_max": 0.0022, "dang_runs": 0.1413, "deep_completions": 0.3935, "def_h": 31.4008, "dribbles_box": 0.008, "dribbles_last_third": 0.0482, "duration_s": 30.2344, "hold_max": 9.8802, "hold_mean": 5.5206, "hold_min": 3.1953, "line_breaks": 0.4822, "max_x": 67.3757, "n_centros": 0.1219, "n_events": 5.7345, "n_involved": 1.8264, "n_passes": 2.6904, "opt_quality_mean": 0.04, "paredes": 0.2141, "pass_options_mean": 9.3719, "passes_behind_line": 0.1059, "pct_adentro": 0.4693, "pct_afuera": 0.4314, "pct_cortos": 0.4182, "pct_headpass": 0.0497, "pct_largos": 0.1815, "pct_launch": 0.1046, "pct_layoff": 0.0123, "pct_medios": 0.3011, "pct_switch": 0.0039, "pct_through": 0.0011, "pct_verticales": 0.5038, "pelotazos_espalda": 0.072, "press_final": 2.8022, "press_media": 1.9981, "prog_x": 23.1748, "start_x": 44.9652, "starts_from_dispossess": 0.047, "takeons_ok": 0.0273, "tempo": 0.4422, "transition_speed": 4.3141, "verticalidad_media": 0.377}, "Slovan Bratislava": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1242, "dang_runs": 0.0, "deep_completions": 67.0, "def_h": NaN, "dribbles_box": 0.0, "dribbles_last_third": 13.0, "duration_s": 5762.0, "hold_max": 94.0, "hold_mean": 3.8854, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 26.0, "n_events": 1485.0, "n_involved": NaN, "n_passes": 776.0, "opt_quality_mean": NaN, "paredes": 67.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.518, "pct_afuera": 0.4807, "pct_cortos": 0.4613, "pct_headpass": 0.0928, "pct_largos": 0.1546, "pct_launch": 0.0464, "pct_layoff": 0.0155, "pct_medios": 0.384, "pct_switch": 0.009, "pct_through": 0.0026, "pct_verticales": 0.4742, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 10.0, "tempo": 0.1347, "transition_speed": 0.0174, "verticalidad_media": 0.2921}, "Sporting CP": {"atk_l": 43.9782, "atk_w": 32.3815, "ball_distance": 182.015, "behind_line_ok": 0.0562, "broke_last_line": 0.0411, "broke_second_last": 0.1905, "cross_pvadded_max": 0.0007, "dang_runs": 0.2385, "deep_completions": 0.327, "def_h": 35.586, "dribbles_box": 0.0182, "dribbles_last_third": 0.079, "duration_s": 44.8884, "hold_max": 10.3508, "hold_mean": 5.3231, "hold_min": 2.8885, "line_breaks": 0.9446, "max_x": 63.435, "n_centros": 0.0987, "n_events": 7.3257, "n_involved": 2.1083, "n_passes": 3.976, "opt_quality_mean": -0.0167, "paredes": 0.4289, "pass_options_mean": 9.1549, "passes_behind_line": 0.1146, "pct_adentro": 0.4726, "pct_afuera": 0.4146, "pct_cortos": 0.4549, "pct_headpass": 0.035, "pct_largos": 0.1311, "pct_launch": 0.0341, "pct_layoff": 0.0136, "pct_medios": 0.303, "pct_switch": 0.004, "pct_through": 0.0041, "pct_verticales": 0.4115, "pelotazos_espalda": 0.0731, "press_final": 2.8019, "press_media": 2.0025, "prog_x": 23.8329, "start_x": 40.9351, "starts_from_dispossess": 0.0719, "takeons_ok": 0.0602, "tempo": 0.3811, "transition_speed": 2.9371, "verticalidad_media": 0.2688}, "Sturm Graz": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1664, "dang_runs": 0.0, "deep_completions": 96.0, "def_h": NaN, "dribbles_box": 3.0, "dribbles_last_third": 17.0, "duration_s": 5580.0, "hold_max": 77.0, "hold_mean": 3.4118, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 30.0, "n_events": 1646.0, "n_involved": NaN, "n_passes": 939.0, "opt_quality_mean": NaN, "paredes": 110.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5506, "pct_afuera": 0.4473, "pct_cortos": 0.4878, "pct_headpass": 0.0383, "pct_largos": 0.1161, "pct_launch": 0.033, "pct_layoff": 0.0149, "pct_medios": 0.3962, "pct_switch": 0.0117, "pct_through": 0.0053, "pct_verticales": 0.4079, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 15.0, "tempo": 0.1683, "transition_speed": 0.0179, "verticalidad_media": 0.177}, "Tottenham Hotspur": {"atk_l": 41.7934, "atk_w": 31.2795, "ball_distance": 171.7063, "behind_line_ok": 0.0466, "broke_last_line": 0.0353, "broke_second_last": 0.1696, "cross_pvadded_max": 0.0015, "dang_runs": 0.1824, "deep_completions": 0.3848, "def_h": 31.0384, "dribbles_box": 0.019, "dribbles_last_third": 0.0841, "duration_s": 30.111, "hold_max": 11.4424, "hold_mean": 6.5299, "hold_min": 3.9676, "line_breaks": 0.7399, "max_x": 67.9704, "n_centros": 0.1222, "n_events": 6.1228, "n_involved": 1.939, "n_passes": 3.5106, "opt_quality_mean": 0.1143, "paredes": 0.3204, "pass_options_mean": 9.254, "passes_behind_line": 0.1073, "pct_adentro": 0.4916, "pct_afuera": 0.411, "pct_cortos": 0.3944, "pct_headpass": 0.0415, "pct_largos": 0.1877, "pct_launch": 0.0667, "pct_layoff": 0.0101, "pct_medios": 0.3223, "pct_switch": 0.01, "pct_through": 0.003, "pct_verticales": 0.4303, "pelotazos_espalda": 0.0771, "press_final": 2.6008, "press_media": 1.9946, "prog_x": 22.4901, "start_x": 46.4994, "starts_from_dispossess": 0.0574, "takeons_ok": 0.0821, "tempo": 0.3501, "transition_speed": 2.7035, "verticalidad_media": 0.2734}, "Union Saint-Gilloise": {"atk_l": 42.7621, "atk_w": 31.317, "ball_distance": 103.3698, "behind_line_ok": 0.0431, "broke_last_line": 0.0366, "broke_second_last": 0.1653, "cross_pvadded_max": 0.0017, "dang_runs": 0.1326, "deep_completions": 0.2482, "def_h": 35.3162, "dribbles_box": 0.0154, "dribbles_last_third": 0.0682, "duration_s": 17.8853, "hold_max": 9.2908, "hold_mean": 5.2382, "hold_min": 2.8564, "line_breaks": 0.6715, "max_x": 65.5557, "n_centros": 0.0877, "n_events": 4.8198, "n_involved": 1.8062, "n_passes": 2.8377, "opt_quality_mean": -0.038, "paredes": 0.2314, "pass_options_mean": 9.5125, "passes_behind_line": 0.1137, "pct_adentro": 0.4569, "pct_afuera": 0.4308, "pct_cortos": 0.3943, "pct_headpass": 0.039, "pct_largos": 0.1994, "pct_launch": 0.0842, "pct_layoff": 0.0095, "pct_medios": 0.2948, "pct_switch": 0.0052, "pct_through": 0.0038, "pct_verticales": 0.501, "pelotazos_espalda": 0.0943, "press_final": 2.7876, "press_media": 1.8875, "prog_x": 25.1295, "start_x": 41.8605, "starts_from_dispossess": 0.0555, "takeons_ok": 0.0589, "tempo": 0.3708, "transition_speed": 3.8318, "verticalidad_media": 0.3793}, "Villarreal": {"atk_l": 43.1436, "atk_w": 32.0773, "ball_distance": 140.027, "behind_line_ok": 0.0495, "broke_last_line": 0.0357, "broke_second_last": 0.1646, "cross_pvadded_max": 0.0018, "dang_runs": 0.1963, "deep_completions": 0.3766, "def_h": 33.0613, "dribbles_box": 0.0143, "dribbles_last_third": 0.0745, "duration_s": 26.8026, "hold_max": 10.4219, "hold_mean": 5.5452, "hold_min": 2.783, "line_breaks": 0.6829, "max_x": 67.1759, "n_centros": 0.1075, "n_events": 5.5595, "n_involved": 1.967, "n_passes": 3.3849, "opt_quality_mean": 0.0666, "paredes": 0.2832, "pass_options_mean": 9.4457, "passes_behind_line": 0.1274, "pct_adentro": 0.5115, "pct_afuera": 0.3975, "pct_cortos": 0.4199, "pct_headpass": 0.0317, "pct_largos": 0.1802, "pct_launch": 0.0594, "pct_layoff": 0.0105, "pct_medios": 0.3092, "pct_switch": 0.0102, "pct_through": 0.0042, "pct_verticales": 0.4315, "pelotazos_espalda": 0.0976, "press_final": 2.7077, "press_media": 1.8138, "prog_x": 24.8288, "start_x": 43.3753, "starts_from_dispossess": 0.0459, "takeons_ok": 0.0586, "tempo": 0.3912, "transition_speed": 3.3477, "verticalidad_media": 0.2933}}, "team_eje_norm_gen": {"Ajax": {"eje_verticalidad": -0.0755, "eje_elaboracion": -0.0123, "eje_individual": -0.0319, "eje_rotura_lineas": -0.0146, "eje_amplitud_centro": 0.03, "eje_profundidad_espalda": 0.0209, "eje_robo_alto": -0.0476, "eje_aereo_segunda": -0.0126}, "Arsenal": {"eje_verticalidad": 0.0212, "eje_elaboracion": -0.0286, "eje_individual": -0.009, "eje_rotura_lineas": 0.0268, "eje_amplitud_centro": -0.0335, "eje_profundidad_espalda": 0.0277, "eje_robo_alto": 0.0631, "eje_aereo_segunda": 0.0222}, "Atalanta": {"eje_verticalidad": 0.0106, "eje_elaboracion": -0.0324, "eje_individual": -0.0466, "eje_rotura_lineas": -0.0196, "eje_amplitud_centro": 0.0079, "eje_profundidad_espalda": -0.057, "eje_robo_alto": -0.0636, "eje_aereo_segunda": 0.0258}, "Athletic Club": {"eje_verticalidad": 0.102, "eje_elaboracion": -0.0798, "eje_individual": -0.0589, "eje_rotura_lineas": -0.053, "eje_amplitud_centro": -0.0412, "eje_profundidad_espalda": -0.0106, "eje_robo_alto": 0.0218, "eje_aereo_segunda": 0.0692}, "Atlético de Madrid": {"eje_verticalidad": -0.0475, "eje_elaboracion": -0.0171, "eje_individual": -0.021, "eje_rotura_lineas": 0.0144, "eje_amplitud_centro": -0.0091, "eje_profundidad_espalda": 0.0192, "eje_robo_alto": -0.0248, "eje_aereo_segunda": -0.015}, "Barcelona": {"eje_verticalidad": -0.1056, "eje_elaboracion": 0.0035, "eje_individual": 0.0206, "eje_rotura_lineas": 0.0402, "eje_amplitud_centro": -0.039, "eje_profundidad_espalda": -0.0322, "eje_robo_alto": 0.0305, "eje_aereo_segunda": -0.0261}, "Basel": {"eje_verticalidad": -0.2978, "eje_elaboracion": 25.4939, "eje_individual": 18.4372, "eje_rotura_lineas": -0.2197, "eje_amplitud_centro": 8.9096, "eje_profundidad_espalda": 9.0931, "eje_robo_alto": -0.9463, "eje_aereo_segunda": -0.0467}, "Bayer Leverkusen": {"eje_verticalidad": -0.0943, "eje_elaboracion": 0.0363, "eje_individual": -0.0301, "eje_rotura_lineas": 0.0398, "eje_amplitud_centro": -0.0129, "eje_profundidad_espalda": -0.0189, "eje_robo_alto": -0.0759, "eje_aereo_segunda": -0.0265}, "Bayern München": {"eje_verticalidad": -0.0956, "eje_elaboracion": 0.0368, "eje_individual": 0.0486, "eje_rotura_lineas": 0.1002, "eje_amplitud_centro": -0.0014, "eje_profundidad_espalda": 0.0664, "eje_robo_alto": 0.0657, "eje_aereo_segunda": -0.0523}, "Benfica": {"eje_verticalidad": -0.0447, "eje_elaboracion": 2.174, "eje_individual": 1.2804, "eje_rotura_lineas": -0.0552, "eje_amplitud_centro": 1.0152, "eje_profundidad_espalda": 0.7928, "eje_robo_alto": -0.0562, "eje_aereo_segunda": -0.0168}, "Bodø / Glimt": {"eje_verticalidad": -0.0007, "eje_elaboracion": 1.82, "eje_individual": 2.0716, "eje_rotura_lineas": -0.0859, "eje_amplitud_centro": 0.6035, "eje_profundidad_espalda": 0.8066, "eje_robo_alto": -0.1263, "eje_aereo_segunda": 0.0124}, "Borussia Dortmund": {"eje_verticalidad": -0.0513, "eje_elaboracion": -0.0457, "eje_individual": -0.0244, "eje_rotura_lineas": 0.033, "eje_amplitud_centro": -0.0215, "eje_profundidad_espalda": -0.0095, "eje_robo_alto": 0.0424, "eje_aereo_segunda": -0.0209}, "Brann": {"eje_verticalidad": -0.2627, "eje_elaboracion": 21.1279, "eje_individual": 17.3819, "eje_rotura_lineas": -0.2278, "eje_amplitud_centro": 7.9422, "eje_profundidad_espalda": 7.2142, "eje_robo_alto": -0.9463, "eje_aereo_segunda": 0.0145}, "Celtic": {"eje_verticalidad": -0.2172, "eje_elaboracion": 21.7429, "eje_individual": 22.0385, "eje_rotura_lineas": -0.2329, "eje_amplitud_centro": 11.886, "eje_profundidad_espalda": 7.9133, "eje_robo_alto": -0.9463, "eje_aereo_segunda": 0.0833}, "Chelsea": {"eje_verticalidad": -0.1778, "eje_elaboracion": 0.0322, "eje_individual": -0.0007, "eje_rotura_lineas": 0.0377, "eje_amplitud_centro": -0.0405, "eje_profundidad_espalda": -0.0116, "eje_robo_alto": 0.1111, "eje_aereo_segunda": -0.0167}, "Club Brugge": {"eje_verticalidad": -0.0879, "eje_elaboracion": 3.656, "eje_individual": 4.751, "eje_rotura_lineas": -0.0195, "eje_amplitud_centro": 1.9515, "eje_profundidad_espalda": 2.1132, "eje_robo_alto": -0.2105, "eje_aereo_segunda": -0.0145}, "Drita": {"eje_verticalidad": -0.2467, "eje_elaboracion": 22.2039, "eje_individual": 10.6999, "eje_rotura_lineas": -0.2321, "eje_amplitud_centro": 12.2251, "eje_profundidad_espalda": 7.4327, "eje_robo_alto": -0.9463, "eje_aereo_segunda": 0.0038}, "Eintracht Frankfurt": {"eje_verticalidad": 0.0499, "eje_elaboracion": -0.0251, "eje_individual": -0.0399, "eje_rotura_lineas": -0.0536, "eje_amplitud_centro": -0.0428, "eje_profundidad_espalda": 0.021, "eje_robo_alto": -0.0908, "eje_aereo_segunda": 0.0354}, "Fenerbahçe": {"eje_verticalidad": -0.2447, "eje_elaboracion": 20.1886, "eje_individual": 14.9662, "eje_rotura_lineas": -0.2314, "eje_amplitud_centro": 11.8014, "eje_profundidad_espalda": 6.5806, "eje_robo_alto": -0.9463, "eje_aereo_segunda": 0.116}, "Ferencváros": {"eje_verticalidad": -0.151, "eje_elaboracion": 18.7528, "eje_individual": 18.9762, "eje_rotura_lineas": -0.2301, "eje_amplitud_centro": 9.5135, "eje_profundidad_espalda": 7.8478, "eje_robo_alto": -0.9463, "eje_aereo_segunda": 0.0842}, "Galatasaray": {"eje_verticalidad": 0.0324, "eje_elaboracion": -0.0448, "eje_individual": -0.0321, "eje_rotura_lineas": -0.0519, "eje_amplitud_centro": -0.022, "eje_profundidad_espalda": -0.0138, "eje_robo_alto": -0.0211, "eje_aereo_segunda": 0.0876}, "Internazionale": {"eje_verticalidad": -0.145, "eje_elaboracion": 0.0183, "eje_individual": -0.021, "eje_rotura_lineas": 0.017, "eje_amplitud_centro": -0.0333, "eje_profundidad_espalda": -0.0242, "eje_robo_alto": 0.0745, "eje_aereo_segunda": -0.0362}, "Juventus": {"eje_verticalidad": -0.0771, "eje_elaboracion": -0.0176, "eje_individual": -0.0129, "eje_rotura_lineas": -0.0362, "eje_amplitud_centro": -0.0104, "eje_profundidad_espalda": -0.0674, "eje_robo_alto": -0.0163, "eje_aereo_segunda": -0.043}, "Kairat": {"eje_verticalidad": 0.1403, "eje_elaboracion": -0.0575, "eje_individual": -0.0791, "eje_rotura_lineas": -0.0919, "eje_amplitud_centro": 0.0135, "eje_profundidad_espalda": -0.0054, "eje_robo_alto": -0.1451, "eje_aereo_segunda": 0.0794}, "København": {"eje_verticalidad": -0.017, "eje_elaboracion": 6.5341, "eje_individual": 5.635, "eje_rotura_lineas": -0.1034, "eje_amplitud_centro": 2.5363, "eje_profundidad_espalda": 2.2907, "eje_robo_alto": -0.2859, "eje_aereo_segunda": 0.0413}, "Lech Poznań": {"eje_verticalidad": -0.2146, "eje_elaboracion": 18.9826, "eje_individual": 23.18, "eje_rotura_lineas": -0.223, "eje_amplitud_centro": 11.9139, "eje_profundidad_espalda": 7.7822, "eje_robo_alto": -0.9463, "eje_aereo_segunda": -0.0104}, "Liverpool": {"eje_verticalidad": -0.026, "eje_elaboracion": 0.0008, "eje_individual": 0.0259, "eje_rotura_lineas": 0.046, "eje_amplitud_centro": -0.0112, "eje_profundidad_espalda": -0.0088, "eje_robo_alto": 0.0847, "eje_aereo_segunda": 0.0237}, "Ludogorets Razgrad": {"eje_verticalidad": -0.2524, "eje_elaboracion": 19.9186, "eje_individual": 19.3829, "eje_rotura_lineas": -0.2425, "eje_amplitud_centro": 11.5733, "eje_profundidad_espalda": 5.4226, "eje_robo_alto": -0.9463, "eje_aereo_segunda": -0.0573}, "Manchester City": {"eje_verticalidad": -0.2154, "eje_elaboracion": 0.0772, "eje_individual": 0.0887, "eje_rotura_lineas": 0.1227, "eje_amplitud_centro": -0.0327, "eje_profundidad_espalda": 0.0257, "eje_robo_alto": 0.0919, "eje_aereo_segunda": -0.0825}, "Monaco": {"eje_verticalidad": 0.0533, "eje_elaboracion": -0.0257, "eje_individual": -0.0403, "eje_rotura_lineas": -0.0101, "eje_amplitud_centro": -0.0168, "eje_profundidad_espalda": -0.0189, "eje_robo_alto": -0.0258, "eje_aereo_segunda": 0.0177}, "Napoli": {"eje_verticalidad": -0.1034, "eje_elaboracion": 0.0052, "eje_individual": 0.0124, "eje_rotura_lineas": 0.0497, "eje_amplitud_centro": 0.0043, "eje_profundidad_espalda": 0.0154, "eje_robo_alto": 0.0286, "eje_aereo_segunda": -0.0294}, "Newcastle United": {"eje_verticalidad": -0.0505, "eje_elaboracion": -0.0228, "eje_individual": -0.0307, "eje_rotura_lineas": -0.0061, "eje_amplitud_centro": 0.0005, "eje_profundidad_espalda": -0.0029, "eje_robo_alto": 0.0225, "eje_aereo_segunda": -0.0085}, "Nice": {"eje_verticalidad": -0.3156, "eje_elaboracion": 24.0382, "eje_individual": 26.278, "eje_rotura_lineas": -0.2425, "eje_amplitud_centro": 6.9252, "eje_profundidad_espalda": 6.9957, "eje_robo_alto": -0.9463, "eje_aereo_segunda": -0.0641}, "Olympiakos Piraeus": {"eje_verticalidad": 0.1147, "eje_elaboracion": -0.0813, "eje_individual": -0.036, "eje_rotura_lineas": -0.0657, "eje_amplitud_centro": 0.0167, "eje_profundidad_espalda": 0.0371, "eje_robo_alto": 0.0376, "eje_aereo_segunda": 0.0697}, "Olympique Marseille": {"eje_verticalidad": -0.0259, "eje_elaboracion": 0.0245, "eje_individual": -0.0369, "eje_rotura_lineas": 0.0109, "eje_amplitud_centro": 0.0053, "eje_profundidad_espalda": -0.0326, "eje_robo_alto": -0.0345, "eje_aereo_segunda": 0.0237}, "PSV": {"eje_verticalidad": -0.0009, "eje_elaboracion": -0.0126, "eje_individual": -0.0311, "eje_rotura_lineas": 0.0156, "eje_amplitud_centro": 0.0138, "eje_profundidad_espalda": -0.0362, "eje_robo_alto": -0.0692, "eje_aereo_segunda": 0.0698}, "Pafos": {"eje_verticalidad": 0.0995, "eje_elaboracion": 3.4837, "eje_individual": 4.2745, "eje_rotura_lineas": -0.1364, "eje_amplitud_centro": 3.4093, "eje_profundidad_espalda": 1.7822, "eje_robo_alto": -0.3039, "eje_aereo_segunda": 0.0509}, "Panathinaikos": {"eje_verticalidad": -0.2633, "eje_elaboracion": 19.4639, "eje_individual": 13.5441, "eje_rotura_lineas": -0.2372, "eje_amplitud_centro": 13.5255, "eje_profundidad_espalda": 7.6948, "eje_robo_alto": -0.9463, "eje_aereo_segunda": 0.022}, "Paris Saint-Germain": {"eje_verticalidad": -0.1474, "eje_elaboracion": 0.0204, "eje_individual": 0.0307, "eje_rotura_lineas": 0.0811, "eje_amplitud_centro": 0.0065, "eje_profundidad_espalda": 0.0391, "eje_robo_alto": 0.0258, "eje_aereo_segunda": -0.0196}, "Qarabağ": {"eje_verticalidad": 0.0256, "eje_elaboracion": 1.6419, "eje_individual": 1.4272, "eje_rotura_lineas": -0.0643, "eje_amplitud_centro": 0.91, "eje_profundidad_espalda": 0.5038, "eje_robo_alto": -0.1727, "eje_aereo_segunda": -0.038}, "Rangers": {"eje_verticalidad": -0.2646, "eje_elaboracion": 23.0658, "eje_individual": 25.9782, "eje_rotura_lineas": -0.2296, "eje_amplitud_centro": 13.322, "eje_profundidad_espalda": 9.5884, "eje_robo_alto": -0.9463, "eje_aereo_segunda": 0.0232}, "Real Madrid": {"eje_verticalidad": -0.0307, "eje_elaboracion": -0.0317, "eje_individual": 0.0437, "eje_rotura_lineas": 0.0857, "eje_amplitud_centro": 0.0621, "eje_profundidad_espalda": 0.0599, "eje_robo_alto": -0.0248, "eje_aereo_segunda": -0.0621}, "Salzburg": {"eje_verticalidad": -0.2792, "eje_elaboracion": 25.7559, "eje_individual": 22.3848, "eje_rotura_lineas": -0.2339, "eje_amplitud_centro": 10.899, "eje_profundidad_espalda": 9.0057, "eje_robo_alto": -0.9463, "eje_aereo_segunda": -0.0034}, "Servette": {"eje_verticalidad": -0.1309, "eje_elaboracion": 20.212, "eje_individual": 16.6516, "eje_rotura_lineas": -0.2373, "eje_amplitud_centro": 15.8644, "eje_profundidad_espalda": 10.3603, "eje_robo_alto": -0.9463, "eje_aereo_segunda": 0.1302}, "Slavia Praha": {"eje_verticalidad": 0.117, "eje_elaboracion": -0.0459, "eje_individual": -0.0669, "eje_rotura_lineas": -0.063, "eje_amplitud_centro": -0.0019, "eje_profundidad_espalda": -0.0367, "eje_robo_alto": -0.0017, "eje_aereo_segunda": 0.0789}, "Slovan Bratislava": {"eje_verticalidad": -0.123, "eje_elaboracion": 17.3335, "eje_individual": 10.9842, "eje_rotura_lineas": -0.2305, "eje_amplitud_centro": 8.6253, "eje_profundidad_espalda": 5.5974, "eje_robo_alto": -0.9463, "eje_aereo_segunda": 0.1062}, "Sporting CP": {"eje_verticalidad": -0.108, "eje_elaboracion": 0.0201, "eje_individual": -0.0014, "eje_rotura_lineas": -0.0025, "eje_amplitud_centro": -0.0252, "eje_profundidad_espalda": -0.0254, "eje_robo_alto": -0.0198, "eje_aereo_segunda": -0.0532}, "Sturm Graz": {"eje_verticalidad": -0.2703, "eje_elaboracion": 22.6891, "eje_individual": 19.8938, "eje_rotura_lineas": -0.2177, "eje_amplitud_centro": 9.9307, "eje_profundidad_espalda": 8.1318, "eje_robo_alto": -0.9463, "eje_aereo_segunda": -0.0396}, "Tottenham Hotspur": {"eje_verticalidad": -0.0529, "eje_elaboracion": -0.0443, "eje_individual": 0.0028, "eje_rotura_lineas": -0.0402, "eje_amplitud_centro": 0.0167, "eje_profundidad_espalda": -0.0317, "eje_robo_alto": 0.0508, "eje_aereo_segunda": -0.0099}, "Union Saint-Gilloise": {"eje_verticalidad": 0.1045, "eje_elaboracion": -0.067, "eje_individual": -0.032, "eje_rotura_lineas": -0.0416, "eje_amplitud_centro": -0.0051, "eje_profundidad_espalda": -0.0271, "eje_robo_alto": -0.04, "eje_aereo_segunda": 0.0073}, "Villarreal": {"eje_verticalidad": -0.0179, "eje_elaboracion": -0.034, "eje_individual": -0.0184, "eje_rotura_lineas": -0.0407, "eje_amplitud_centro": 0.0, "eje_profundidad_espalda": 0.0032, "eje_robo_alto": -0.0338, "eje_aereo_segunda": -0.0407}}, "team_eje_norm_con": {"Ajax": {"eje_verticalidad": -0.0598, "eje_elaboracion": -0.0079, "eje_individual": -0.0221, "eje_rotura_lineas": 0.005, "eje_amplitud_centro": -0.0144, "eje_profundidad_espalda": 0.0136, "eje_robo_alto": 0.0496, "eje_aereo_segunda": 0.0346}, "Arsenal": {"eje_verticalidad": 0.0039, "eje_elaboracion": -0.0187, "eje_individual": -0.0477, "eje_rotura_lineas": -0.0205, "eje_amplitud_centro": -0.0083, "eje_profundidad_espalda": 0.0087, "eje_robo_alto": -0.0754, "eje_aereo_segunda": 0.0228}, "Atalanta": {"eje_verticalidad": 0.0132, "eje_elaboracion": -0.0101, "eje_individual": -0.0173, "eje_rotura_lineas": 0.0295, "eje_amplitud_centro": -0.0184, "eje_profundidad_espalda": 0.0102, "eje_robo_alto": 0.0128, "eje_aereo_segunda": 0.0556}, "Athletic Club": {"eje_verticalidad": -0.0251, "eje_elaboracion": -0.0239, "eje_individual": -0.0332, "eje_rotura_lineas": 0.0029, "eje_amplitud_centro": -0.0008, "eje_profundidad_espalda": -0.0482, "eje_robo_alto": -0.0528, "eje_aereo_segunda": 0.0147}, "Atlético de Madrid": {"eje_verticalidad": -0.051, "eje_elaboracion": -0.003, "eje_individual": 0.0054, "eje_rotura_lineas": 0.0029, "eje_amplitud_centro": -0.0172, "eje_profundidad_espalda": -0.0164, "eje_robo_alto": 0.0429, "eje_aereo_segunda": 0.0121}, "Barcelona": {"eje_verticalidad": 0.053, "eje_elaboracion": -0.0643, "eje_individual": -0.0427, "eje_rotura_lineas": -0.0127, "eje_amplitud_centro": -0.002, "eje_profundidad_espalda": 0.003, "eje_robo_alto": -0.0267, "eje_aereo_segunda": -0.0244}, "Basel": {"eje_verticalidad": -0.2235, "eje_elaboracion": 23.1222, "eje_individual": 27.8194, "eje_rotura_lineas": -0.2425, "eje_amplitud_centro": 13.8769, "eje_profundidad_espalda": 10.7536, "eje_robo_alto": -0.9463, "eje_aereo_segunda": 0.0332}, "Bayer Leverkusen": {"eje_verticalidad": -0.0364, "eje_elaboracion": -0.0013, "eje_individual": 0.0004, "eje_rotura_lineas": 0.0265, "eje_amplitud_centro": 0.0251, "eje_profundidad_espalda": -0.0019, "eje_robo_alto": 0.0207, "eje_aereo_segunda": 0.0182}, "Bayern München": {"eje_verticalidad": 0.0427, "eje_elaboracion": -0.0596, "eje_individual": -0.0077, "eje_rotura_lineas": 0.0114, "eje_amplitud_centro": 0.0276, "eje_profundidad_espalda": 0.0374, "eje_robo_alto": -0.1213, "eje_aereo_segunda": 0.0145}, "Benfica": {"eje_verticalidad": -0.1135, "eje_elaboracion": 5.1213, "eje_individual": 4.5129, "eje_rotura_lineas": -0.0537, "eje_amplitud_centro": 2.0151, "eje_profundidad_espalda": 1.5868, "eje_robo_alto": -0.2136, "eje_aereo_segunda": -0.034}, "Bodø / Glimt": {"eje_verticalidad": -0.1085, "eje_elaboracion": 1.7372, "eje_individual": 1.5419, "eje_rotura_lineas": -0.014, "eje_amplitud_centro": 0.7374, "eje_profundidad_espalda": 0.6263, "eje_robo_alto": 0.0167, "eje_aereo_segunda": -0.043}, "Borussia Dortmund": {"eje_verticalidad": -0.0244, "eje_elaboracion": -0.0281, "eje_individual": -0.0174, "eje_rotura_lineas": -0.006, "eje_amplitud_centro": -0.0096, "eje_profundidad_espalda": -0.0518, "eje_robo_alto": -0.0072, "eje_aereo_segunda": 0.0098}, "Chelsea": {"eje_verticalidad": -0.0104, "eje_elaboracion": -0.0175, "eje_individual": -0.0315, "eje_rotura_lineas": -0.0549, "eje_amplitud_centro": -0.0017, "eje_profundidad_espalda": -0.0355, "eje_robo_alto": -0.089, "eje_aereo_segunda": 0.0062}, "Club Brugge": {"eje_verticalidad": -0.139, "eje_elaboracion": 4.0846, "eje_individual": 3.7762, "eje_rotura_lineas": -0.0078, "eje_amplitud_centro": 2.038, "eje_profundidad_espalda": 1.5182, "eje_robo_alto": -0.1134, "eje_aereo_segunda": -0.0078}, "Crvena zvezda": {"eje_verticalidad": -0.149, "eje_elaboracion": 18.1362, "eje_individual": 22.1898, "eje_rotura_lineas": -0.2341, "eje_amplitud_centro": 15.3302, "eje_profundidad_espalda": 8.5396, "eje_robo_alto": -0.9463, "eje_aereo_segunda": 0.0424}, "Eintracht Frankfurt": {"eje_verticalidad": -0.1207, "eje_elaboracion": 0.0482, "eje_individual": 0.0154, "eje_rotura_lineas": 0.122, "eje_amplitud_centro": -0.0408, "eje_profundidad_espalda": 0.0102, "eje_robo_alto": 0.062, "eje_aereo_segunda": -0.0056}, "Ferencváros": {"eje_verticalidad": -0.1788, "eje_elaboracion": 19.2411, "eje_individual": 17.7434, "eje_rotura_lineas": -0.2302, "eje_amplitud_centro": 10.933, "eje_profundidad_espalda": 5.7285, "eje_robo_alto": -0.9463, "eje_aereo_segunda": 0.0164}, "Feyenoord": {"eje_verticalidad": -0.2426, "eje_elaboracion": 19.0848, "eje_individual": 13.717, "eje_rotura_lineas": -0.2279, "eje_amplitud_centro": 14.0418, "eje_profundidad_espalda": 6.2966, "eje_robo_alto": -0.9463, "eje_aereo_segunda": 0.0835}, "Galatasaray": {"eje_verticalidad": 0.0105, "eje_elaboracion": -0.0125, "eje_individual": 0.0034, "eje_rotura_lineas": -0.0139, "eje_amplitud_centro": -0.0016, "eje_profundidad_espalda": 0.0028, "eje_robo_alto": 0.0199, "eje_aereo_segunda": 0.014}, "Internazionale": {"eje_verticalidad": 0.0526, "eje_elaboracion": -0.0613, "eje_individual": -0.0369, "eje_rotura_lineas": -0.0524, "eje_amplitud_centro": 0.0246, "eje_profundidad_espalda": -0.0154, "eje_robo_alto": -0.0568, "eje_aereo_segunda": 0.0057}, "Juventus": {"eje_verticalidad": -0.0548, "eje_elaboracion": -0.0133, "eje_individual": -0.0268, "eje_rotura_lineas": -0.0566, "eje_amplitud_centro": -0.0238, "eje_profundidad_espalda": -0.0071, "eje_robo_alto": 0.0039, "eje_aereo_segunda": 0.004}, "Kairat": {"eje_verticalidad": -0.0772, "eje_elaboracion": 5.5151, "eje_individual": 5.0349, "eje_rotura_lineas": -0.0396, "eje_amplitud_centro": 2.9198, "eje_profundidad_espalda": 1.9591, "eje_robo_alto": -0.2049, "eje_aereo_segunda": 0.0222}, "København": {"eje_verticalidad": -0.1372, "eje_elaboracion": 6.3447, "eje_individual": 3.6181, "eje_rotura_lineas": -0.0491, "eje_amplitud_centro": 3.0139, "eje_profundidad_espalda": 2.1572, "eje_robo_alto": -0.233, "eje_aereo_segunda": -0.0237}, "Liverpool": {"eje_verticalidad": -0.0017, "eje_elaboracion": -0.0331, "eje_individual": -0.0343, "eje_rotura_lineas": -0.0427, "eje_amplitud_centro": 0.0138, "eje_profundidad_espalda": 0.0071, "eje_robo_alto": -0.1089, "eje_aereo_segunda": 0.0174}, "Ludogorets Razgrad": {"eje_verticalidad": -0.1016, "eje_elaboracion": 16.1738, "eje_individual": 28.5497, "eje_rotura_lineas": -0.2425, "eje_amplitud_centro": 9.6116, "eje_profundidad_espalda": 8.3066, "eje_robo_alto": -0.9463, "eje_aereo_segunda": 0.1338}, "Malmö FF": {"eje_verticalidad": -0.3159, "eje_elaboracion": 24.5217, "eje_individual": 17.2822, "eje_rotura_lineas": -0.238, "eje_amplitud_centro": 6.9663, "eje_profundidad_espalda": 7.389, "eje_robo_alto": -0.9463, "eje_aereo_segunda": -0.003}, "Manchester City": {"eje_verticalidad": -0.0317, "eje_elaboracion": -0.0289, "eje_individual": -0.0301, "eje_rotura_lineas": 0.0695, "eje_amplitud_centro": 0.0096, "eje_profundidad_espalda": 0.0352, "eje_robo_alto": -0.0573, "eje_aereo_segunda": -0.0573}, "Monaco": {"eje_verticalidad": -0.0875, "eje_elaboracion": 0.0111, "eje_individual": 0.0249, "eje_rotura_lineas": 0.0267, "eje_amplitud_centro": 0.0219, "eje_profundidad_espalda": -0.0205, "eje_robo_alto": 0.0144, "eje_aereo_segunda": -0.0299}, "Napoli": {"eje_verticalidad": 0.0106, "eje_elaboracion": -0.0018, "eje_individual": -0.0454, "eje_rotura_lineas": -0.0044, "eje_amplitud_centro": -0.0377, "eje_profundidad_espalda": 0.0034, "eje_robo_alto": -0.0257, "eje_aereo_segunda": 0.0538}, "Newcastle United": {"eje_verticalidad": -0.04, "eje_elaboracion": -0.0213, "eje_individual": -0.0454, "eje_rotura_lineas": -0.0021, "eje_amplitud_centro": -0.0209, "eje_profundidad_espalda": -0.0492, "eje_robo_alto": -0.0181, "eje_aereo_segunda": -0.023}, "Nice": {"eje_verticalidad": -0.327, "eje_elaboracion": 23.9195, "eje_individual": 14.1053, "eje_rotura_lineas": -0.233, "eje_amplitud_centro": 11.2225, "eje_profundidad_espalda": 9.1805, "eje_robo_alto": -0.9463, "eje_aereo_segunda": -0.0288}, "Noah": {"eje_verticalidad": -0.1781, "eje_elaboracion": 19.8571, "eje_individual": 16.6557, "eje_rotura_lineas": -0.226, "eje_amplitud_centro": 9.103, "eje_profundidad_espalda": 7.4764, "eje_robo_alto": -0.9463, "eje_aereo_segunda": 0.0289}, "Olympiakos Piraeus": {"eje_verticalidad": 0.0537, "eje_elaboracion": -0.0033, "eje_individual": -0.0217, "eje_rotura_lineas": 0.0235, "eje_amplitud_centro": 0.0301, "eje_profundidad_espalda": 0.0266, "eje_robo_alto": -0.1235, "eje_aereo_segunda": 0.0536}, "Olympique Marseille": {"eje_verticalidad": -0.0133, "eje_elaboracion": -0.0133, "eje_individual": -0.0278, "eje_rotura_lineas": 0.0161, "eje_amplitud_centro": 0.0262, "eje_profundidad_espalda": 0.0124, "eje_robo_alto": -0.0098, "eje_aereo_segunda": 0.0182}, "PSV": {"eje_verticalidad": -0.0157, "eje_elaboracion": -0.0336, "eje_individual": 0.0041, "eje_rotura_lineas": -0.0056, "eje_amplitud_centro": -0.0357, "eje_profundidad_espalda": -0.0176, "eje_robo_alto": 0.0548, "eje_aereo_segunda": 0.0373}, "Pafos": {"eje_verticalidad": -0.0623, "eje_elaboracion": 0.0021, "eje_individual": 0.0183, "eje_rotura_lineas": 0.0033, "eje_amplitud_centro": -0.0298, "eje_profundidad_espalda": 0.0146, "eje_robo_alto": 0.085, "eje_aereo_segunda": -0.0007}, "Panathinaikos": {"eje_verticalidad": -0.308, "eje_elaboracion": 25.5999, "eje_individual": 22.7652, "eje_rotura_lineas": -0.2333, "eje_amplitud_centro": 12.2048, "eje_profundidad_espalda": 8.9184, "eje_robo_alto": -0.9463, "eje_aereo_segunda": 0.0269}, "Paris Saint-Germain": {"eje_verticalidad": 0.0645, "eje_elaboracion": -0.0445, "eje_individual": -0.0283, "eje_rotura_lineas": -0.0328, "eje_amplitud_centro": 0.0124, "eje_profundidad_espalda": -0.0305, "eje_robo_alto": -0.0594, "eje_aereo_segunda": 0.0458}, "Qarabağ": {"eje_verticalidad": -0.1071, "eje_elaboracion": 1.7406, "eje_individual": 1.2952, "eje_rotura_lineas": -0.0041, "eje_amplitud_centro": 0.9166, "eje_profundidad_espalda": 0.7689, "eje_robo_alto": -0.0049, "eje_aereo_segunda": -0.0352}, "Rangers": {"eje_verticalidad": -0.3217, "eje_elaboracion": 21.5733, "eje_individual": 24.7101, "eje_rotura_lineas": -0.2376, "eje_amplitud_centro": 13.5468, "eje_profundidad_espalda": 11.0158, "eje_robo_alto": -0.9463, "eje_aereo_segunda": -0.0208}, "Real Madrid": {"eje_verticalidad": -0.0325, "eje_elaboracion": 0.0158, "eje_individual": -0.0033, "eje_rotura_lineas": -0.0127, "eje_amplitud_centro": -0.0198, "eje_profundidad_espalda": -0.0365, "eje_robo_alto": 0.0185, "eje_aereo_segunda": -0.0435}, "Salzburg": {"eje_verticalidad": -0.2768, "eje_elaboracion": 20.8229, "eje_individual": 18.7138, "eje_rotura_lineas": -0.2327, "eje_amplitud_centro": 8.5948, "eje_profundidad_espalda": 8.4523, "eje_robo_alto": -0.9463, "eje_aereo_segunda": 0.0099}, "Slavia Praha": {"eje_verticalidad": 0.0627, "eje_elaboracion": -0.0843, "eje_individual": -0.058, "eje_rotura_lineas": -0.0786, "eje_amplitud_centro": -0.0743, "eje_profundidad_espalda": -0.0437, "eje_robo_alto": 0.0488, "eje_aereo_segunda": 0.0371}, "Sporting CP": {"eje_verticalidad": -0.0514, "eje_elaboracion": 0.0072, "eje_individual": -0.021, "eje_rotura_lineas": 0.0187, "eje_amplitud_centro": -0.0159, "eje_profundidad_espalda": 0.0143, "eje_robo_alto": 0.0265, "eje_aereo_segunda": -0.0475}, "Sturm Graz": {"eje_verticalidad": -0.2541, "eje_elaboracion": 23.7446, "eje_individual": 27.3198, "eje_rotura_lineas": -0.2294, "eje_amplitud_centro": 7.9402, "eje_profundidad_espalda": 10.4914, "eje_robo_alto": -0.9463, "eje_aereo_segunda": 0.1355}, "Tottenham Hotspur": {"eje_verticalidad": -0.0538, "eje_elaboracion": -0.0071, "eje_individual": -0.0249, "eje_rotura_lineas": -0.0072, "eje_amplitud_centro": -0.0106, "eje_profundidad_espalda": 0.0014, "eje_robo_alto": -0.0256, "eje_aereo_segunda": -0.0161}, "Union Saint-Gilloise": {"eje_verticalidad": -0.1088, "eje_elaboracion": 0.036, "eje_individual": 0.0193, "eje_rotura_lineas": 0.037, "eje_amplitud_centro": -0.0138, "eje_profundidad_espalda": -0.0035, "eje_robo_alto": 0.0369, "eje_aereo_segunda": -0.0544}, "Viktoria Plzeň": {"eje_verticalidad": -0.1534, "eje_elaboracion": 20.2898, "eje_individual": 21.7771, "eje_rotura_lineas": -0.2374, "eje_amplitud_centro": 15.2047, "eje_profundidad_espalda": 10.4623, "eje_robo_alto": -0.9463, "eje_aereo_segunda": 0.0997}, "Villarreal": {"eje_verticalidad": -0.0865, "eje_elaboracion": 0.0203, "eje_individual": 0.0057, "eje_rotura_lineas": 0.0347, "eje_amplitud_centro": 0.0165, "eje_profundidad_espalda": 0.0129, "eje_robo_alto": -0.038, "eje_aereo_segunda": -0.0359}}} \ No newline at end of file diff --git a/vendor/data/ejes/uefa-champions-league/25-26/team_profiles.parquet b/vendor/data/ejes/uefa-champions-league/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..4d50338632dbdba207e3ad33bd0544ba255c5385 --- /dev/null +++ b/vendor/data/ejes/uefa-champions-league/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d265fcdc5aadcd6cfc3b76b76d173b02620373de61436fad0dddce0ba8a2ecfd +size 13766 diff --git a/vendor/data/ejes/uefa-conference-league/25-26/ejes_definition.json b/vendor/data/ejes/uefa-conference-league/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/uefa-conference-league/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/uefa-conference-league/25-26/match_team_ejes.parquet b/vendor/data/ejes/uefa-conference-league/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..44c37134adbeee061fe64dda758074c69fcd8a4e --- /dev/null +++ b/vendor/data/ejes/uefa-conference-league/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1a3d3a7eb1fd43221cc5cf4f66c31d58eb21d88c7f1d5edbee80928e861c0df +size 50716 diff --git a/vendor/data/ejes/uefa-conference-league/25-26/match_team_vars.parquet b/vendor/data/ejes/uefa-conference-league/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..da6de43fefd9e3d6bb37f872c749737ea9681d7f --- /dev/null +++ b/vendor/data/ejes/uefa-conference-league/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3edf0bbbd8025b9fa6575b3b9fae9a08e1adde018e5cf11bc8323af8ab054358 +size 174373 diff --git a/vendor/data/ejes/uefa-conference-league/25-26/predictor.json b/vendor/data/ejes/uefa-conference-league/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..f4ba3c913789d615681d440b7009850feb02714f --- /dev/null +++ b/vendor/data/ejes/uefa-conference-league/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.737, "con": 0.4694, "intercept": 0.0188}, "elaboracion": {"gen": 0.5756, "con": 0.6803, "intercept": -0.9734}, "individual": {"gen": 0.533, "con": 0.6429, "intercept": -0.7958}, "rotura_lineas": {"gen": 0.5999, "con": 0.6243, "intercept": 0.0127}, "amplitud_centro": {"gen": 0.6069, "con": 0.606, "intercept": -0.4416}, "profundidad_espalda": {"gen": 0.5986, "con": 0.6326, "intercept": -0.3325}, "robo_alto": {"gen": 0.6005, "con": 0.6515, "intercept": 0.0628}, "aereo_segunda": {"gen": 0.6084, "con": 0.2722, "intercept": 0.0001}} \ No newline at end of file diff --git a/vendor/data/ejes/uefa-conference-league/25-26/scales.json b/vendor/data/ejes/uefa-conference-league/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..8e8b68ebe0a5ca366f18f5723657d7f60c2e1033 --- /dev/null +++ b/vendor/data/ejes/uefa-conference-league/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 1.8424, "atk_w": 1.3364, "ball_distance": 75.3743, "behind_line_ok": 0.0237, "broke_last_line": 0.0197, "broke_second_last": 0.0583, "cross_pvadded_max": 0.0445, "dang_runs": 0.0838, "deep_completions": 26.1354, "def_h": 3.2053, "dribbles_box": 1.1093, "dribbles_last_third": 4.1966, "duration_s": 1289.8456, "hold_max": 38.1315, "hold_mean": 1.043, "hold_min": 1.1547, "line_breaks": 0.3185, "max_x": 8.3227, "n_centros": 7.9575, "n_events": 371.0215, "n_involved": 0.1877, "n_passes": 215.9356, "opt_quality_mean": 0.1537, "paredes": 23.2848, "pass_options_mean": 2.3575, "passes_behind_line": 0.0447, "pct_adentro": 0.0326, "pct_afuera": 0.0345, "pct_cortos": 0.0471, "pct_headpass": 0.0138, "pct_largos": 0.0435, "pct_launch": 0.0291, "pct_layoff": 0.0051, "pct_medios": 0.0427, "pct_switch": 0.0047, "pct_through": 0.0039, "pct_verticales": 0.052, "pelotazos_espalda": 0.0345, "press_final": 0.6565, "press_media": 0.4593, "prog_x": 17.6189, "start_x": 11.433, "starts_from_dispossess": 0.0193, "takeons_ok": 3.5761, "tempo": 0.063, "transition_speed": 1.036, "verticalidad_media": 0.0661}, "eje_sigma": {"eje_verticalidad": 0.1247, "eje_elaboracion": 3.5649, "eje_individual": 3.8319, "eje_rotura_lineas": 0.0819, "eje_amplitud_centro": 1.7993, "eje_profundidad_espalda": 1.3527, "eje_robo_alto": 0.2443, "eje_aereo_segunda": 0.0611}, "eje_match_mean": {"eje_verticalidad": -0.0719, "eje_elaboracion": 2.96, "eje_individual": 2.9425, "eje_rotura_lineas": -0.0418, "eje_amplitud_centro": 1.4957, "eje_profundidad_espalda": 1.0806, "eje_robo_alto": -0.1904, "eje_aereo_segunda": -0.0031}, "eje_match_std": {"eje_verticalidad": 0.1715, "eje_elaboracion": 6.1064, "eje_individual": 6.4309, "eje_rotura_lineas": 0.1141, "eje_amplitud_centro": 3.1716, "eje_profundidad_espalda": 2.297, "eje_robo_alto": 0.3925, "eje_aereo_segunda": 0.0771}, "team_var_norm": {"AEK Athens": {"atk_l": 40.9395, "atk_w": 32.8444, "ball_distance": 125.1065, "behind_line_ok": 0.0469, "broke_last_line": 0.0389, "broke_second_last": 0.1442, "cross_pvadded_max": 0.0321, "dang_runs": 0.1527, "deep_completions": 21.7145, "def_h": 29.2314, "dribbles_box": 0.6848, "dribbles_last_third": 4.318, "duration_s": 992.0555, "hold_max": 22.9669, "hold_mean": 5.563, "hold_min": 2.9008, "line_breaks": 0.5549, "max_x": 75.6891, "n_centros": 5.8703, "n_events": 286.5541, "n_involved": 1.9388, "n_passes": 160.1266, "opt_quality_mean": 0.1644, "paredes": 19.8447, "pass_options_mean": 7.594, "passes_behind_line": 0.1007, "pct_adentro": 0.5081, "pct_afuera": 0.4034, "pct_cortos": 0.4209, "pct_headpass": 0.0431, "pct_largos": 0.1554, "pct_launch": 0.0476, "pct_layoff": 0.0109, "pct_medios": 0.3357, "pct_switch": 0.0047, "pct_through": 0.0037, "pct_verticales": 0.4318, "pelotazos_espalda": 0.0657, "press_final": 2.2042, "press_media": 1.6065, "prog_x": 36.0914, "start_x": 40.5977, "starts_from_dispossess": 0.0419, "takeons_ok": 3.2217, "tempo": 0.3232, "transition_speed": 2.4905, "verticalidad_media": 0.2744}, "AEK Larnaca": {"atk_l": 40.7605, "atk_w": 32.7597, "ball_distance": 227.6074, "behind_line_ok": 0.0665, "broke_last_line": 0.0394, "broke_second_last": 0.174, "cross_pvadded_max": 0.001, "dang_runs": 0.1356, "deep_completions": 0.4435, "def_h": 32.7359, "dribbles_box": 0.0118, "dribbles_last_third": 0.0496, "duration_s": 29.7442, "hold_max": 10.5267, "hold_mean": 6.4071, "hold_min": 3.9822, "line_breaks": 0.6504, "max_x": 67.4801, "n_centros": 0.1245, "n_events": 5.7959, "n_involved": 1.8542, "n_passes": 3.3194, "opt_quality_mean": 0.0448, "paredes": 0.2957, "pass_options_mean": 9.3259, "passes_behind_line": 0.1429, "pct_adentro": 0.501, "pct_afuera": 0.4314, "pct_cortos": 0.3962, "pct_headpass": 0.0364, "pct_largos": 0.2183, "pct_launch": 0.0921, "pct_layoff": 0.0119, "pct_medios": 0.3191, "pct_switch": 0.0066, "pct_through": 0.0017, "pct_verticales": 0.512, "pelotazos_espalda": 0.0939, "press_final": 2.6183, "press_media": 1.8392, "prog_x": 26.0266, "start_x": 42.0335, "starts_from_dispossess": 0.0299, "takeons_ok": 0.0446, "tempo": 0.3944, "transition_speed": 3.8871, "verticalidad_media": 0.3659}, "AIK": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.181, "dang_runs": 0.0, "deep_completions": 104.5, "def_h": NaN, "dribbles_box": 5.0, "dribbles_last_third": 20.0, "duration_s": 5813.0, "hold_max": 104.0, "hold_mean": 3.9511, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 35.0, "n_events": 1542.0, "n_involved": NaN, "n_passes": 799.5, "opt_quality_mean": NaN, "paredes": 60.5, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5506, "pct_afuera": 0.4494, "pct_cortos": 0.435, "pct_headpass": 0.1245, "pct_largos": 0.2073, "pct_launch": 0.0849, "pct_layoff": 0.0066, "pct_medios": 0.3577, "pct_switch": 0.0075, "pct_through": 0.0005, "pct_verticales": 0.5066, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 15.0, "tempo": 0.1377, "transition_speed": 0.0172, "verticalidad_media": 0.29}, "AZ": {"atk_l": 43.0306, "atk_w": 31.4127, "ball_distance": 138.8699, "behind_line_ok": 0.0421, "broke_last_line": 0.0333, "broke_second_last": 0.1399, "cross_pvadded_max": 0.0231, "dang_runs": 0.0952, "deep_completions": 23.2887, "def_h": 29.8909, "dribbles_box": 0.6133, "dribbles_last_third": 3.9257, "duration_s": 1143.6529, "hold_max": 25.8258, "hold_mean": 5.0061, "hold_min": 2.3928, "line_breaks": 0.6188, "max_x": 75.8882, "n_centros": 3.9476, "n_events": 335.5706, "n_involved": 2.0635, "n_passes": 206.2772, "opt_quality_mean": 0.1576, "paredes": 22.7692, "pass_options_mean": 7.2019, "passes_behind_line": 0.0957, "pct_adentro": 0.5136, "pct_afuera": 0.4198, "pct_cortos": 0.4363, "pct_headpass": 0.0352, "pct_largos": 0.1554, "pct_launch": 0.0624, "pct_layoff": 0.0117, "pct_medios": 0.3423, "pct_switch": 0.0082, "pct_through": 0.0021, "pct_verticales": 0.4138, "pelotazos_espalda": 0.0674, "press_final": 2.1407, "press_media": 1.5393, "prog_x": 38.0626, "start_x": 38.7106, "starts_from_dispossess": 0.0435, "takeons_ok": 3.6516, "tempo": 0.352, "transition_speed": 2.3585, "verticalidad_media": 0.2365}, "Aberdeen": {"atk_l": 40.7356, "atk_w": 31.3738, "ball_distance": 88.2449, "behind_line_ok": 0.0324, "broke_last_line": 0.0268, "broke_second_last": 0.1372, "cross_pvadded_max": -0.0001, "dang_runs": 0.134, "deep_completions": 0.2735, "def_h": 32.821, "dribbles_box": 0.0087, "dribbles_last_third": 0.0643, "duration_s": 35.3501, "hold_max": 10.384, "hold_mean": 6.2607, "hold_min": 3.8363, "line_breaks": 0.4834, "max_x": 66.7472, "n_centros": 0.1132, "n_events": 5.7581, "n_involved": 1.7034, "n_passes": 2.5975, "opt_quality_mean": 0.0261, "paredes": 0.1964, "pass_options_mean": 9.8841, "passes_behind_line": 0.1238, "pct_adentro": 0.5049, "pct_afuera": 0.4025, "pct_cortos": 0.4047, "pct_headpass": 0.038, "pct_largos": 0.2267, "pct_launch": 0.0965, "pct_layoff": 0.0084, "pct_medios": 0.2779, "pct_switch": 0.0028, "pct_through": 0.0014, "pct_verticales": 0.5238, "pelotazos_espalda": 0.1111, "press_final": 2.6698, "press_media": 1.8845, "prog_x": 23.301, "start_x": 44.2174, "starts_from_dispossess": 0.0649, "takeons_ok": 0.0481, "tempo": 0.3774, "transition_speed": 3.5926, "verticalidad_media": 0.3772}, "Aris Limassol": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1264, "dang_runs": 0.0, "deep_completions": 73.0, "def_h": NaN, "dribbles_box": 3.0, "dribbles_last_third": 16.5, "duration_s": 5640.0, "hold_max": 101.0, "hold_mean": 3.7972, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 28.5, "n_events": 1505.0, "n_involved": NaN, "n_passes": 828.5, "opt_quality_mean": NaN, "paredes": 73.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5474, "pct_afuera": 0.4514, "pct_cortos": 0.3817, "pct_headpass": 0.0671, "pct_largos": 0.1659, "pct_launch": 0.0473, "pct_layoff": 0.0055, "pct_medios": 0.4524, "pct_switch": 0.0061, "pct_through": 0.0006, "pct_verticales": 0.479, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 8.0, "tempo": 0.1469, "transition_speed": 0.0177, "verticalidad_media": 0.2639}, "Baník Ostrava": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1177, "dang_runs": 0.0, "deep_completions": 112.0, "def_h": NaN, "dribbles_box": 3.0, "dribbles_last_third": 10.5, "duration_s": 5745.5, "hold_max": 91.0, "hold_mean": 3.7043, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 40.5, "n_events": 1606.0, "n_involved": NaN, "n_passes": 889.0, "opt_quality_mean": NaN, "paredes": 86.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5468, "pct_afuera": 0.4514, "pct_cortos": 0.4104, "pct_headpass": 0.0598, "pct_largos": 0.1828, "pct_launch": 0.0508, "pct_layoff": 0.0098, "pct_medios": 0.4068, "pct_switch": 0.0052, "pct_through": 0.0034, "pct_verticales": 0.4884, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 9.0, "tempo": 0.1546, "transition_speed": 0.0174, "verticalidad_media": 0.2754}, "Beşiktaş": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1059, "dang_runs": 0.0, "deep_completions": 120.3333, "def_h": NaN, "dribbles_box": 5.0, "dribbles_last_third": 15.6667, "duration_s": 5728.0, "hold_max": 401.3333, "hold_mean": 3.6896, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 26.0, "n_events": 1693.6667, "n_involved": NaN, "n_passes": 1017.3333, "opt_quality_mean": NaN, "paredes": 113.6667, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5326, "pct_afuera": 0.4657, "pct_cortos": 0.45, "pct_headpass": 0.0424, "pct_largos": 0.1343, "pct_launch": 0.0293, "pct_layoff": 0.007, "pct_medios": 0.4158, "pct_switch": 0.0041, "pct_through": 0.0018, "pct_verticales": 0.4302, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 16.3333, "tempo": 0.1778, "transition_speed": 0.0175, "verticalidad_media": 0.2139}, "Breidablik": {"atk_l": 41.7432, "atk_w": 33.2245, "ball_distance": 124.1936, "behind_line_ok": 0.0262, "broke_last_line": 0.0301, "broke_second_last": 0.1253, "cross_pvadded_max": 0.0008, "dang_runs": 0.099, "deep_completions": 0.2842, "def_h": 35.0267, "dribbles_box": 0.0193, "dribbles_last_third": 0.0594, "duration_s": 29.5295, "hold_max": 9.9041, "hold_mean": 5.223, "hold_min": 2.73, "line_breaks": 0.66, "max_x": 64.1027, "n_centros": 0.1087, "n_events": 5.3255, "n_involved": 1.92, "n_passes": 2.8456, "opt_quality_mean": 0.0154, "paredes": 0.2374, "pass_options_mean": 9.9099, "passes_behind_line": 0.0947, "pct_adentro": 0.502, "pct_afuera": 0.417, "pct_cortos": 0.3935, "pct_headpass": 0.0382, "pct_largos": 0.1735, "pct_launch": 0.0697, "pct_layoff": 0.0067, "pct_medios": 0.3535, "pct_switch": 0.0035, "pct_through": 0.0013, "pct_verticales": 0.4939, "pelotazos_espalda": 0.0753, "press_final": 2.7007, "press_media": 1.9128, "prog_x": 23.041, "start_x": 41.7575, "starts_from_dispossess": 0.0399, "takeons_ok": 0.0569, "tempo": 0.3724, "transition_speed": 3.3444, "verticalidad_media": 0.3513}, "Brøndby": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.219, "dang_runs": 0.0, "deep_completions": 98.5, "def_h": NaN, "dribbles_box": 3.5, "dribbles_last_third": 17.5, "duration_s": 5753.5, "hold_max": 125.5, "hold_mean": 3.7579, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 37.5, "n_events": 1624.0, "n_involved": NaN, "n_passes": 958.0, "opt_quality_mean": NaN, "paredes": 93.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5235, "pct_afuera": 0.4749, "pct_cortos": 0.4813, "pct_headpass": 0.035, "pct_largos": 0.1246, "pct_launch": 0.0309, "pct_layoff": 0.0145, "pct_medios": 0.3942, "pct_switch": 0.0062, "pct_through": 0.0005, "pct_verticales": 0.4003, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 16.0, "tempo": 0.1664, "transition_speed": 0.0174, "verticalidad_media": 0.1694}, "Celje": {"atk_l": 44.0204, "atk_w": 34.1064, "ball_distance": 171.8761, "behind_line_ok": 0.0476, "broke_last_line": 0.0234, "broke_second_last": 0.1787, "cross_pvadded_max": 0.0011, "dang_runs": 0.2208, "deep_completions": 0.3911, "def_h": 32.921, "dribbles_box": 0.014, "dribbles_last_third": 0.0578, "duration_s": 25.3414, "hold_max": 11.2801, "hold_mean": 6.0143, "hold_min": 3.1807, "line_breaks": 0.8152, "max_x": 65.8915, "n_centros": 0.1055, "n_events": 5.7061, "n_involved": 1.9675, "n_passes": 3.9113, "opt_quality_mean": 0.0705, "paredes": 0.3819, "pass_options_mean": 9.0644, "passes_behind_line": 0.1026, "pct_adentro": 0.4734, "pct_afuera": 0.4348, "pct_cortos": 0.3889, "pct_headpass": 0.0223, "pct_largos": 0.1692, "pct_launch": 0.0622, "pct_layoff": 0.0081, "pct_medios": 0.3506, "pct_switch": 0.0062, "pct_through": 0.0035, "pct_verticales": 0.4299, "pelotazos_espalda": 0.0622, "press_final": 2.8226, "press_media": 1.9592, "prog_x": 25.3504, "start_x": 42.1834, "starts_from_dispossess": 0.0369, "takeons_ok": 0.0615, "tempo": 0.3804, "transition_speed": 3.1453, "verticalidad_media": 0.2679}, "Cherno more Varna": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.0888, "dang_runs": 0.0, "deep_completions": 77.0, "def_h": NaN, "dribbles_box": 2.0, "dribbles_last_third": 12.0, "duration_s": 5524.0, "hold_max": 88.0, "hold_mean": 3.5681, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 34.0, "n_events": 1567.0, "n_involved": NaN, "n_passes": 947.0, "opt_quality_mean": NaN, "paredes": 70.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5206, "pct_afuera": 0.4773, "pct_cortos": 0.4572, "pct_headpass": 0.0327, "pct_largos": 0.1119, "pct_launch": 0.0306, "pct_layoff": 0.0158, "pct_medios": 0.4308, "pct_switch": 0.0084, "pct_through": 0.0011, "pct_verticales": 0.3833, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 12.0, "tempo": 0.1714, "transition_speed": 0.0181, "verticalidad_media": 0.1515}, "Crystal Palace": {"atk_l": 40.7189, "atk_w": 31.1478, "ball_distance": 147.7843, "behind_line_ok": 0.0563, "broke_last_line": 0.0356, "broke_second_last": 0.1799, "cross_pvadded_max": 0.0244, "dang_runs": 0.133, "deep_completions": 13.7764, "def_h": 29.5577, "dribbles_box": 0.2449, "dribbles_last_third": 1.2212, "duration_s": 694.8779, "hold_max": 20.1843, "hold_mean": 6.0055, "hold_min": 3.4874, "line_breaks": 0.7138, "max_x": 74.6078, "n_centros": 4.7085, "n_events": 195.701, "n_involved": 1.9655, "n_passes": 111.6006, "opt_quality_mean": 0.1636, "paredes": 10.3944, "pass_options_mean": 7.7256, "passes_behind_line": 0.1262, "pct_adentro": 0.5331, "pct_afuera": 0.3951, "pct_cortos": 0.3954, "pct_headpass": 0.0567, "pct_largos": 0.1872, "pct_launch": 0.0706, "pct_layoff": 0.0089, "pct_medios": 0.3463, "pct_switch": 0.002, "pct_through": 0.0042, "pct_verticales": 0.4538, "pelotazos_espalda": 0.0804, "press_final": 2.2486, "press_media": 1.628, "prog_x": 34.0734, "start_x": 41.7745, "starts_from_dispossess": 0.0354, "takeons_ok": 1.0392, "tempo": 0.3622, "transition_speed": 3.2567, "verticalidad_media": 0.3255}, "Dečić": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.102, "dang_runs": 0.0, "deep_completions": 94.0, "def_h": NaN, "dribbles_box": 2.0, "dribbles_last_third": 15.0, "duration_s": 5687.0, "hold_max": 73.0, "hold_mean": 3.8303, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 40.0, "n_events": 1534.0, "n_involved": NaN, "n_passes": 829.0, "opt_quality_mean": NaN, "paredes": 86.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5175, "pct_afuera": 0.4801, "pct_cortos": 0.4536, "pct_headpass": 0.0929, "pct_largos": 0.1713, "pct_launch": 0.0639, "pct_layoff": 0.0145, "pct_medios": 0.3752, "pct_switch": 0.006, "pct_through": 0.0, "pct_verticales": 0.4572, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 14.0, "tempo": 0.1458, "transition_speed": 0.0176, "verticalidad_media": 0.2264}, "Drita": {"atk_l": 41.9463, "atk_w": 34.2398, "ball_distance": 102.7835, "behind_line_ok": 0.0467, "broke_last_line": 0.0175, "broke_second_last": 0.1229, "cross_pvadded_max": 0.0018, "dang_runs": 0.1468, "deep_completions": 0.2735, "def_h": 33.5497, "dribbles_box": 0.011, "dribbles_last_third": 0.0372, "duration_s": 24.5922, "hold_max": 11.403, "hold_mean": 6.1687, "hold_min": 3.2121, "line_breaks": 0.4321, "max_x": 66.0416, "n_centros": 0.1412, "n_events": 4.9123, "n_involved": 1.8339, "n_passes": 2.724, "opt_quality_mean": -0.0309, "paredes": 0.2262, "pass_options_mean": 9.4932, "passes_behind_line": 0.1345, "pct_adentro": 0.4952, "pct_afuera": 0.4113, "pct_cortos": 0.3594, "pct_headpass": 0.0518, "pct_largos": 0.2254, "pct_launch": 0.0704, "pct_layoff": 0.0089, "pct_medios": 0.3219, "pct_switch": 0.0053, "pct_through": 0.0021, "pct_verticales": 0.5067, "pelotazos_espalda": 0.1032, "press_final": 2.4464, "press_media": 1.7509, "prog_x": 25.9292, "start_x": 41.3804, "starts_from_dispossess": 0.0425, "takeons_ok": 0.0379, "tempo": 0.3961, "transition_speed": 4.1376, "verticalidad_media": 0.3912}, "Dundee United": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1599, "dang_runs": 0.0, "deep_completions": 107.0, "def_h": NaN, "dribbles_box": 4.0, "dribbles_last_third": 17.0, "duration_s": 5618.0, "hold_max": 118.0, "hold_mean": 3.497, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 40.0, "n_events": 1666.0, "n_involved": NaN, "n_passes": 905.0, "opt_quality_mean": NaN, "paredes": 64.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5315, "pct_afuera": 0.4641, "pct_cortos": 0.3801, "pct_headpass": 0.0707, "pct_largos": 0.179, "pct_launch": 0.0674, "pct_layoff": 0.0044, "pct_medios": 0.4409, "pct_switch": 0.0033, "pct_through": 0.0011, "pct_verticales": 0.4751, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 16.0, "tempo": 0.1611, "transition_speed": 0.0178, "verticalidad_media": 0.3036}, "Dungannon Swifts": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1515, "dang_runs": 0.0, "deep_completions": 132.0, "def_h": NaN, "dribbles_box": 3.0, "dribbles_last_third": 16.0, "duration_s": 5700.0, "hold_max": 113.0, "hold_mean": 3.4752, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 60.0, "n_events": 1698.0, "n_involved": NaN, "n_passes": 1030.0, "opt_quality_mean": NaN, "paredes": 105.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5291, "pct_afuera": 0.4709, "pct_cortos": 0.3806, "pct_headpass": 0.0786, "pct_largos": 0.1718, "pct_launch": 0.0495, "pct_layoff": 0.0058, "pct_medios": 0.4476, "pct_switch": 0.0039, "pct_through": 0.0, "pct_verticales": 0.4757, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 6.0, "tempo": 0.1807, "transition_speed": 0.0175, "verticalidad_media": 0.2732}, "Dynamo Kyiv": {"atk_l": 44.5951, "atk_w": 32.8965, "ball_distance": 198.5402, "behind_line_ok": 0.0633, "broke_last_line": 0.0477, "broke_second_last": 0.1856, "cross_pvadded_max": 0.0008, "dang_runs": 0.2146, "deep_completions": 0.4208, "def_h": 31.7346, "dribbles_box": 0.0078, "dribbles_last_third": 0.0515, "duration_s": 25.2454, "hold_max": 10.2028, "hold_mean": 5.2453, "hold_min": 2.672, "line_breaks": 1.0278, "max_x": 68.5288, "n_centros": 0.1262, "n_events": 6.0019, "n_involved": 2.0371, "n_passes": 4.0615, "opt_quality_mean": 0.0541, "paredes": 0.399, "pass_options_mean": 9.9373, "passes_behind_line": 0.121, "pct_adentro": 0.4932, "pct_afuera": 0.4418, "pct_cortos": 0.4062, "pct_headpass": 0.0362, "pct_largos": 0.1633, "pct_launch": 0.0649, "pct_layoff": 0.0127, "pct_medios": 0.367, "pct_switch": 0.0027, "pct_through": 0.0041, "pct_verticales": 0.4349, "pelotazos_espalda": 0.0834, "press_final": 2.5151, "press_media": 1.8334, "prog_x": 24.0109, "start_x": 44.8037, "starts_from_dispossess": 0.037, "takeons_ok": 0.0462, "tempo": 0.3954, "transition_speed": 3.1869, "verticalidad_media": 0.2599}, "Fiorentina": {"atk_l": 41.8173, "atk_w": 32.0434, "ball_distance": 158.6466, "behind_line_ok": 0.0517, "broke_last_line": 0.02, "broke_second_last": 0.1751, "cross_pvadded_max": 0.0016, "dang_runs": 0.1945, "deep_completions": 0.308, "def_h": 32.467, "dribbles_box": 0.0084, "dribbles_last_third": 0.0444, "duration_s": 36.0899, "hold_max": 10.6234, "hold_mean": 5.9309, "hold_min": 3.4832, "line_breaks": 0.6351, "max_x": 65.6577, "n_centros": 0.1312, "n_events": 6.5645, "n_involved": 1.9753, "n_passes": 3.5017, "opt_quality_mean": 0.0176, "paredes": 0.301, "pass_options_mean": 8.9949, "passes_behind_line": 0.1121, "pct_adentro": 0.5143, "pct_afuera": 0.3942, "pct_cortos": 0.3857, "pct_headpass": 0.0504, "pct_largos": 0.1792, "pct_launch": 0.0917, "pct_layoff": 0.0147, "pct_medios": 0.344, "pct_switch": 0.0027, "pct_through": 0.0041, "pct_verticales": 0.4524, "pelotazos_espalda": 0.0757, "press_final": 2.5994, "press_media": 1.8726, "prog_x": 23.3142, "start_x": 43.6728, "starts_from_dispossess": 0.0406, "takeons_ok": 0.0546, "tempo": 0.375, "transition_speed": 3.0341, "verticalidad_media": 0.3089}, "HB": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.2526, "dang_runs": 0.0, "deep_completions": 175.5, "def_h": NaN, "dribbles_box": 3.5, "dribbles_last_third": 14.5, "duration_s": 5654.0, "hold_max": 87.0, "hold_mean": 3.4907, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 42.5, "n_events": 1682.5, "n_involved": NaN, "n_passes": 1047.0, "opt_quality_mean": NaN, "paredes": 115.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5354, "pct_afuera": 0.4632, "pct_cortos": 0.4776, "pct_headpass": 0.0495, "pct_largos": 0.1347, "pct_launch": 0.0387, "pct_layoff": 0.011, "pct_medios": 0.3876, "pct_switch": 0.0033, "pct_through": 0.0, "pct_verticales": 0.4063, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 11.5, "tempo": 0.1852, "transition_speed": 0.0177, "verticalidad_media": 0.1706}, "Hamrun Spartans": {"atk_l": 41.9582, "atk_w": 32.5956, "ball_distance": 87.9628, "behind_line_ok": 0.0438, "broke_last_line": 0.0317, "broke_second_last": 0.1375, "cross_pvadded_max": 0.001, "dang_runs": 0.1019, "deep_completions": 0.2477, "def_h": 33.6299, "dribbles_box": 0.0107, "dribbles_last_third": 0.0483, "duration_s": 39.0177, "hold_max": 10.0648, "hold_mean": 5.4287, "hold_min": 2.8333, "line_breaks": 0.52, "max_x": 65.1845, "n_centros": 0.1145, "n_events": 6.2569, "n_involved": 1.8215, "n_passes": 2.7042, "opt_quality_mean": -0.0324, "paredes": 0.1952, "pass_options_mean": 9.7254, "passes_behind_line": 0.111, "pct_adentro": 0.5089, "pct_afuera": 0.4134, "pct_cortos": 0.4075, "pct_headpass": 0.0352, "pct_largos": 0.2006, "pct_launch": 0.0666, "pct_layoff": 0.0108, "pct_medios": 0.3147, "pct_switch": 0.0096, "pct_through": 0.0013, "pct_verticales": 0.546, "pelotazos_espalda": 0.0821, "press_final": 2.8022, "press_media": 1.8984, "prog_x": 23.681, "start_x": 42.3983, "starts_from_dispossess": 0.0454, "takeons_ok": 0.0449, "tempo": 0.3994, "transition_speed": 3.8961, "verticalidad_media": 0.4051}, "Hibernian": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.2729, "dang_runs": 0.0, "deep_completions": 94.0, "def_h": NaN, "dribbles_box": 2.0, "dribbles_last_third": 12.0, "duration_s": 5707.0, "hold_max": 168.0, "hold_mean": 3.9007, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 30.0, "n_events": 1543.0, "n_involved": NaN, "n_passes": 871.0, "opt_quality_mean": NaN, "paredes": 109.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.527, "pct_afuera": 0.4719, "pct_cortos": 0.3835, "pct_headpass": 0.0574, "pct_largos": 0.1952, "pct_launch": 0.0666, "pct_layoff": 0.0126, "pct_medios": 0.4214, "pct_switch": 0.0023, "pct_through": 0.0011, "pct_verticales": 0.4305, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 15.0, "tempo": 0.1526, "transition_speed": 0.0175, "verticalidad_media": 0.1957}, "Häcken": {"atk_l": 42.233, "atk_w": 32.1839, "ball_distance": 144.5284, "behind_line_ok": 0.0466, "broke_last_line": 0.0264, "broke_second_last": 0.1461, "cross_pvadded_max": 0.042, "dang_runs": 0.118, "deep_completions": 17.7914, "def_h": 29.7107, "dribbles_box": 1.1542, "dribbles_last_third": 2.1931, "duration_s": 817.0689, "hold_max": 24.5728, "hold_mean": 4.8184, "hold_min": 2.4442, "line_breaks": 0.8725, "max_x": 74.2829, "n_centros": 5.263, "n_events": 247.5332, "n_involved": 2.0458, "n_passes": 145.4939, "opt_quality_mean": 0.1678, "paredes": 15.3302, "pass_options_mean": 8.5292, "passes_behind_line": 0.0951, "pct_adentro": 0.507, "pct_afuera": 0.4263, "pct_cortos": 0.4643, "pct_headpass": 0.0476, "pct_largos": 0.1603, "pct_launch": 0.0596, "pct_layoff": 0.0112, "pct_medios": 0.3098, "pct_switch": 0.0039, "pct_through": 0.0028, "pct_verticales": 0.4301, "pelotazos_espalda": 0.0616, "press_final": 2.2342, "press_media": 1.6632, "prog_x": 34.0195, "start_x": 41.1184, "starts_from_dispossess": 0.0432, "takeons_ok": 2.4616, "tempo": 0.397, "transition_speed": 2.7357, "verticalidad_media": 0.2441}, "Ilves": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.2999, "dang_runs": 0.0, "deep_completions": 149.0, "def_h": NaN, "dribbles_box": 8.0, "dribbles_last_third": 22.0, "duration_s": 5700.0, "hold_max": 82.0, "hold_mean": 3.693, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 25.0, "n_events": 1595.0, "n_involved": NaN, "n_passes": 969.0, "opt_quality_mean": NaN, "paredes": 100.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5181, "pct_afuera": 0.4799, "pct_cortos": 0.5253, "pct_headpass": 0.0423, "pct_largos": 0.128, "pct_launch": 0.0506, "pct_layoff": 0.0217, "pct_medios": 0.3467, "pct_switch": 0.0052, "pct_through": 0.0031, "pct_verticales": 0.4025, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 18.0, "tempo": 0.17, "transition_speed": 0.0175, "verticalidad_media": 0.1815}, "Jagiellonia Białystok": {"atk_l": 40.6175, "atk_w": 32.4042, "ball_distance": 110.0842, "behind_line_ok": 0.0347, "broke_last_line": 0.0174, "broke_second_last": 0.1552, "cross_pvadded_max": 0.0209, "dang_runs": 0.0805, "deep_completions": 24.6032, "def_h": 31.7973, "dribbles_box": 0.7062, "dribbles_last_third": 3.2441, "duration_s": 1156.8571, "hold_max": 25.3405, "hold_mean": 5.0366, "hold_min": 2.6, "line_breaks": 0.6144, "max_x": 73.2106, "n_centros": 6.7935, "n_events": 359.6329, "n_involved": 2.0168, "n_passes": 231.6172, "opt_quality_mean": 0.0601, "paredes": 27.9792, "pass_options_mean": 7.677, "passes_behind_line": 0.095, "pct_adentro": 0.5184, "pct_afuera": 0.415, "pct_cortos": 0.4662, "pct_headpass": 0.0329, "pct_largos": 0.1469, "pct_launch": 0.0613, "pct_layoff": 0.0137, "pct_medios": 0.3212, "pct_switch": 0.0049, "pct_through": 0.0023, "pct_verticales": 0.4533, "pelotazos_espalda": 0.0663, "press_final": 2.1612, "press_media": 1.5568, "prog_x": 38.5108, "start_x": 35.763, "starts_from_dispossess": 0.032, "takeons_ok": 2.8387, "tempo": 0.362, "transition_speed": 2.4509, "verticalidad_media": 0.2805}, "KA": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.0519, "dang_runs": 0.0, "deep_completions": 107.0, "def_h": NaN, "dribbles_box": 1.0, "dribbles_last_third": 9.0, "duration_s": 5583.0, "hold_max": 75.0, "hold_mean": 3.3707, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 24.0, "n_events": 1661.0, "n_involved": NaN, "n_passes": 1051.0, "opt_quality_mean": NaN, "paredes": 126.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5395, "pct_afuera": 0.4586, "pct_cortos": 0.491, "pct_headpass": 0.04, "pct_largos": 0.118, "pct_launch": 0.0333, "pct_layoff": 0.0086, "pct_medios": 0.3911, "pct_switch": 0.0086, "pct_through": 0.0, "pct_verticales": 0.373, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 9.0, "tempo": 0.1883, "transition_speed": 0.0179, "verticalidad_media": 0.1756}, "KuPS": {"atk_l": 41.6763, "atk_w": 32.4883, "ball_distance": 181.9468, "behind_line_ok": 0.0537, "broke_last_line": 0.0315, "broke_second_last": 0.1786, "cross_pvadded_max": 0.0006, "dang_runs": 0.1278, "deep_completions": 0.3501, "def_h": 34.9049, "dribbles_box": 0.0082, "dribbles_last_third": 0.0365, "duration_s": 30.9513, "hold_max": 11.461, "hold_mean": 4.7895, "hold_min": 2.5066, "line_breaks": 0.9639, "max_x": 64.7968, "n_centros": 0.097, "n_events": 6.6415, "n_involved": 2.0259, "n_passes": 4.023, "opt_quality_mean": -0.0376, "paredes": 0.3679, "pass_options_mean": 9.4445, "passes_behind_line": 0.121, "pct_adentro": 0.4956, "pct_afuera": 0.4333, "pct_cortos": 0.4081, "pct_headpass": 0.028, "pct_largos": 0.183, "pct_launch": 0.0596, "pct_layoff": 0.0113, "pct_medios": 0.339, "pct_switch": 0.0034, "pct_through": 0.0041, "pct_verticales": 0.4499, "pelotazos_espalda": 0.0901, "press_final": 2.7211, "press_media": 1.8668, "prog_x": 24.3142, "start_x": 41.3184, "starts_from_dispossess": 0.0419, "takeons_ok": 0.0488, "tempo": 0.4033, "transition_speed": 3.0474, "verticalidad_media": 0.2586}, "Lausanne-Sport": {"atk_l": 38.861, "atk_w": 32.0845, "ball_distance": 96.1901, "behind_line_ok": 0.0424, "broke_last_line": 0.0181, "broke_second_last": 0.1436, "cross_pvadded_max": 0.0545, "dang_runs": 0.0877, "deep_completions": 30.113, "def_h": 30.1324, "dribbles_box": 0.8237, "dribbles_last_third": 4.228, "duration_s": 1538.5672, "hold_max": 29.5395, "hold_mean": 4.7584, "hold_min": 2.2044, "line_breaks": 0.4608, "max_x": 78.8605, "n_centros": 9.9064, "n_events": 436.3858, "n_involved": 1.9503, "n_passes": 248.7882, "opt_quality_mean": 0.0575, "paredes": 23.9613, "pass_options_mean": 6.838, "passes_behind_line": 0.0988, "pct_adentro": 0.5308, "pct_afuera": 0.4082, "pct_cortos": 0.4369, "pct_headpass": 0.0444, "pct_largos": 0.1756, "pct_launch": 0.07, "pct_layoff": 0.0135, "pct_medios": 0.3268, "pct_switch": 0.0065, "pct_through": 0.0049, "pct_verticales": 0.4712, "pelotazos_espalda": 0.066, "press_final": 2.0865, "press_media": 1.465, "prog_x": 45.6173, "start_x": 33.8645, "starts_from_dispossess": 0.034, "takeons_ok": 4.5891, "tempo": 0.3518, "transition_speed": 2.755, "verticalidad_media": 0.3024}, "Lech Poznań": {"atk_l": 42.7561, "atk_w": 31.6413, "ball_distance": 133.5455, "behind_line_ok": 0.0666, "broke_last_line": 0.0356, "broke_second_last": 0.1915, "cross_pvadded_max": 0.0014, "dang_runs": 0.1799, "deep_completions": 0.4538, "def_h": 32.3664, "dribbles_box": 0.0145, "dribbles_last_third": 0.0557, "duration_s": 31.5236, "hold_max": 9.8871, "hold_mean": 5.4373, "hold_min": 3.0765, "line_breaks": 0.774, "max_x": 67.4079, "n_centros": 0.1108, "n_events": 6.0461, "n_involved": 2.0897, "n_passes": 3.4833, "opt_quality_mean": 0.1296, "paredes": 0.2771, "pass_options_mean": 9.2861, "passes_behind_line": 0.1307, "pct_adentro": 0.5335, "pct_afuera": 0.397, "pct_cortos": 0.4452, "pct_headpass": 0.0397, "pct_largos": 0.1459, "pct_launch": 0.044, "pct_layoff": 0.0115, "pct_medios": 0.3406, "pct_switch": 0.0106, "pct_through": 0.0028, "pct_verticales": 0.4416, "pelotazos_espalda": 0.0806, "press_final": 2.766, "press_media": 1.9459, "prog_x": 23.0886, "start_x": 45.4397, "starts_from_dispossess": 0.0364, "takeons_ok": 0.0362, "tempo": 0.4029, "transition_speed": 3.0959, "verticalidad_media": 0.2874}, "Legia Warszawa": {"atk_l": 39.6214, "atk_w": 31.3503, "ball_distance": 91.1256, "behind_line_ok": 0.03, "broke_last_line": 0.0281, "broke_second_last": 0.1324, "cross_pvadded_max": 0.0189, "dang_runs": 0.146, "deep_completions": 17.0202, "def_h": 30.4807, "dribbles_box": 0.1539, "dribbles_last_third": 1.6256, "duration_s": 861.6153, "hold_max": 22.5741, "hold_mean": 5.6503, "hold_min": 3.1766, "line_breaks": 0.4774, "max_x": 73.6684, "n_centros": 5.4084, "n_events": 206.8242, "n_involved": 1.8117, "n_passes": 122.5032, "opt_quality_mean": 0.1449, "paredes": 13.4809, "pass_options_mean": 8.5081, "passes_behind_line": 0.0876, "pct_adentro": 0.5165, "pct_afuera": 0.3908, "pct_cortos": 0.3851, "pct_headpass": 0.0526, "pct_largos": 0.1807, "pct_launch": 0.0841, "pct_layoff": 0.0101, "pct_medios": 0.3428, "pct_switch": 0.0057, "pct_through": 0.0055, "pct_verticales": 0.4439, "pelotazos_espalda": 0.0599, "press_final": 2.1643, "press_media": 1.6497, "prog_x": 35.2189, "start_x": 39.8009, "starts_from_dispossess": 0.0384, "takeons_ok": 0.7624, "tempo": 0.3477, "transition_speed": 3.3533, "verticalidad_media": 0.2953}, "Levski Sofia": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1085, "dang_runs": 0.0, "deep_completions": 100.0, "def_h": NaN, "dribbles_box": 3.0, "dribbles_last_third": 11.0, "duration_s": 6000.0, "hold_max": 3121.0, "hold_mean": 5.8935, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 28.0, "n_events": 1570.0, "n_involved": NaN, "n_passes": 950.0, "opt_quality_mean": NaN, "paredes": 98.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5358, "pct_afuera": 0.4621, "pct_cortos": 0.4463, "pct_headpass": 0.0316, "pct_largos": 0.1189, "pct_launch": 0.0316, "pct_layoff": 0.0116, "pct_medios": 0.4347, "pct_switch": 0.0063, "pct_through": 0.0021, "pct_verticales": 0.3979, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 18.0, "tempo": 0.1583, "transition_speed": 0.0167, "verticalidad_media": 0.1498}, "Lincoln Red Imps": {"atk_l": 41.2994, "atk_w": 32.7058, "ball_distance": 74.6228, "behind_line_ok": 0.0458, "broke_last_line": 0.0213, "broke_second_last": 0.1404, "cross_pvadded_max": 0.0003, "dang_runs": 0.0529, "deep_completions": 0.2031, "def_h": 34.2538, "dribbles_box": 0.0182, "dribbles_last_third": 0.0511, "duration_s": 29.7115, "hold_max": 11.1129, "hold_mean": 7.2779, "hold_min": 4.7922, "line_breaks": 0.3987, "max_x": 63.0251, "n_centros": 0.0647, "n_events": 5.4374, "n_involved": 1.6432, "n_passes": 2.3274, "opt_quality_mean": -0.1013, "paredes": 0.1509, "pass_options_mean": 9.8263, "passes_behind_line": 0.1243, "pct_adentro": 0.4784, "pct_afuera": 0.4317, "pct_cortos": 0.3648, "pct_headpass": 0.0415, "pct_largos": 0.2537, "pct_launch": 0.1001, "pct_layoff": 0.0057, "pct_medios": 0.2917, "pct_switch": 0.0057, "pct_through": 0.0026, "pct_verticales": 0.5646, "pelotazos_espalda": 0.0967, "press_final": 2.6162, "press_media": 1.766, "prog_x": 24.6247, "start_x": 39.6281, "starts_from_dispossess": 0.0446, "takeons_ok": 0.0659, "tempo": 0.349, "transition_speed": 3.7421, "verticalidad_media": 0.4346}, "Lugano": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.3208, "dang_runs": 0.0, "deep_completions": 113.0, "def_h": NaN, "dribbles_box": 7.5, "dribbles_last_third": 17.0, "duration_s": 5639.0, "hold_max": 120.5, "hold_mean": 4.0941, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 31.5, "n_events": 1402.5, "n_involved": NaN, "n_passes": 814.5, "opt_quality_mean": NaN, "paredes": 83.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.4984, "pct_afuera": 0.4991, "pct_cortos": 0.3763, "pct_headpass": 0.0214, "pct_largos": 0.1485, "pct_launch": 0.0227, "pct_layoff": 0.0093, "pct_medios": 0.4752, "pct_switch": 0.0086, "pct_through": 0.0012, "pct_verticales": 0.4075, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 14.5, "tempo": 0.1444, "transition_speed": 0.0177, "verticalidad_media": 0.1751}, "Maccabi Haifa": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1083, "dang_runs": 0.0, "deep_completions": 83.0, "def_h": NaN, "dribbles_box": 2.0, "dribbles_last_third": 14.0, "duration_s": 6096.0, "hold_max": 185.0, "hold_mean": 4.0542, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 33.0, "n_events": 1569.0, "n_involved": NaN, "n_passes": 843.0, "opt_quality_mean": NaN, "paredes": 62.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5386, "pct_afuera": 0.4603, "pct_cortos": 0.4982, "pct_headpass": 0.0605, "pct_largos": 0.1186, "pct_launch": 0.051, "pct_layoff": 0.0024, "pct_medios": 0.3832, "pct_switch": 0.0059, "pct_through": 0.0036, "pct_verticales": 0.3855, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 11.0, "tempo": 0.1383, "transition_speed": 0.0164, "verticalidad_media": 0.1731}, "Mainz 05": {"atk_l": 39.4577, "atk_w": 31.5452, "ball_distance": 94.3603, "behind_line_ok": 0.0378, "broke_last_line": 0.0307, "broke_second_last": 0.1452, "cross_pvadded_max": 0.0148, "dang_runs": 0.1239, "deep_completions": 11.6863, "def_h": 30.4343, "dribbles_box": 0.1907, "dribbles_last_third": 0.8534, "duration_s": 515.9521, "hold_max": 17.6378, "hold_mean": 5.8709, "hold_min": 3.4733, "line_breaks": 0.5156, "max_x": 72.6387, "n_centros": 4.0286, "n_events": 138.8161, "n_involved": 1.8735, "n_passes": 76.6773, "opt_quality_mean": 0.0961, "paredes": 5.8967, "pass_options_mean": 8.3042, "passes_behind_line": 0.0989, "pct_adentro": 0.5362, "pct_afuera": 0.3911, "pct_cortos": 0.4305, "pct_headpass": 0.0549, "pct_largos": 0.1965, "pct_launch": 0.0959, "pct_layoff": 0.01, "pct_medios": 0.3016, "pct_switch": 0.0043, "pct_through": 0.0011, "pct_verticales": 0.4806, "pelotazos_espalda": 0.0776, "press_final": 2.4055, "press_media": 1.751, "prog_x": 30.0611, "start_x": 43.4102, "starts_from_dispossess": 0.0424, "takeons_ok": 0.6685, "tempo": 0.3686, "transition_speed": 3.0793, "verticalidad_media": 0.3131}, "Neman Grodno": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.2591, "dang_runs": 0.0, "deep_completions": 92.0, "def_h": NaN, "dribbles_box": 4.5, "dribbles_last_third": 19.0, "duration_s": 5579.5, "hold_max": 94.5, "hold_mean": 3.4766, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 32.0, "n_events": 1641.5, "n_involved": NaN, "n_passes": 929.0, "opt_quality_mean": NaN, "paredes": 79.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5392, "pct_afuera": 0.4571, "pct_cortos": 0.4282, "pct_headpass": 0.07, "pct_largos": 0.1842, "pct_launch": 0.0669, "pct_layoff": 0.0085, "pct_medios": 0.3876, "pct_switch": 0.0059, "pct_through": 0.0006, "pct_verticales": 0.4481, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 14.0, "tempo": 0.1665, "transition_speed": 0.0179, "verticalidad_media": 0.2375}, "Noah": {"atk_l": 43.3416, "atk_w": 33.5049, "ball_distance": 181.4278, "behind_line_ok": 0.0511, "broke_last_line": 0.0312, "broke_second_last": 0.1621, "cross_pvadded_max": 0.0018, "dang_runs": 0.1271, "deep_completions": 0.25, "def_h": 33.7312, "dribbles_box": 0.0049, "dribbles_last_third": 0.0359, "duration_s": 40.641, "hold_max": 10.1308, "hold_mean": 5.3486, "hold_min": 2.9131, "line_breaks": 0.7935, "max_x": 64.424, "n_centros": 0.1196, "n_events": 6.9355, "n_involved": 2.0029, "n_passes": 3.6275, "opt_quality_mean": -0.0672, "paredes": 0.3095, "pass_options_mean": 9.4238, "passes_behind_line": 0.1246, "pct_adentro": 0.5257, "pct_afuera": 0.3961, "pct_cortos": 0.3982, "pct_headpass": 0.0368, "pct_largos": 0.197, "pct_launch": 0.0961, "pct_layoff": 0.0158, "pct_medios": 0.3279, "pct_switch": 0.0077, "pct_through": 0.0019, "pct_verticales": 0.4542, "pelotazos_espalda": 0.0996, "press_final": 2.4663, "press_media": 1.7688, "prog_x": 23.5431, "start_x": 41.8405, "starts_from_dispossess": 0.0407, "takeons_ok": 0.0435, "tempo": 0.3883, "transition_speed": 3.0736, "verticalidad_media": 0.2878}, "Omonia Nicosia": {"atk_l": 42.0179, "atk_w": 32.7778, "ball_distance": 123.7994, "behind_line_ok": 0.0482, "broke_last_line": 0.0311, "broke_second_last": 0.1415, "cross_pvadded_max": 0.0015, "dang_runs": 0.1442, "deep_completions": 0.31, "def_h": 34.6887, "dribbles_box": 0.0068, "dribbles_last_third": 0.042, "duration_s": 28.1327, "hold_max": 9.9022, "hold_mean": 5.7447, "hold_min": 3.4097, "line_breaks": 0.6471, "max_x": 65.1359, "n_centros": 0.1041, "n_events": 5.6962, "n_involved": 1.9111, "n_passes": 3.0808, "opt_quality_mean": -0.0206, "paredes": 0.2425, "pass_options_mean": 9.3731, "passes_behind_line": 0.1286, "pct_adentro": 0.5144, "pct_afuera": 0.4191, "pct_cortos": 0.408, "pct_headpass": 0.0359, "pct_largos": 0.1897, "pct_launch": 0.0776, "pct_layoff": 0.0107, "pct_medios": 0.3369, "pct_switch": 0.0069, "pct_through": 0.0065, "pct_verticales": 0.5104, "pelotazos_espalda": 0.0936, "press_final": 2.5346, "press_media": 1.8722, "prog_x": 24.246, "start_x": 41.689, "starts_from_dispossess": 0.0439, "takeons_ok": 0.0423, "tempo": 0.4085, "transition_speed": 3.6442, "verticalidad_media": 0.3559}, "Polissya": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1565, "dang_runs": 0.0, "deep_completions": 100.25, "def_h": NaN, "dribbles_box": 6.25, "dribbles_last_third": 14.5, "duration_s": 5688.75, "hold_max": 103.25, "hold_mean": 3.5794, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 42.25, "n_events": 1627.25, "n_involved": NaN, "n_passes": 949.75, "opt_quality_mean": NaN, "paredes": 78.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5277, "pct_afuera": 0.4713, "pct_cortos": 0.394, "pct_headpass": 0.0754, "pct_largos": 0.1786, "pct_launch": 0.0475, "pct_layoff": 0.0188, "pct_medios": 0.4274, "pct_switch": 0.0109, "pct_through": 0.0029, "pct_verticales": 0.4027, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 14.75, "tempo": 0.167, "transition_speed": 0.0176, "verticalidad_media": 0.1574}, "Pyunik": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.304, "dang_runs": 0.0, "deep_completions": 97.0, "def_h": NaN, "dribbles_box": 5.0, "dribbles_last_third": 17.5, "duration_s": 5800.5, "hold_max": 96.5, "hold_mean": 3.7338, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 36.0, "n_events": 1591.5, "n_involved": NaN, "n_passes": 889.5, "opt_quality_mean": NaN, "paredes": 91.5, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5145, "pct_afuera": 0.4838, "pct_cortos": 0.4576, "pct_headpass": 0.0692, "pct_largos": 0.157, "pct_launch": 0.0473, "pct_layoff": 0.0141, "pct_medios": 0.3854, "pct_switch": 0.0109, "pct_through": 0.0006, "pct_verticales": 0.469, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 16.0, "tempo": 0.1535, "transition_speed": 0.0172, "verticalidad_media": 0.2423}, "Raków Częstochowa": {"atk_l": 41.3569, "atk_w": 31.4424, "ball_distance": 85.0066, "behind_line_ok": 0.0355, "broke_last_line": 0.0147, "broke_second_last": 0.1301, "cross_pvadded_max": 0.0287, "dang_runs": 0.0981, "deep_completions": 20.2331, "def_h": 32.4865, "dribbles_box": 1.0097, "dribbles_last_third": 3.7733, "duration_s": 1573.644, "hold_max": 38.6858, "hold_mean": 5.4056, "hold_min": 2.7666, "line_breaks": 0.5267, "max_x": 75.5149, "n_centros": 6.7109, "n_events": 459.4983, "n_involved": 1.8626, "n_passes": 251.7644, "opt_quality_mean": 0.0275, "paredes": 22.9043, "pass_options_mean": 6.9068, "passes_behind_line": 0.0984, "pct_adentro": 0.5126, "pct_afuera": 0.4305, "pct_cortos": 0.4019, "pct_headpass": 0.0583, "pct_largos": 0.1907, "pct_launch": 0.0705, "pct_layoff": 0.01, "pct_medios": 0.3509, "pct_switch": 0.0043, "pct_through": 0.0023, "pct_verticales": 0.464, "pelotazos_espalda": 0.0699, "press_final": 1.8721, "press_media": 1.38, "prog_x": 43.7529, "start_x": 32.5391, "starts_from_dispossess": 0.0327, "takeons_ok": 3.0373, "tempo": 0.307, "transition_speed": 2.245, "verticalidad_media": 0.2916}, "Rapid": {"atk_l": 39.4943, "atk_w": 31.6599, "ball_distance": 66.1961, "behind_line_ok": 0.0209, "broke_last_line": 0.0117, "broke_second_last": 0.0842, "cross_pvadded_max": 0.0612, "dang_runs": 0.1242, "deep_completions": 47.0571, "def_h": 31.2818, "dribbles_box": 2.0039, "dribbles_last_third": 8.6307, "duration_s": 2291.7941, "hold_max": 46.7726, "hold_mean": 5.3759, "hold_min": 2.3864, "line_breaks": 0.3911, "max_x": 79.9417, "n_centros": 14.3715, "n_events": 628.6243, "n_involved": 1.7785, "n_passes": 359.5136, "opt_quality_mean": 0.0239, "paredes": 35.86, "pass_options_mean": 5.9217, "passes_behind_line": 0.0575, "pct_adentro": 0.5137, "pct_afuera": 0.4384, "pct_cortos": 0.4148, "pct_headpass": 0.049, "pct_largos": 0.1768, "pct_launch": 0.0695, "pct_layoff": 0.0123, "pct_medios": 0.3612, "pct_switch": 0.0074, "pct_through": 0.0008, "pct_verticales": 0.4707, "pelotazos_espalda": 0.0447, "press_final": 1.5494, "press_media": 1.0896, "prog_x": 53.609, "start_x": 26.8411, "starts_from_dispossess": 0.0315, "takeons_ok": 6.4255, "tempo": 0.3155, "transition_speed": 2.282, "verticalidad_media": 0.2983}, "Rayo Vallecano": {"atk_l": 40.0462, "atk_w": 34.0018, "ball_distance": 132.6318, "behind_line_ok": 0.0563, "broke_last_line": 0.0298, "broke_second_last": 0.1413, "cross_pvadded_max": 0.0013, "dang_runs": 0.1947, "deep_completions": 0.381, "def_h": 29.6784, "dribbles_box": 0.0148, "dribbles_last_third": 0.0638, "duration_s": 38.2938, "hold_max": 10.8823, "hold_mean": 6.2061, "hold_min": 3.6794, "line_breaks": 0.6957, "max_x": 69.5614, "n_centros": 0.1401, "n_events": 6.6791, "n_involved": 1.9469, "n_passes": 3.2718, "opt_quality_mean": 0.0392, "paredes": 0.2878, "pass_options_mean": 8.8358, "passes_behind_line": 0.127, "pct_adentro": 0.4976, "pct_afuera": 0.4066, "pct_cortos": 0.3808, "pct_headpass": 0.0414, "pct_largos": 0.2135, "pct_launch": 0.101, "pct_layoff": 0.0105, "pct_medios": 0.3113, "pct_switch": 0.0057, "pct_through": 0.0022, "pct_verticales": 0.4713, "pelotazos_espalda": 0.0933, "press_final": 2.4214, "press_media": 1.8378, "prog_x": 24.9819, "start_x": 46.2652, "starts_from_dispossess": 0.0436, "takeons_ok": 0.0435, "tempo": 0.3942, "transition_speed": 3.6438, "verticalidad_media": 0.3201}, "Rijeka": {"atk_l": 41.9673, "atk_w": 33.0759, "ball_distance": 128.6058, "behind_line_ok": 0.056, "broke_last_line": 0.0379, "broke_second_last": 0.1415, "cross_pvadded_max": 0.001, "dang_runs": 0.1525, "deep_completions": 0.3141, "def_h": 30.9747, "dribbles_box": 0.0122, "dribbles_last_third": 0.0576, "duration_s": 33.0764, "hold_max": 10.4425, "hold_mean": 6.1668, "hold_min": 3.7288, "line_breaks": 0.5464, "max_x": 69.4607, "n_centros": 0.1271, "n_events": 6.0503, "n_involved": 1.8647, "n_passes": 3.1471, "opt_quality_mean": 0.0587, "paredes": 0.3039, "pass_options_mean": 8.1506, "passes_behind_line": 0.1271, "pct_adentro": 0.4836, "pct_afuera": 0.4219, "pct_cortos": 0.3658, "pct_headpass": 0.0437, "pct_largos": 0.2179, "pct_launch": 0.105, "pct_layoff": 0.0063, "pct_medios": 0.3226, "pct_switch": 0.0068, "pct_through": 0.0011, "pct_verticales": 0.4895, "pelotazos_espalda": 0.0941, "press_final": 2.6274, "press_media": 1.7956, "prog_x": 25.6549, "start_x": 44.6158, "starts_from_dispossess": 0.0358, "takeons_ok": 0.0557, "tempo": 0.3659, "transition_speed": 3.8531, "verticalidad_media": 0.3467}, "Rosenborg": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.0853, "dang_runs": 0.0, "deep_completions": 146.0, "def_h": NaN, "dribbles_box": 5.0, "dribbles_last_third": 17.0, "duration_s": 5697.0, "hold_max": 72.0, "hold_mean": 3.5683, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 36.0, "n_events": 1656.0, "n_involved": NaN, "n_passes": 975.0, "opt_quality_mean": NaN, "paredes": 97.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5395, "pct_afuera": 0.4605, "pct_cortos": 0.4462, "pct_headpass": 0.04, "pct_largos": 0.159, "pct_launch": 0.041, "pct_layoff": 0.0133, "pct_medios": 0.3949, "pct_switch": 0.0154, "pct_through": 0.0, "pct_verticales": 0.3918, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 11.0, "tempo": 0.1711, "transition_speed": 0.0176, "verticalidad_media": 0.1735}, "Samsunspor": {"atk_l": 44.352, "atk_w": 33.6565, "ball_distance": 164.9893, "behind_line_ok": 0.0431, "broke_last_line": 0.0473, "broke_second_last": 0.1583, "cross_pvadded_max": 0.0011, "dang_runs": 0.1667, "deep_completions": 0.3191, "def_h": 32.3324, "dribbles_box": 0.0089, "dribbles_last_third": 0.0547, "duration_s": 22.0522, "hold_max": 9.5355, "hold_mean": 5.4728, "hold_min": 3.1546, "line_breaks": 0.7475, "max_x": 66.6179, "n_centros": 0.1152, "n_events": 5.5595, "n_involved": 2.009, "n_passes": 3.6592, "opt_quality_mean": -0.0349, "paredes": 0.3164, "pass_options_mean": 9.3053, "passes_behind_line": 0.1132, "pct_adentro": 0.5299, "pct_afuera": 0.3977, "pct_cortos": 0.3807, "pct_headpass": 0.0371, "pct_largos": 0.1813, "pct_launch": 0.0773, "pct_layoff": 0.016, "pct_medios": 0.3662, "pct_switch": 0.0116, "pct_through": 0.0052, "pct_verticales": 0.4589, "pelotazos_espalda": 0.077, "press_final": 2.6216, "press_media": 1.9904, "prog_x": 23.4257, "start_x": 44.4818, "starts_from_dispossess": 0.0636, "takeons_ok": 0.049, "tempo": 0.4099, "transition_speed": 3.5559, "verticalidad_media": 0.297}, "Servette": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.2096, "dang_runs": 0.0, "deep_completions": 109.0, "def_h": NaN, "dribbles_box": 4.0, "dribbles_last_third": 18.0, "duration_s": 5705.0, "hold_max": 118.0, "hold_mean": 3.5948, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 33.0, "n_events": 1631.0, "n_involved": NaN, "n_passes": 968.0, "opt_quality_mean": NaN, "paredes": 89.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.532, "pct_afuera": 0.468, "pct_cortos": 0.4277, "pct_headpass": 0.0444, "pct_largos": 0.1415, "pct_launch": 0.0217, "pct_layoff": 0.0083, "pct_medios": 0.4308, "pct_switch": 0.0124, "pct_through": 0.0, "pct_verticales": 0.4081, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 12.0, "tempo": 0.1697, "transition_speed": 0.0175, "verticalidad_media": 0.1776}, "Shakhtar Donetsk": {"atk_l": 41.6169, "atk_w": 31.0848, "ball_distance": 169.5439, "behind_line_ok": 0.0538, "broke_last_line": 0.0462, "broke_second_last": 0.1831, "cross_pvadded_max": 0.0099, "dang_runs": 0.1752, "deep_completions": 7.9073, "def_h": 30.1119, "dribbles_box": 0.1705, "dribbles_last_third": 1.9293, "duration_s": 464.5662, "hold_max": 17.2858, "hold_mean": 5.3412, "hold_min": 2.7516, "line_breaks": 0.7293, "max_x": 71.021, "n_centros": 2.4803, "n_events": 136.3147, "n_involved": 1.9747, "n_passes": 82.5985, "opt_quality_mean": 0.1326, "paredes": 9.905, "pass_options_mean": 8.3282, "passes_behind_line": 0.1019, "pct_adentro": 0.4897, "pct_afuera": 0.4098, "pct_cortos": 0.4173, "pct_headpass": 0.033, "pct_largos": 0.1374, "pct_launch": 0.0566, "pct_layoff": 0.0085, "pct_medios": 0.3463, "pct_switch": 0.0071, "pct_through": 0.0045, "pct_verticales": 0.3914, "pelotazos_espalda": 0.0623, "press_final": 2.6335, "press_media": 1.8166, "prog_x": 28.1287, "start_x": 44.0079, "starts_from_dispossess": 0.0574, "takeons_ok": 1.6906, "tempo": 0.3122, "transition_speed": 2.1133, "verticalidad_media": 0.2209}, "Shamrock Rovers": {"atk_l": 37.4961, "atk_w": 32.0971, "ball_distance": 97.588, "behind_line_ok": 0.0518, "broke_last_line": 0.0319, "broke_second_last": 0.1143, "cross_pvadded_max": 0.0008, "dang_runs": 0.0987, "deep_completions": 0.2961, "def_h": 33.6319, "dribbles_box": 0.0095, "dribbles_last_third": 0.0566, "duration_s": 25.402, "hold_max": 10.8879, "hold_mean": 7.0319, "hold_min": 4.7235, "line_breaks": 0.4237, "max_x": 64.7137, "n_centros": 0.1058, "n_events": 4.9867, "n_involved": 1.8146, "n_passes": 2.6787, "opt_quality_mean": -0.0312, "paredes": 0.2232, "pass_options_mean": 9.6837, "passes_behind_line": 0.1492, "pct_adentro": 0.4758, "pct_afuera": 0.4354, "pct_cortos": 0.4123, "pct_headpass": 0.0351, "pct_largos": 0.2385, "pct_launch": 0.1107, "pct_layoff": 0.0098, "pct_medios": 0.2618, "pct_switch": 0.0024, "pct_through": 0.0015, "pct_verticales": 0.5112, "pelotazos_espalda": 0.1314, "press_final": 2.6598, "press_media": 1.8368, "prog_x": 24.5172, "start_x": 41.5491, "starts_from_dispossess": 0.0341, "takeons_ok": 0.0405, "tempo": 0.4196, "transition_speed": 3.9865, "verticalidad_media": 0.3718}, "Shelbourne": {"atk_l": 39.545, "atk_w": 32.0152, "ball_distance": 117.8491, "behind_line_ok": 0.0435, "broke_last_line": 0.0207, "broke_second_last": 0.1341, "cross_pvadded_max": 0.0009, "dang_runs": 0.0753, "deep_completions": 0.2435, "def_h": 33.271, "dribbles_box": 0.0055, "dribbles_last_third": 0.0432, "duration_s": 14.5883, "hold_max": 11.3923, "hold_mean": 7.3407, "hold_min": 5.0051, "line_breaks": 0.643, "max_x": 65.8963, "n_centros": 0.0969, "n_events": 4.3721, "n_involved": 1.9017, "n_passes": 2.7994, "opt_quality_mean": -0.0496, "paredes": 0.2021, "pass_options_mean": 9.7797, "passes_behind_line": 0.1415, "pct_adentro": 0.482, "pct_afuera": 0.4314, "pct_cortos": 0.3762, "pct_headpass": 0.0524, "pct_largos": 0.2842, "pct_launch": 0.1139, "pct_layoff": 0.0091, "pct_medios": 0.2554, "pct_switch": 0.0012, "pct_through": 0.0043, "pct_verticales": 0.5357, "pelotazos_espalda": 0.1198, "press_final": 2.7491, "press_media": 1.8977, "prog_x": 26.7713, "start_x": 40.1328, "starts_from_dispossess": 0.0447, "takeons_ok": 0.0462, "tempo": 0.3974, "transition_speed": 4.1447, "verticalidad_media": 0.4027}, "Sheriff": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1068, "dang_runs": 0.0, "deep_completions": 126.0, "def_h": NaN, "dribbles_box": 8.0, "dribbles_last_third": 34.0, "duration_s": 5639.0, "hold_max": 93.0, "hold_mean": 3.5912, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 37.0, "n_events": 1641.0, "n_involved": NaN, "n_passes": 948.0, "opt_quality_mean": NaN, "paredes": 94.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5432, "pct_afuera": 0.4568, "pct_cortos": 0.4177, "pct_headpass": 0.0327, "pct_largos": 0.135, "pct_launch": 0.0211, "pct_layoff": 0.0084, "pct_medios": 0.4473, "pct_switch": 0.0084, "pct_through": 0.0032, "pct_verticales": 0.4061, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 24.0, "tempo": 0.1681, "transition_speed": 0.0177, "verticalidad_media": 0.1865}, "Shkendija": {"atk_l": 40.1724, "atk_w": 32.4757, "ball_distance": 102.1504, "behind_line_ok": 0.0342, "broke_last_line": 0.0164, "broke_second_last": 0.1529, "cross_pvadded_max": 0.0001, "dang_runs": 0.0866, "deep_completions": 0.1742, "def_h": 34.3144, "dribbles_box": 0.0098, "dribbles_last_third": 0.0566, "duration_s": 25.1377, "hold_max": 10.2032, "hold_mean": 6.2182, "hold_min": 4.0546, "line_breaks": 0.462, "max_x": 63.4838, "n_centros": 0.0723, "n_events": 5.1017, "n_involved": 1.6948, "n_passes": 2.6046, "opt_quality_mean": -0.1143, "paredes": 0.1967, "pass_options_mean": 9.3266, "passes_behind_line": 0.0993, "pct_adentro": 0.4802, "pct_afuera": 0.411, "pct_cortos": 0.3702, "pct_headpass": 0.0434, "pct_largos": 0.217, "pct_launch": 0.0917, "pct_layoff": 0.0145, "pct_medios": 0.3053, "pct_switch": 0.0046, "pct_through": 0.0068, "pct_verticales": 0.5533, "pelotazos_espalda": 0.0802, "press_final": 2.7962, "press_media": 1.8681, "prog_x": 25.0627, "start_x": 39.4473, "starts_from_dispossess": 0.0494, "takeons_ok": 0.0558, "tempo": 0.3584, "transition_speed": 3.9149, "verticalidad_media": 0.4346}, "Sigma Olomouc": {"atk_l": 39.7803, "atk_w": 32.4619, "ball_distance": 88.8637, "behind_line_ok": 0.04, "broke_last_line": 0.0128, "broke_second_last": 0.144, "cross_pvadded_max": 0.0011, "dang_runs": 0.1444, "deep_completions": 0.2596, "def_h": 31.2577, "dribbles_box": 0.0153, "dribbles_last_third": 0.0646, "duration_s": 29.0805, "hold_max": 10.142, "hold_mean": 6.1502, "hold_min": 4.0347, "line_breaks": 0.388, "max_x": 67.4876, "n_centros": 0.1265, "n_events": 5.4825, "n_involved": 1.7697, "n_passes": 2.593, "opt_quality_mean": -0.0198, "paredes": 0.1992, "pass_options_mean": 9.065, "passes_behind_line": 0.1248, "pct_adentro": 0.4623, "pct_afuera": 0.4441, "pct_cortos": 0.3592, "pct_headpass": 0.0465, "pct_largos": 0.2377, "pct_launch": 0.1397, "pct_layoff": 0.0146, "pct_medios": 0.3103, "pct_switch": 0.0039, "pct_through": 0.0009, "pct_verticales": 0.5328, "pelotazos_espalda": 0.1006, "press_final": 2.7298, "press_media": 1.8989, "prog_x": 24.6282, "start_x": 44.5999, "starts_from_dispossess": 0.044, "takeons_ok": 0.0417, "tempo": 0.3748, "transition_speed": 3.7063, "verticalidad_media": 0.4147}, "Silkeborg": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1924, "dang_runs": 0.0, "deep_completions": 99.0, "def_h": NaN, "dribbles_box": 0.0, "dribbles_last_third": 6.0, "duration_s": 5668.0, "hold_max": 62.0, "hold_mean": 3.2635, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 23.0, "n_events": 1759.0, "n_involved": NaN, "n_passes": 1255.0, "opt_quality_mean": NaN, "paredes": 156.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5211, "pct_afuera": 0.4781, "pct_cortos": 0.4478, "pct_headpass": 0.0247, "pct_largos": 0.1219, "pct_launch": 0.0175, "pct_layoff": 0.0191, "pct_medios": 0.4303, "pct_switch": 0.0096, "pct_through": 0.0, "pct_verticales": 0.345, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 5.0, "tempo": 0.2214, "transition_speed": 0.0176, "verticalidad_media": 0.151}, "Slovan Bratislava": {"atk_l": 42.8533, "atk_w": 32.5757, "ball_distance": 113.0896, "behind_line_ok": 0.0353, "broke_last_line": 0.0242, "broke_second_last": 0.1417, "cross_pvadded_max": 0.0008, "dang_runs": 0.1019, "deep_completions": 0.3568, "def_h": 34.177, "dribbles_box": 0.0264, "dribbles_last_third": 0.0637, "duration_s": 14.608, "hold_max": 9.317, "hold_mean": 5.1156, "hold_min": 2.7244, "line_breaks": 0.6408, "max_x": 65.0475, "n_centros": 0.0975, "n_events": 4.8355, "n_involved": 2.0443, "n_passes": 3.3948, "opt_quality_mean": 0.0463, "paredes": 0.3058, "pass_options_mean": 9.899, "passes_behind_line": 0.0862, "pct_adentro": 0.509, "pct_afuera": 0.4198, "pct_cortos": 0.4432, "pct_headpass": 0.0311, "pct_largos": 0.1682, "pct_launch": 0.061, "pct_layoff": 0.0102, "pct_medios": 0.318, "pct_switch": 0.0036, "pct_through": 0.0026, "pct_verticales": 0.469, "pelotazos_espalda": 0.0654, "press_final": 2.7478, "press_media": 1.8872, "prog_x": 24.1231, "start_x": 41.6484, "starts_from_dispossess": 0.036, "takeons_ok": 0.057, "tempo": 0.4276, "transition_speed": 3.6664, "verticalidad_media": 0.3065}, "Spaeri": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1532, "dang_runs": 0.0, "deep_completions": 113.0, "def_h": NaN, "dribbles_box": 4.0, "dribbles_last_third": 17.5, "duration_s": 5671.5, "hold_max": 72.5, "hold_mean": 3.5511, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 27.5, "n_events": 1639.5, "n_involved": NaN, "n_passes": 892.0, "opt_quality_mean": NaN, "paredes": 89.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5342, "pct_afuera": 0.463, "pct_cortos": 0.4629, "pct_headpass": 0.0409, "pct_largos": 0.129, "pct_launch": 0.0331, "pct_layoff": 0.0112, "pct_medios": 0.4081, "pct_switch": 0.0045, "pct_through": 0.0039, "pct_verticales": 0.4287, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 13.0, "tempo": 0.1575, "transition_speed": 0.0177, "verticalidad_media": 0.2198}, "Sparta Praha": {"atk_l": 44.3013, "atk_w": 31.2869, "ball_distance": 146.726, "behind_line_ok": 0.0506, "broke_last_line": 0.0346, "broke_second_last": 0.1561, "cross_pvadded_max": 0.0007, "dang_runs": 0.1164, "deep_completions": 0.3498, "def_h": 30.7583, "dribbles_box": 0.02, "dribbles_last_third": 0.0787, "duration_s": 29.9604, "hold_max": 10.1132, "hold_mean": 5.9486, "hold_min": 3.7209, "line_breaks": 0.5397, "max_x": 68.0792, "n_centros": 0.1264, "n_events": 5.9057, "n_involved": 1.9888, "n_passes": 3.6723, "opt_quality_mean": 0.1214, "paredes": 0.383, "pass_options_mean": 8.2449, "passes_behind_line": 0.1047, "pct_adentro": 0.5113, "pct_afuera": 0.4126, "pct_cortos": 0.418, "pct_headpass": 0.0475, "pct_largos": 0.1768, "pct_launch": 0.0769, "pct_layoff": 0.0092, "pct_medios": 0.3299, "pct_switch": 0.0054, "pct_through": 0.0021, "pct_verticales": 0.454, "pelotazos_espalda": 0.0645, "press_final": 2.6647, "press_media": 1.9348, "prog_x": 21.5506, "start_x": 47.6563, "starts_from_dispossess": 0.0409, "takeons_ok": 0.0476, "tempo": 0.3711, "transition_speed": 2.7692, "verticalidad_media": 0.2938}, "Spartak Trnava": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.2287, "dang_runs": 0.0, "deep_completions": 80.0, "def_h": NaN, "dribbles_box": 4.0, "dribbles_last_third": 23.0, "duration_s": 5722.0, "hold_max": 92.0, "hold_mean": 3.664, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 38.0, "n_events": 1612.0, "n_involved": NaN, "n_passes": 818.0, "opt_quality_mean": NaN, "paredes": 84.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5428, "pct_afuera": 0.456, "pct_cortos": 0.4487, "pct_headpass": 0.0513, "pct_largos": 0.143, "pct_launch": 0.0416, "pct_layoff": 0.0293, "pct_medios": 0.4083, "pct_switch": 0.0037, "pct_through": 0.0024, "pct_verticales": 0.4487, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 13.0, "tempo": 0.143, "transition_speed": 0.0175, "verticalidad_media": 0.2361}, "St Patrick's Athletic": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.0668, "dang_runs": 0.0, "deep_completions": 96.0, "def_h": NaN, "dribbles_box": 1.0, "dribbles_last_third": 11.0, "duration_s": 5675.0, "hold_max": 91.0, "hold_mean": 3.5599, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 29.0, "n_events": 1647.0, "n_involved": NaN, "n_passes": 1072.0, "opt_quality_mean": NaN, "paredes": 106.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5271, "pct_afuera": 0.472, "pct_cortos": 0.4618, "pct_headpass": 0.0233, "pct_largos": 0.1026, "pct_launch": 0.0252, "pct_layoff": 0.014, "pct_medios": 0.4356, "pct_switch": 0.0056, "pct_through": 0.0, "pct_verticales": 0.3759, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 7.0, "tempo": 0.1889, "transition_speed": 0.0176, "verticalidad_media": 0.1552}, "Strasbourg": {"atk_l": 43.6785, "atk_w": 32.8484, "ball_distance": 211.0902, "behind_line_ok": 0.0564, "broke_last_line": 0.0347, "broke_second_last": 0.2037, "cross_pvadded_max": 0.0018, "dang_runs": 0.1767, "deep_completions": 0.3612, "def_h": 33.1232, "dribbles_box": 0.0174, "dribbles_last_third": 0.0685, "duration_s": 38.4604, "hold_max": 10.3953, "hold_mean": 5.4868, "hold_min": 3.0729, "line_breaks": 1.2341, "max_x": 65.9274, "n_centros": 0.1029, "n_events": 7.2553, "n_involved": 2.1889, "n_passes": 4.2141, "opt_quality_mean": 0.0314, "paredes": 0.4464, "pass_options_mean": 8.9983, "passes_behind_line": 0.1206, "pct_adentro": 0.5153, "pct_afuera": 0.397, "pct_cortos": 0.4559, "pct_headpass": 0.0395, "pct_largos": 0.1585, "pct_launch": 0.0494, "pct_layoff": 0.0165, "pct_medios": 0.298, "pct_switch": 0.002, "pct_through": 0.0032, "pct_verticales": 0.4166, "pelotazos_espalda": 0.0804, "press_final": 2.5661, "press_media": 1.8864, "prog_x": 23.5922, "start_x": 43.2252, "starts_from_dispossess": 0.0459, "takeons_ok": 0.0622, "tempo": 0.3875, "transition_speed": 2.6865, "verticalidad_media": 0.2671}, "Universitatea Craiova": {"atk_l": 42.8194, "atk_w": 34.0557, "ball_distance": 72.5049, "behind_line_ok": 0.0213, "broke_last_line": 0.0125, "broke_second_last": 0.094, "cross_pvadded_max": 0.0711, "dang_runs": 0.0598, "deep_completions": 30.3437, "def_h": 36.5482, "dribbles_box": 1.6766, "dribbles_last_third": 5.4741, "duration_s": 1948.5034, "hold_max": 56.7872, "hold_mean": 4.5596, "hold_min": 1.6648, "line_breaks": 0.3623, "max_x": 73.1071, "n_centros": 12.6942, "n_events": 537.1622, "n_involved": 1.9139, "n_passes": 297.2588, "opt_quality_mean": -0.1702, "paredes": 30.9204, "pass_options_mean": 6.5733, "passes_behind_line": 0.0655, "pct_adentro": 0.4886, "pct_afuera": 0.4508, "pct_cortos": 0.4377, "pct_headpass": 0.0459, "pct_largos": 0.1639, "pct_launch": 0.0711, "pct_layoff": 0.0119, "pct_medios": 0.339, "pct_switch": 0.007, "pct_through": 0.0025, "pct_verticales": 0.4616, "pelotazos_espalda": 0.0493, "press_final": 1.8562, "press_media": 1.3437, "prog_x": 47.9796, "start_x": 26.0512, "starts_from_dispossess": 0.0167, "takeons_ok": 4.814, "tempo": 0.3491, "transition_speed": 2.7398, "verticalidad_media": 0.2936}, "Vaduz": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.2558, "dang_runs": 0.0, "deep_completions": 144.5, "def_h": NaN, "dribbles_box": 3.0, "dribbles_last_third": 11.5, "duration_s": 5672.5, "hold_max": 105.0, "hold_mean": 3.4053, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 45.5, "n_events": 1709.0, "n_involved": NaN, "n_passes": 1067.5, "opt_quality_mean": NaN, "paredes": 156.5, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5371, "pct_afuera": 0.4629, "pct_cortos": 0.4933, "pct_headpass": 0.0515, "pct_largos": 0.1048, "pct_launch": 0.0293, "pct_layoff": 0.0146, "pct_medios": 0.4018, "pct_switch": 0.0019, "pct_through": 0.0005, "pct_verticales": 0.4171, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 13.0, "tempo": 0.1882, "transition_speed": 0.0176, "verticalidad_media": 0.1851}, "Vardar Skopje": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1439, "dang_runs": 0.0, "deep_completions": 66.0, "def_h": NaN, "dribbles_box": 3.0, "dribbles_last_third": 13.0, "duration_s": 5873.0, "hold_max": 579.0, "hold_mean": 4.241, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 34.0, "n_events": 1467.0, "n_involved": NaN, "n_passes": 698.0, "opt_quality_mean": NaN, "paredes": 64.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5272, "pct_afuera": 0.4713, "pct_cortos": 0.4384, "pct_headpass": 0.0974, "pct_largos": 0.1662, "pct_launch": 0.0645, "pct_layoff": 0.0115, "pct_medios": 0.3954, "pct_switch": 0.0029, "pct_through": 0.0029, "pct_verticales": 0.5129, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 17.0, "tempo": 0.1188, "transition_speed": 0.017, "verticalidad_media": 0.3024}, "Viking": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.3142, "dang_runs": 0.0, "deep_completions": 92.0, "def_h": NaN, "dribbles_box": 7.0, "dribbles_last_third": 14.0, "duration_s": 5840.0, "hold_max": 102.0, "hold_mean": 4.0683, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 34.0, "n_events": 1467.0, "n_involved": NaN, "n_passes": 879.0, "opt_quality_mean": NaN, "paredes": 65.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5267, "pct_afuera": 0.4721, "pct_cortos": 0.3174, "pct_headpass": 0.0853, "pct_largos": 0.1968, "pct_launch": 0.0546, "pct_layoff": 0.0, "pct_medios": 0.4858, "pct_switch": 0.0137, "pct_through": 0.0011, "pct_verticales": 0.4141, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 16.0, "tempo": 0.1505, "transition_speed": 0.0171, "verticalidad_media": 0.1952}, "Víkingur Reykjavík": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1764, "dang_runs": 0.0, "deep_completions": 86.5, "def_h": NaN, "dribbles_box": 2.0, "dribbles_last_third": 13.5, "duration_s": 5707.0, "hold_max": 89.0, "hold_mean": 3.6931, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 31.5, "n_events": 1586.0, "n_involved": NaN, "n_passes": 974.5, "opt_quality_mean": NaN, "paredes": 109.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5168, "pct_afuera": 0.4827, "pct_cortos": 0.4111, "pct_headpass": 0.0331, "pct_largos": 0.154, "pct_launch": 0.0499, "pct_layoff": 0.0098, "pct_medios": 0.4349, "pct_switch": 0.0066, "pct_through": 0.0, "pct_verticales": 0.3944, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 14.0, "tempo": 0.1708, "transition_speed": 0.0175, "verticalidad_media": 0.166}, "Wolfsberger AC": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1194, "dang_runs": 0.0, "deep_completions": 128.5, "def_h": NaN, "dribbles_box": 5.5, "dribbles_last_third": 20.0, "duration_s": 5713.0, "hold_max": 86.5, "hold_mean": 3.6372, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 39.0, "n_events": 1614.0, "n_involved": NaN, "n_passes": 929.0, "opt_quality_mean": NaN, "paredes": 83.5, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5478, "pct_afuera": 0.4505, "pct_cortos": 0.4678, "pct_headpass": 0.0399, "pct_largos": 0.1337, "pct_launch": 0.0237, "pct_layoff": 0.0129, "pct_medios": 0.3985, "pct_switch": 0.0135, "pct_through": 0.0027, "pct_verticales": 0.4171, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 15.5, "tempo": 0.1626, "transition_speed": 0.0175, "verticalidad_media": 0.2177}, "Zrinjski": {"atk_l": 42.0957, "atk_w": 31.833, "ball_distance": 103.1791, "behind_line_ok": 0.0395, "broke_last_line": 0.0229, "broke_second_last": 0.1366, "cross_pvadded_max": 0.0013, "dang_runs": 0.0877, "deep_completions": 0.241, "def_h": 34.3526, "dribbles_box": 0.0082, "dribbles_last_third": 0.0462, "duration_s": 25.9351, "hold_max": 9.6419, "hold_mean": 5.7211, "hold_min": 3.4175, "line_breaks": 0.4879, "max_x": 63.546, "n_centros": 0.0993, "n_events": 5.0443, "n_involved": 1.7858, "n_passes": 2.5827, "opt_quality_mean": -0.0464, "paredes": 0.2129, "pass_options_mean": 9.2716, "passes_behind_line": 0.1084, "pct_adentro": 0.4748, "pct_afuera": 0.4359, "pct_cortos": 0.3852, "pct_headpass": 0.0569, "pct_largos": 0.2007, "pct_launch": 0.0858, "pct_layoff": 0.0082, "pct_medios": 0.3248, "pct_switch": 0.0086, "pct_through": 0.0031, "pct_verticales": 0.4966, "pelotazos_espalda": 0.0748, "press_final": 2.6969, "press_media": 1.8811, "prog_x": 23.3664, "start_x": 41.0821, "starts_from_dispossess": 0.037, "takeons_ok": 0.0422, "tempo": 0.4086, "transition_speed": 4.0993, "verticalidad_media": 0.3759}, "İstanbul Başakşehir": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1865, "dang_runs": 0.0, "deep_completions": 80.0, "def_h": NaN, "dribbles_box": 1.0, "dribbles_last_third": 11.0, "duration_s": 5858.0, "hold_max": 89.0, "hold_mean": 3.9993, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 18.0, "n_events": 1498.0, "n_involved": NaN, "n_passes": 835.0, "opt_quality_mean": NaN, "paredes": 67.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5365, "pct_afuera": 0.4623, "pct_cortos": 0.3976, "pct_headpass": 0.0934, "pct_largos": 0.2036, "pct_launch": 0.1054, "pct_layoff": 0.012, "pct_medios": 0.3988, "pct_switch": 0.0096, "pct_through": 0.0, "pct_verticales": 0.4431, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 12.0, "tempo": 0.1425, "transition_speed": 0.0171, "verticalidad_media": 0.2205}}, "team_eje_norm_gen": {"AEK Athens": {"eje_verticalidad": -0.1418, "eje_elaboracion": 2.7645, "eje_individual": 3.3804, "eje_rotura_lineas": -0.0087, "eje_amplitud_centro": 1.2645, "eje_profundidad_espalda": 1.0992, "eje_robo_alto": -0.0798, "eje_aereo_segunda": -0.0428}, "AEK Larnaca": {"eje_verticalidad": 0.0719, "eje_elaboracion": -0.031, "eje_individual": -0.0344, "eje_rotura_lineas": 0.0079, "eje_amplitud_centro": 0.0174, "eje_profundidad_espalda": 0.0397, "eje_robo_alto": -0.0818, "eje_aereo_segunda": 0.011}, "AIK": {"eje_verticalidad": -0.1163, "eje_elaboracion": 12.2694, "eje_individual": 17.9715, "eje_rotura_lineas": -0.2219, "eje_amplitud_centro": 7.8428, "eje_profundidad_espalda": 5.3403, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.1615}, "AZ": {"eje_verticalidad": -0.1746, "eje_elaboracion": 3.3403, "eje_individual": 3.3197, "eje_rotura_lineas": -0.022, "eje_amplitud_centro": 0.8719, "eje_profundidad_espalda": 1.176, "eje_robo_alto": -0.1116, "eje_aereo_segunda": -0.0347}, "Aberdeen": {"eje_verticalidad": 0.0697, "eje_elaboracion": -0.0327, "eje_individual": -0.0321, "eje_rotura_lineas": -0.0498, "eje_amplitud_centro": -0.0363, "eje_profundidad_espalda": -0.0049, "eje_robo_alto": 0.0443, "eje_aereo_segunda": -0.0005}, "Aris Limassol": {"eje_verticalidad": -0.1823, "eje_elaboracion": 13.0767, "eje_individual": 11.8543, "eje_rotura_lineas": -0.2215, "eje_amplitud_centro": 6.3815, "eje_profundidad_espalda": 3.6568, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0225}, "Baník Ostrava": {"eje_verticalidad": -0.1561, "eje_elaboracion": 14.3394, "eje_individual": 10.2338, "eje_rotura_lineas": -0.2056, "eje_amplitud_centro": 9.0604, "eje_profundidad_espalda": 5.7411, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0082}, "Beşiktaş": {"eje_verticalidad": -0.2694, "eje_elaboracion": 16.8627, "eje_individual": 17.0375, "eje_rotura_lineas": -0.2148, "eje_amplitud_centro": 5.8233, "eje_profundidad_espalda": 6.1864, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0926}, "Breidablik": {"eje_verticalidad": -0.0098, "eje_elaboracion": -0.0395, "eje_individual": -0.0279, "eje_rotura_lineas": -0.0368, "eje_amplitud_centro": -0.0189, "eje_profundidad_espalda": -0.0642, "eje_robo_alto": -0.0627, "eje_aereo_segunda": -0.0473}, "Brøndby": {"eje_verticalidad": -0.3235, "eje_elaboracion": 15.2592, "eje_individual": 15.8422, "eje_rotura_lineas": -0.2221, "eje_amplitud_centro": 8.4183, "eje_profundidad_espalda": 5.0196, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0625}, "Celje": {"eje_verticalidad": -0.1106, "eje_elaboracion": -0.0295, "eje_individual": 0.0005, "eje_rotura_lineas": 0.0137, "eje_amplitud_centro": 0.0144, "eje_profundidad_espalda": -0.0414, "eje_robo_alto": -0.0619, "eje_aereo_segunda": -0.0842}, "Cherno more Varna": {"eje_verticalidad": -0.3554, "eje_elaboracion": 13.6311, "eje_individual": 10.7759, "eje_rotura_lineas": -0.219, "eje_amplitud_centro": 7.6516, "eje_profundidad_espalda": 3.8706, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.06}, "Crystal Palace": {"eje_verticalidad": -0.0409, "eje_elaboracion": 1.6806, "eje_individual": 1.0025, "eje_rotura_lineas": 0.0264, "eje_amplitud_centro": 0.9799, "eje_profundidad_espalda": 0.7168, "eje_robo_alto": -0.0734, "eje_aereo_segunda": 0.0073}, "Dečić": {"eje_verticalidad": -0.2152, "eje_elaboracion": 13.9487, "eje_individual": 12.5529, "eje_rotura_lineas": -0.225, "eje_amplitud_centro": 8.9813, "eje_profundidad_espalda": 4.7791, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.1098}, "Drita": {"eje_verticalidad": 0.0879, "eje_elaboracion": -0.0665, "eje_individual": -0.0389, "eje_rotura_lineas": -0.0727, "eje_amplitud_centro": -0.0062, "eje_profundidad_espalda": 0.0114, "eje_robo_alto": -0.0635, "eje_aereo_segunda": -0.0036}, "Dundee United": {"eje_verticalidad": -0.1511, "eje_elaboracion": 13.0027, "eje_individual": 16.2348, "eje_rotura_lineas": -0.2187, "eje_amplitud_centro": 8.9489, "eje_profundidad_espalda": 5.4739, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.0071}, "Dungannon Swifts": {"eje_verticalidad": -0.1744, "eje_elaboracion": 16.3523, "eje_individual": 10.9137, "eje_rotura_lineas": -0.225, "eje_amplitud_centro": 13.4334, "eje_profundidad_espalda": 6.8099, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.0078}, "Dynamo Kyiv": {"eje_verticalidad": -0.1095, "eje_elaboracion": -0.0161, "eje_individual": -0.0161, "eje_rotura_lineas": 0.0757, "eje_amplitud_centro": 0.0034, "eje_profundidad_espalda": 0.0096, "eje_robo_alto": -0.0123, "eje_aereo_segunda": -0.0233}, "Fiorentina": {"eje_verticalidad": -0.0708, "eje_elaboracion": -0.0326, "eje_individual": -0.0201, "eje_rotura_lineas": -0.0068, "eje_amplitud_centro": -0.0406, "eje_profundidad_espalda": -0.0224, "eje_robo_alto": -0.0249, "eje_aereo_segunda": 0.0566}, "HB": {"eje_verticalidad": -0.311, "eje_elaboracion": 17.107, "eje_individual": 13.0985, "eje_rotura_lineas": -0.225, "eje_amplitud_centro": 9.5076, "eje_profundidad_espalda": 9.1347, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0405}, "Hamrun Spartans": {"eje_verticalidad": 0.0997, "eje_elaboracion": -0.028, "eje_individual": -0.0451, "eje_rotura_lineas": -0.0397, "eje_amplitud_centro": 0.0174, "eje_profundidad_espalda": -0.0293, "eje_robo_alto": -0.0373, "eje_aereo_segunda": -0.034}, "Hibernian": {"eje_verticalidad": -0.233, "eje_elaboracion": 15.5855, "eje_individual": 11.936, "eje_rotura_lineas": -0.2185, "eje_amplitud_centro": 6.7126, "eje_profundidad_espalda": 4.7791, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.0252}, "Häcken": {"eje_verticalidad": -0.1404, "eje_elaboracion": 2.3182, "eje_individual": 2.8918, "eje_rotura_lineas": -0.0008, "eje_amplitud_centro": 1.1456, "eje_profundidad_espalda": 0.8815, "eje_robo_alto": -0.0668, "eje_aereo_segunda": -0.0144}, "Ilves": {"eje_verticalidad": -0.3122, "eje_elaboracion": 15.753, "eje_individual": 23.1599, "eje_rotura_lineas": -0.2074, "eje_amplitud_centro": 5.6197, "eje_profundidad_espalda": 7.7185, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.023}, "Jagiellonia Białystok": {"eje_verticalidad": -0.1272, "eje_elaboracion": 3.8478, "eje_individual": 2.8773, "eje_rotura_lineas": -0.0348, "eje_amplitud_centro": 1.4833, "eje_profundidad_espalda": 1.2368, "eje_robo_alto": -0.1953, "eje_aereo_segunda": -0.0292}, "KA": {"eje_verticalidad": -0.3432, "eje_elaboracion": 17.7691, "eje_individual": 7.4925, "eje_rotura_lineas": -0.225, "eje_amplitud_centro": 5.3974, "eje_profundidad_espalda": 5.4739, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0832}, "KuPS": {"eje_verticalidad": -0.0901, "eje_elaboracion": -0.0135, "eje_individual": -0.0433, "eje_rotura_lineas": 0.0424, "eje_amplitud_centro": -0.0073, "eje_profundidad_espalda": 0.0015, "eje_robo_alto": -0.0661, "eje_aereo_segunda": -0.0569}, "Lausanne-Sport": {"eje_verticalidad": -0.0669, "eje_elaboracion": 3.925, "eje_individual": 4.0169, "eje_rotura_lineas": -0.0405, "eje_amplitud_centro": 2.1836, "eje_profundidad_espalda": 1.542, "eje_robo_alto": -0.2261, "eje_aereo_segunda": 0.0069}, "Lech Poznań": {"eje_verticalidad": -0.106, "eje_elaboracion": 0.0024, "eje_individual": -0.0205, "eje_rotura_lineas": 0.0311, "eje_amplitud_centro": 0.0077, "eje_profundidad_espalda": 0.0196, "eje_robo_alto": -0.0018, "eje_aereo_segunda": -0.0518}, "Legia Warszawa": {"eje_verticalidad": -0.0728, "eje_elaboracion": 2.033, "eje_individual": 0.9324, "eje_rotura_lineas": -0.0278, "eje_amplitud_centro": 1.1555, "eje_profundidad_espalda": 0.8153, "eje_robo_alto": -0.1034, "eje_aereo_segunda": 0.0239}, "Levski Sofia": {"eje_verticalidad": -0.3412, "eje_elaboracion": 15.6395, "eje_individual": 13.8813, "eje_rotura_lineas": -0.213, "eje_amplitud_centro": 6.2814, "eje_profundidad_espalda": 5.0998, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0862}, "Lincoln Red Imps": {"eje_verticalidad": 0.1606, "eje_elaboracion": -0.067, "eje_individual": -0.0409, "eje_rotura_lineas": -0.0564, "eje_amplitud_centro": -0.0008, "eje_profundidad_espalda": -0.0066, "eje_robo_alto": -0.0915, "eje_aereo_segunda": -0.0036}, "Lugano": {"eje_verticalidad": -0.2968, "eje_elaboracion": 13.5927, "eje_individual": 19.574, "eje_rotura_lineas": -0.218, "eje_amplitud_centro": 7.1138, "eje_profundidad_espalda": 5.7945, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.1344}, "Maccabi Haifa": {"eje_verticalidad": -0.3359, "eje_elaboracion": 12.8527, "eje_individual": 11.0583, "eje_rotura_lineas": -0.2047, "eje_amplitud_centro": 7.3958, "eje_profundidad_espalda": 4.1912, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0501}, "Mainz 05": {"eje_verticalidad": -0.0279, "eje_elaboracion": 1.0976, "eje_individual": 0.6729, "eje_rotura_lineas": -0.0379, "eje_amplitud_centro": 0.8386, "eje_profundidad_espalda": 0.5627, "eje_robo_alto": -0.0254, "eje_aereo_segunda": 0.045}, "Neman Grodno": {"eje_verticalidad": -0.2047, "eje_elaboracion": 14.0793, "eje_individual": 16.6904, "eje_rotura_lineas": -0.2218, "eje_amplitud_centro": 7.1689, "eje_profundidad_espalda": 4.6722, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.0291}, "Noah": {"eje_verticalidad": -0.0606, "eje_elaboracion": -0.0203, "eje_individual": -0.0494, "eje_rotura_lineas": 0.0035, "eje_amplitud_centro": -0.0099, "eje_profundidad_espalda": 0.0044, "eje_robo_alto": -0.0593, "eje_aereo_segunda": 0.0401}, "Omonia Nicosia": {"eje_verticalidad": 0.034, "eje_elaboracion": -0.029, "eje_individual": -0.0411, "eje_rotura_lineas": 0.0032, "eje_amplitud_centro": 0.0037, "eje_profundidad_espalda": 0.0021, "eje_robo_alto": -0.0543, "eje_aereo_segunda": -0.0179}, "Polissya": {"eje_verticalidad": -0.2875, "eje_elaboracion": 14.1948, "eje_individual": 17.4346, "eje_rotura_lineas": -0.2087, "eje_amplitud_centro": 9.5069, "eje_profundidad_espalda": 5.1131, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.0739}, "Pyunik": {"eje_verticalidad": -0.2088, "eje_elaboracion": 14.7426, "eje_individual": 17.5219, "eje_rotura_lineas": -0.2216, "eje_amplitud_centro": 8.1208, "eje_profundidad_espalda": 4.9394, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.0326}, "Raków Częstochowa": {"eje_verticalidad": -0.0844, "eje_elaboracion": 3.8778, "eje_individual": 3.4759, "eje_rotura_lineas": -0.0621, "eje_amplitud_centro": 1.4758, "eje_profundidad_espalda": 1.0097, "eje_robo_alto": -0.2545, "eje_aereo_segunda": 0.0171}, "Rapid": {"eje_verticalidad": -0.0859, "eje_elaboracion": 5.8015, "eje_individual": 7.5312, "eje_rotura_lineas": -0.1159, "eje_amplitud_centro": 3.217, "eje_profundidad_espalda": 2.375, "eje_robo_alto": -0.365, "eje_aereo_segunda": 0.009}, "Rayo Vallecano": {"eje_verticalidad": -0.001, "eje_elaboracion": -0.0368, "eje_individual": -0.0106, "eje_rotura_lineas": -0.0186, "eje_amplitud_centro": -0.0081, "eje_profundidad_espalda": 0.0132, "eje_robo_alto": 0.0314, "eje_aereo_segunda": 0.0257}, "Rijeka": {"eje_verticalidad": 0.0325, "eje_elaboracion": -0.0497, "eje_individual": -0.0223, "eje_rotura_lineas": -0.0273, "eje_amplitud_centro": 0.0106, "eje_profundidad_espalda": 0.01, "eje_robo_alto": -0.0187, "eje_aereo_segunda": 0.0116}, "Rosenborg": {"eje_verticalidad": -0.3002, "eje_elaboracion": 15.5543, "eje_individual": 15.4212, "eje_rotura_lineas": -0.225, "eje_amplitud_centro": 8.1271, "eje_profundidad_espalda": 7.5581, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0443}, "Samsunspor": {"eje_verticalidad": -0.0441, "eje_elaboracion": -0.0425, "eje_individual": -0.0257, "eje_rotura_lineas": 0.0385, "eje_amplitud_centro": 0.0157, "eje_profundidad_espalda": -0.029, "eje_robo_alto": 0.0463, "eje_aereo_segunda": 0.0155}, "Servette": {"eje_verticalidad": -0.3003, "eje_elaboracion": 15.0144, "eje_individual": 15.0226, "eje_rotura_lineas": -0.225, "eje_amplitud_centro": 7.4441, "eje_profundidad_espalda": 5.5808, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0914}, "Shakhtar Donetsk": {"eje_verticalidad": -0.2282, "eje_elaboracion": 1.3399, "eje_individual": 1.4193, "eje_rotura_lineas": 0.0467, "eje_amplitud_centro": 0.5277, "eje_profundidad_espalda": 0.3666, "eje_robo_alto": 0.0223, "eje_aereo_segunda": -0.0662}, "Shamrock Rovers": {"eje_verticalidad": 0.0885, "eje_elaboracion": -0.0315, "eje_individual": -0.0462, "eje_rotura_lineas": -0.0616, "eje_amplitud_centro": -0.0093, "eje_profundidad_espalda": 0.0541, "eje_robo_alto": -0.0808, "eje_aereo_segunda": 0.0212}, "Shelbourne": {"eje_verticalidad": 0.1626, "eje_elaboracion": -0.0625, "eje_individual": -0.0594, "eje_rotura_lineas": -0.0291, "eje_amplitud_centro": -0.0226, "eje_profundidad_espalda": 0.0263, "eje_robo_alto": -0.0817, "eje_aereo_segunda": 0.0598}, "Sheriff": {"eje_verticalidad": -0.3014, "eje_elaboracion": 15.1447, "eje_individual": 29.4944, "eje_rotura_lineas": -0.207, "eje_amplitud_centro": 8.3033, "eje_profundidad_espalda": 6.4893, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.1168}, "Shkendija": {"eje_verticalidad": 0.12, "eje_elaboracion": -0.0616, "eje_individual": -0.0432, "eje_rotura_lineas": -0.0262, "eje_amplitud_centro": -0.0257, "eje_profundidad_espalda": -0.0537, "eje_robo_alto": -0.0833, "eje_aereo_segunda": 0.0407}, "Sigma Olomouc": {"eje_verticalidad": 0.1127, "eje_elaboracion": -0.0665, "eje_individual": -0.0242, "eje_rotura_lineas": -0.077, "eje_amplitud_centro": 0.0129, "eje_profundidad_espalda": -0.006, "eje_robo_alto": 0.001, "eje_aereo_segunda": 0.1148}, "Silkeborg": {"eje_verticalidad": -0.3737, "eje_elaboracion": 20.9261, "eje_individual": 3.8224, "eje_rotura_lineas": -0.225, "eje_amplitud_centro": 5.1985, "eje_profundidad_espalda": 5.0463, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0765}, "Slovan Bratislava": {"eje_verticalidad": -0.0407, "eje_elaboracion": -0.008, "eje_individual": -0.0176, "eje_rotura_lineas": -0.0294, "eje_amplitud_centro": -0.018, "eje_profundidad_espalda": -0.0656, "eje_robo_alto": -0.0743, "eje_aereo_segunda": -0.0542}, "Spaeri": {"eje_verticalidad": -0.271, "eje_elaboracion": 14.5313, "eje_individual": 15.2421, "eje_rotura_lineas": -0.2026, "eje_amplitud_centro": 6.1588, "eje_profundidad_espalda": 5.7945, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0661}, "Sparta Praha": {"eje_verticalidad": -0.084, "eje_elaboracion": -0.0089, "eje_individual": -0.0195, "eje_rotura_lineas": -0.0178, "eje_amplitud_centro": -0.0075, "eje_profundidad_espalda": -0.0368, "eje_robo_alto": 0.0511, "eje_aereo_segunda": -0.0022}, "Spartak Trnava": {"eje_verticalidad": -0.237, "eje_elaboracion": 13.7744, "eje_individual": 17.082, "eje_rotura_lineas": -0.2111, "eje_amplitud_centro": 8.496, "eje_profundidad_espalda": 4.0309, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.0753}, "St Patrick's Athletic": {"eje_verticalidad": -0.3653, "eje_elaboracion": 16.7204, "eje_individual": 7.3882, "eje_rotura_lineas": -0.225, "eje_amplitud_centro": 6.5099, "eje_profundidad_espalda": 4.886, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.099}, "Strasbourg": {"eje_verticalidad": -0.1437, "eje_elaboracion": 0.0287, "eje_individual": -0.0038, "eje_rotura_lineas": 0.0825, "eje_amplitud_centro": -0.0491, "eje_profundidad_espalda": -0.0039, "eje_robo_alto": -0.0206, "eje_aereo_segunda": -0.0151}, "Universitatea Craiova": {"eje_verticalidad": -0.0908, "eje_elaboracion": 4.9088, "eje_individual": 5.4682, "eje_rotura_lineas": -0.1017, "eje_amplitud_centro": 2.8508, "eje_profundidad_espalda": 1.4922, "eje_robo_alto": -0.4157, "eje_aereo_segunda": 0.002}, "Vaduz": {"eje_verticalidad": -0.3181, "eje_elaboracion": 19.7903, "eje_individual": 12.1151, "eje_rotura_lineas": -0.2224, "eje_amplitud_centro": 10.169, "eje_profundidad_espalda": 7.478, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0282}, "Vardar Skopje": {"eje_verticalidad": -0.1364, "eje_elaboracion": 11.8723, "eje_individual": 14.1636, "eje_rotura_lineas": -0.2087, "eje_amplitud_centro": 7.6106, "eje_profundidad_espalda": 3.2827, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.1028}, "Viking": {"eje_verticalidad": -0.2431, "eje_elaboracion": 12.9907, "eje_individual": 18.5906, "eje_rotura_lineas": -0.2185, "eje_amplitud_centro": 7.6797, "eje_profundidad_espalda": 4.6722, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0048}, "Víkingur Reykjavík": {"eje_verticalidad": -0.3068, "eje_elaboracion": 16.2657, "eje_individual": 12.0511, "eje_rotura_lineas": -0.225, "eje_amplitud_centro": 7.0856, "eje_profundidad_espalda": 4.3783, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0677}, "Wolfsberger AC": {"eje_verticalidad": -0.2763, "eje_elaboracion": 14.461, "eje_individual": 18.7247, "eje_rotura_lineas": -0.2097, "eje_amplitud_centro": 8.7772, "eje_profundidad_espalda": 6.6229, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0714}, "Zrinjski": {"eje_verticalidad": 0.052, "eje_elaboracion": -0.0504, "eje_individual": -0.0535, "eje_rotura_lineas": -0.0454, "eje_amplitud_centro": 0.029, "eje_profundidad_espalda": -0.0427, "eje_robo_alto": -0.0826, "eje_aereo_segunda": 0.0247}, "İstanbul Başakşehir": {"eje_verticalidad": -0.2033, "eje_elaboracion": 12.8953, "eje_individual": 9.3216, "eje_rotura_lineas": -0.225, "eje_amplitud_centro": 4.065, "eje_profundidad_espalda": 4.0309, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.1541}}, "team_eje_norm_con": {"AEK Athens": {"eje_verticalidad": -0.0078, "eje_elaboracion": -0.0301, "eje_individual": -0.016, "eje_rotura_lineas": -0.0399, "eje_amplitud_centro": 0.0, "eje_profundidad_espalda": -0.0093, "eje_robo_alto": -0.0778, "eje_aereo_segunda": -0.0172}, "AEK Larnaca": {"eje_verticalidad": -0.0221, "eje_elaboracion": -0.0256, "eje_individual": -0.0142, "eje_rotura_lineas": 0.0324, "eje_amplitud_centro": -0.0306, "eje_profundidad_espalda": 0.0531, "eje_robo_alto": 0.0328, "eje_aereo_segunda": -0.0208}, "AZ": {"eje_verticalidad": -0.0442, "eje_elaboracion": 3.2588, "eje_individual": 3.065, "eje_rotura_lineas": -0.0544, "eje_amplitud_centro": 1.5924, "eje_profundidad_espalda": 1.544, "eje_robo_alto": -0.2364, "eje_aereo_segunda": -0.0053}, "Aberdeen": {"eje_verticalidad": -0.1489, "eje_elaboracion": 0.0094, "eje_individual": -0.0162, "eje_rotura_lineas": 0.0639, "eje_amplitud_centro": -0.0048, "eje_profundidad_espalda": 0.01, "eje_robo_alto": 0.0319, "eje_aereo_segunda": -0.0109}, "Anderlecht": {"eje_verticalidad": -0.3049, "eje_elaboracion": 16.177, "eje_individual": 23.3237, "eje_rotura_lineas": -0.209, "eje_amplitud_centro": 7.9294, "eje_profundidad_espalda": 6.5605, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0371}, "Arda Kardzhali": {"eje_verticalidad": -0.2831, "eje_elaboracion": 14.5423, "eje_individual": 16.2728, "eje_rotura_lineas": -0.1976, "eje_amplitud_centro": 4.2771, "eje_profundidad_espalda": 3.256, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.0993}, "Astana": {"eje_verticalidad": -0.2657, "eje_elaboracion": 14.1011, "eje_individual": 13.8138, "eje_rotura_lineas": -0.2221, "eje_amplitud_centro": 8.3823, "eje_profundidad_espalda": 6.1953, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.1091}, "Austria Wien": {"eje_verticalidad": -0.2135, "eje_elaboracion": 14.4353, "eje_individual": 12.7379, "eje_rotura_lineas": -0.2041, "eje_amplitud_centro": 7.6096, "eje_profundidad_espalda": 5.7678, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0371}, "Beşiktaş": {"eje_verticalidad": -0.3653, "eje_elaboracion": 16.7204, "eje_individual": 7.3882, "eje_rotura_lineas": -0.225, "eje_amplitud_centro": 6.5099, "eje_profundidad_espalda": 4.886, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.099}, "Breidablik": {"eje_verticalidad": -0.1826, "eje_elaboracion": 0.0213, "eje_individual": -0.0149, "eje_rotura_lineas": 0.1443, "eje_amplitud_centro": -0.0023, "eje_profundidad_espalda": 0.0062, "eje_robo_alto": 0.1743, "eje_aereo_segunda": -0.0625}, "Brøndby": {"eje_verticalidad": -0.3089, "eje_elaboracion": 16.6864, "eje_individual": 12.5748, "eje_rotura_lineas": -0.225, "eje_amplitud_centro": 8.2966, "eje_profundidad_espalda": 6.7565, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0541}, "CFR Cluj": {"eje_verticalidad": -0.2457, "eje_elaboracion": 16.0825, "eje_individual": 20.4315, "eje_rotura_lineas": -0.2079, "eje_amplitud_centro": 8.0811, "eje_profundidad_espalda": 6.2755, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.0715}, "Celje": {"eje_verticalidad": -0.0623, "eje_elaboracion": 2.2222, "eje_individual": 3.2662, "eje_rotura_lineas": -0.0645, "eje_amplitud_centro": 1.1609, "eje_profundidad_espalda": 0.9476, "eje_robo_alto": -0.1074, "eje_aereo_segunda": -0.0382}, "Crystal Palace": {"eje_verticalidad": 0.0488, "eje_elaboracion": -0.0386, "eje_individual": -0.0389, "eje_rotura_lineas": -0.0133, "eje_amplitud_centro": 0.0081, "eje_profundidad_espalda": 0.0106, "eje_robo_alto": -0.1033, "eje_aereo_segunda": 0.0235}, "Dečić": {"eje_verticalidad": -0.2786, "eje_elaboracion": 16.3076, "eje_individual": 17.9075, "eje_rotura_lineas": -0.2193, "eje_amplitud_centro": 7.4098, "eje_profundidad_espalda": 6.8634, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0344}, "Drita": {"eje_verticalidad": -0.0516, "eje_elaboracion": -0.0194, "eje_individual": -0.0075, "eje_rotura_lineas": 0.0168, "eje_amplitud_centro": -0.0004, "eje_profundidad_espalda": 0.0437, "eje_robo_alto": 0.0365, "eje_aereo_segunda": -0.0133}, "Dundee United": {"eje_verticalidad": -0.3321, "eje_elaboracion": 16.1494, "eje_individual": 15.7438, "eje_rotura_lineas": -0.225, "eje_amplitud_centro": 8.335, "eje_profundidad_espalda": 6.2755, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.1115}, "Dungannon Swifts": {"eje_verticalidad": -0.3175, "eje_elaboracion": 21.4878, "eje_individual": 14.9489, "eje_rotura_lineas": -0.2198, "eje_amplitud_centro": 8.267, "eje_profundidad_espalda": 4.7791, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0292}, "Dynamo Kyiv": {"eje_verticalidad": -0.0474, "eje_elaboracion": -0.0183, "eje_individual": -0.0179, "eje_rotura_lineas": 0.0726, "eje_amplitud_centro": 0.0105, "eje_profundidad_espalda": -0.0165, "eje_robo_alto": -0.0006, "eje_aereo_segunda": -0.0051}, "Fiorentina": {"eje_verticalidad": -0.0652, "eje_elaboracion": 1.9598, "eje_individual": 2.3636, "eje_rotura_lineas": -0.0252, "eje_amplitud_centro": 1.0102, "eje_profundidad_espalda": 0.5821, "eje_robo_alto": -0.1443, "eje_aereo_segunda": 0.0153}, "Fredrikstad": {"eje_verticalidad": -0.2358, "eje_elaboracion": 14.541, "eje_individual": 8.7535, "eje_rotura_lineas": -0.2187, "eje_amplitud_centro": 8.725, "eje_profundidad_espalda": 5.8747, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.0639}, "Győri ETO": {"eje_verticalidad": -0.1647, "eje_elaboracion": 13.2933, "eje_individual": 18.7959, "eje_rotura_lineas": -0.2181, "eje_amplitud_centro": 8.0641, "eje_profundidad_espalda": 5.2512, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.082}, "Hamrun Spartans": {"eje_verticalidad": -0.0463, "eje_elaboracion": -0.0123, "eje_individual": -0.0101, "eje_rotura_lineas": 0.0611, "eje_amplitud_centro": -0.0517, "eje_profundidad_espalda": -0.0333, "eje_robo_alto": 0.026, "eje_aereo_segunda": -0.0375}, "Hibernian": {"eje_verticalidad": -0.2826, "eje_elaboracion": 14.5597, "eje_individual": 6.6148, "eje_rotura_lineas": -0.2182, "eje_amplitud_centro": 8.2852, "eje_profundidad_espalda": 6.0083, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0401}, "Häcken": {"eje_verticalidad": -0.0247, "eje_elaboracion": -0.0134, "eje_individual": -0.0409, "eje_rotura_lineas": 0.0199, "eje_amplitud_centro": -0.0432, "eje_profundidad_espalda": -0.021, "eje_robo_alto": -0.0459, "eje_aereo_segunda": 0.015}, "Ilves": {"eje_verticalidad": -0.3573, "eje_elaboracion": 17.4451, "eje_individual": 21.3474, "eje_rotura_lineas": -0.2143, "eje_amplitud_centro": 3.8227, "eje_profundidad_espalda": 8.7339, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0092}, "Jagiellonia Białystok": {"eje_verticalidad": -0.0007, "eje_elaboracion": -0.0296, "eje_individual": -0.0065, "eje_rotura_lineas": -0.0112, "eje_amplitud_centro": -0.0227, "eje_profundidad_espalda": -0.0337, "eje_robo_alto": 0.0019, "eje_aereo_segunda": 0.012}, "KA": {"eje_verticalidad": -0.3737, "eje_elaboracion": 20.9261, "eje_individual": 3.8224, "eje_rotura_lineas": -0.225, "eje_amplitud_centro": 5.1985, "eje_profundidad_espalda": 5.0463, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0765}, "KuPS": {"eje_verticalidad": -0.101, "eje_elaboracion": -0.0127, "eje_individual": -0.0223, "eje_rotura_lineas": 0.0287, "eje_amplitud_centro": -0.027, "eje_profundidad_espalda": 0.0188, "eje_robo_alto": 0.0576, "eje_aereo_segunda": -0.0609}, "Lausanne-Sport": {"eje_verticalidad": -0.0317, "eje_elaboracion": 3.9352, "eje_individual": 4.7738, "eje_rotura_lineas": -0.0574, "eje_amplitud_centro": 1.8444, "eje_profundidad_espalda": 1.3474, "eje_robo_alto": -0.302, "eje_aereo_segunda": 0.0063}, "Lech Poznań": {"eje_verticalidad": -0.0137, "eje_elaboracion": -0.0377, "eje_individual": -0.0264, "eje_rotura_lineas": -0.0176, "eje_amplitud_centro": 0.0028, "eje_profundidad_espalda": -0.0257, "eje_robo_alto": -0.0042, "eje_aereo_segunda": -0.0259}, "Legia Warszawa": {"eje_verticalidad": -0.1068, "eje_elaboracion": 2.1977, "eje_individual": 1.6771, "eje_rotura_lineas": -0.04, "eje_amplitud_centro": 0.978, "eje_profundidad_espalda": 0.6325, "eje_robo_alto": -0.1762, "eje_aereo_segunda": -0.0153}, "Levski Sofia": {"eje_verticalidad": -0.3925, "eje_elaboracion": 16.7836, "eje_individual": 15.3974, "eje_rotura_lineas": -0.2033, "eje_amplitud_centro": 3.1256, "eje_profundidad_espalda": 3.4431, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0428}, "Lincoln Red Imps": {"eje_verticalidad": -0.0354, "eje_elaboracion": -0.0447, "eje_individual": -0.0321, "eje_rotura_lineas": -0.0083, "eje_amplitud_centro": -0.0437, "eje_profundidad_espalda": 0.0048, "eje_robo_alto": 0.1113, "eje_aereo_segunda": 0.0168}, "Maccabi Haifa": {"eje_verticalidad": -0.2835, "eje_elaboracion": 13.9015, "eje_individual": 5.8936, "eje_rotura_lineas": -0.1929, "eje_amplitud_centro": 7.8488, "eje_profundidad_espalda": 4.5119, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.053}, "Mainz 05": {"eje_verticalidad": -0.0324, "eje_elaboracion": 1.4083, "eje_individual": 1.3715, "eje_rotura_lineas": -0.0468, "eje_amplitud_centro": 0.7281, "eje_profundidad_espalda": 0.6626, "eje_robo_alto": -0.1715, "eje_aereo_segunda": 0.0302}, "Noah": {"eje_verticalidad": -0.0197, "eje_elaboracion": -0.0193, "eje_individual": -0.0166, "eje_rotura_lineas": 0.0024, "eje_amplitud_centro": -0.0203, "eje_profundidad_espalda": 0.0097, "eje_robo_alto": 0.0244, "eje_aereo_segunda": 0.0343}, "Omonia Nicosia": {"eje_verticalidad": -0.0866, "eje_elaboracion": 2.8878, "eje_individual": 3.712, "eje_rotura_lineas": -0.0502, "eje_amplitud_centro": 1.7449, "eje_profundidad_espalda": 1.3133, "eje_robo_alto": -0.1671, "eje_aereo_segunda": -0.0072}, "Paks": {"eje_verticalidad": -0.2087, "eje_elaboracion": 14.4979, "eje_individual": 18.1517, "eje_rotura_lineas": -0.2017, "eje_amplitud_centro": 11.9088, "eje_profundidad_espalda": 6.1152, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.1433}, "Puskás": {"eje_verticalidad": -0.1823, "eje_elaboracion": 13.0767, "eje_individual": 11.8543, "eje_rotura_lineas": -0.2215, "eje_amplitud_centro": 6.3815, "eje_profundidad_espalda": 3.6568, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0225}, "Raków Częstochowa": {"eje_verticalidad": -0.0657, "eje_elaboracion": 1.4016, "eje_individual": 1.2169, "eje_rotura_lineas": -0.0683, "eje_amplitud_centro": 0.8339, "eje_profundidad_espalda": 0.4354, "eje_robo_alto": -0.1232, "eje_aereo_segunda": 0.0263}, "Rapid": {"eje_verticalidad": -0.0383, "eje_elaboracion": 3.3572, "eje_individual": 3.5759, "eje_rotura_lineas": -0.0551, "eje_amplitud_centro": 2.2438, "eje_profundidad_espalda": 1.2285, "eje_robo_alto": -0.2405, "eje_aereo_segunda": 0.032}, "Rayo Vallecano": {"eje_verticalidad": -0.0056, "eje_elaboracion": 1.8316, "eje_individual": 2.2003, "eje_rotura_lineas": -0.0938, "eje_amplitud_centro": 0.947, "eje_profundidad_espalda": 0.5643, "eje_robo_alto": -0.1576, "eje_aereo_segunda": 0.0078}, "Rijeka": {"eje_verticalidad": -0.0003, "eje_elaboracion": -0.0366, "eje_individual": -0.0443, "eje_rotura_lineas": 0.0294, "eje_amplitud_centro": -0.0245, "eje_profundidad_espalda": -0.0294, "eje_robo_alto": -0.0381, "eje_aereo_segunda": -0.0099}, "Rosenborg": {"eje_verticalidad": -0.1982, "eje_elaboracion": 12.2853, "eje_individual": 7.8389, "eje_rotura_lineas": -0.225, "eje_amplitud_centro": 9.6733, "eje_profundidad_espalda": 6.4358, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.1223}, "Samsunspor": {"eje_verticalidad": 0.0127, "eje_elaboracion": -0.0384, "eje_individual": -0.0338, "eje_rotura_lineas": -0.0114, "eje_amplitud_centro": -0.0126, "eje_profundidad_espalda": -0.0577, "eje_robo_alto": -0.0054, "eje_aereo_segunda": 0.0368}, "Servette": {"eje_verticalidad": -0.3474, "eje_elaboracion": 17.4956, "eje_individual": 18.2704, "eje_rotura_lineas": -0.2139, "eje_amplitud_centro": 6.9576, "eje_profundidad_espalda": 4.9394, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.1121}, "Shakhtar Donetsk": {"eje_verticalidad": 0.0173, "eje_elaboracion": 1.1139, "eje_individual": 1.1167, "eje_rotura_lineas": -0.0507, "eje_amplitud_centro": 0.586, "eje_profundidad_espalda": 0.4123, "eje_robo_alto": -0.123, "eje_aereo_segunda": -0.0143}, "Shamrock Rovers": {"eje_verticalidad": -0.1198, "eje_elaboracion": -0.0149, "eje_individual": 0.0112, "eje_rotura_lineas": 0.0027, "eje_amplitud_centro": -0.0345, "eje_profundidad_espalda": 0.0483, "eje_robo_alto": 0.0449, "eje_aereo_segunda": -0.0633}, "Shelbourne": {"eje_verticalidad": -0.1781, "eje_elaboracion": 0.044, "eje_individual": -0.0185, "eje_rotura_lineas": 0.1048, "eje_amplitud_centro": -0.0218, "eje_profundidad_espalda": -0.0512, "eje_robo_alto": 0.0399, "eje_aereo_segunda": -0.0362}, "Shkendija": {"eje_verticalidad": -0.0662, "eje_elaboracion": -0.0039, "eje_individual": 0.0103, "eje_rotura_lineas": 0.0517, "eje_amplitud_centro": -0.0355, "eje_profundidad_espalda": 0.0143, "eje_robo_alto": 0.1062, "eje_aereo_segunda": -0.0288}, "Sigma Olomouc": {"eje_verticalidad": 0.042, "eje_elaboracion": -0.0236, "eje_individual": -0.0548, "eje_rotura_lineas": -0.0039, "eje_amplitud_centro": -0.0316, "eje_profundidad_espalda": 0.0284, "eje_robo_alto": -0.0608, "eje_aereo_segunda": 0.0344}, "Silkeborg": {"eje_verticalidad": -0.3549, "eje_elaboracion": 18.7172, "eje_individual": 12.2089, "eje_rotura_lineas": -0.225, "eje_amplitud_centro": 6.819, "eje_profundidad_espalda": 5.9905, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0893}, "Slovan Bratislava": {"eje_verticalidad": -0.1145, "eje_elaboracion": 0.0128, "eje_individual": -0.0239, "eje_rotura_lineas": -0.0134, "eje_amplitud_centro": -0.0346, "eje_profundidad_espalda": -0.0364, "eje_robo_alto": 0.018, "eje_aereo_segunda": -0.0309}, "Sparta Praha": {"eje_verticalidad": 0.0504, "eje_elaboracion": -0.0558, "eje_individual": -0.0548, "eje_rotura_lineas": -0.0502, "eje_amplitud_centro": 0.0038, "eje_profundidad_espalda": -0.0031, "eje_robo_alto": -0.0807, "eje_aereo_segunda": 0.0509}, "Spartak Trnava": {"eje_verticalidad": -0.2793, "eje_elaboracion": 14.9148, "eje_individual": 15.732, "eje_rotura_lineas": -0.1941, "eje_amplitud_centro": 6.7069, "eje_profundidad_espalda": 4.5119, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0097}, "St Patrick's Athletic": {"eje_verticalidad": -0.3961, "eje_elaboracion": 18.8209, "eje_individual": 12.5529, "eje_rotura_lineas": -0.225, "eje_amplitud_centro": 4.9193, "eje_profundidad_espalda": 7.0771, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.1771}, "Strasbourg": {"eje_verticalidad": -0.0663, "eje_elaboracion": 2.1402, "eje_individual": 2.2318, "eje_rotura_lineas": -0.0283, "eje_amplitud_centro": 1.1805, "eje_profundidad_espalda": 0.7231, "eje_robo_alto": -0.1068, "eje_aereo_segunda": -0.015}, "Universitatea Craiova": {"eje_verticalidad": -0.0986, "eje_elaboracion": 1.9361, "eje_individual": 2.408, "eje_rotura_lineas": -0.0296, "eje_amplitud_centro": 1.1889, "eje_profundidad_espalda": 0.6106, "eje_robo_alto": -0.0697, "eje_aereo_segunda": 0.0132}, "Vaduz": {"eje_verticalidad": -0.2486, "eje_elaboracion": 16.1426, "eje_individual": 12.088, "eje_rotura_lineas": -0.2189, "eje_amplitud_centro": 9.7431, "eje_profundidad_espalda": 6.1419, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0617}, "Vardar Skopje": {"eje_verticalidad": -0.2173, "eje_elaboracion": 15.0029, "eje_individual": 16.8183, "eje_rotura_lineas": -0.2062, "eje_amplitud_centro": 7.6311, "eje_profundidad_espalda": 4.405, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.0162}, "Viking": {"eje_verticalidad": -0.2033, "eje_elaboracion": 12.8953, "eje_individual": 9.3216, "eje_rotura_lineas": -0.225, "eje_amplitud_centro": 4.065, "eje_profundidad_espalda": 4.0309, "eje_robo_alto": -0.9484, "eje_aereo_segunda": 0.1541}, "Zrinjski": {"eje_verticalidad": -0.0512, "eje_elaboracion": -0.0018, "eje_individual": -0.0259, "eje_rotura_lineas": 0.0309, "eje_amplitud_centro": -0.0109, "eje_profundidad_espalda": 0.0105, "eje_robo_alto": 0.0378, "eje_aereo_segunda": 0.0105}, "İstanbul Başakşehir": {"eje_verticalidad": -0.292, "eje_elaboracion": 13.9953, "eje_individual": 15.774, "eje_rotura_lineas": -0.2186, "eje_amplitud_centro": 8.571, "eje_profundidad_espalda": 4.4585, "eje_robo_alto": -0.9484, "eje_aereo_segunda": -0.0398}}} \ No newline at end of file diff --git a/vendor/data/ejes/uefa-conference-league/25-26/team_profiles.parquet b/vendor/data/ejes/uefa-conference-league/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..45a454f31723620f564195f50154e04e15558699 --- /dev/null +++ b/vendor/data/ejes/uefa-conference-league/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a0b621e4bc7d7eb14734270fa3c7770d8c8ff191957079f1eafca59096c977e +size 15055 diff --git a/vendor/data/ejes/uefa-europa-league/25-26/ejes_definition.json b/vendor/data/ejes/uefa-europa-league/25-26/ejes_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..837ad3219dca087841e595b492cf34d47b528bb1 --- /dev/null +++ b/vendor/data/ejes/uefa-europa-league/25-26/ejes_definition.json @@ -0,0 +1 @@ +{"verticalidad": ["verticalidad_media", "pct_verticales", "pct_largos", "transition_speed"], "elaboracion": ["n_passes", "duration_s", "paredes", "pct_cortos"], "individual": ["takeons_ok", "dribbles_last_third", "dribbles_box", "dang_runs"], "rotura_lineas": ["broke_last_line", "broke_second_last", "line_breaks", "pct_through"], "amplitud_centro": ["pct_afuera", "pct_switch", "n_centros"], "profundidad_espalda": ["passes_behind_line", "behind_line_ok", "pelotazos_espalda", "deep_completions"], "robo_alto": ["start_x", "starts_from_dispossess"], "aereo_segunda": ["pct_headpass", "pct_layoff", "pct_launch"]} \ No newline at end of file diff --git a/vendor/data/ejes/uefa-europa-league/25-26/match_team_ejes.parquet b/vendor/data/ejes/uefa-europa-league/25-26/match_team_ejes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..41d5e933d7fa535774fb2cca9f681ae05da59844 --- /dev/null +++ b/vendor/data/ejes/uefa-europa-league/25-26/match_team_ejes.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb784f939ab0a8b10b6ef023531e9f8f27c8f95e6b5fa9408ee235002b2b8aed +size 53763 diff --git a/vendor/data/ejes/uefa-europa-league/25-26/match_team_vars.parquet b/vendor/data/ejes/uefa-europa-league/25-26/match_team_vars.parquet new file mode 100644 index 0000000000000000000000000000000000000000..36c5fb5a52687c0823a64d6d1b94db774278ea3f --- /dev/null +++ b/vendor/data/ejes/uefa-europa-league/25-26/match_team_vars.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce023271ae2c63b5dc52327a908f2cede9ab77d8959e46f36ed6a5ed70dd9182 +size 193589 diff --git a/vendor/data/ejes/uefa-europa-league/25-26/predictor.json b/vendor/data/ejes/uefa-europa-league/25-26/predictor.json new file mode 100644 index 0000000000000000000000000000000000000000..9a0cbb0b4640b9ba6b512eb98345287ca122713d --- /dev/null +++ b/vendor/data/ejes/uefa-europa-league/25-26/predictor.json @@ -0,0 +1 @@ +{"verticalidad": {"gen": 0.6251, "con": 0.6154, "intercept": 0.0142}, "elaboracion": {"gen": 0.4473, "con": 0.7845, "intercept": -0.7439}, "individual": {"gen": 0.5174, "con": 0.6611, "intercept": -0.6565}, "rotura_lineas": {"gen": 0.6509, "con": 0.6001, "intercept": 0.0076}, "amplitud_centro": {"gen": 0.5411, "con": 0.6899, "intercept": -0.3947}, "profundidad_espalda": {"gen": 0.542, "con": 0.7328, "intercept": -0.298}, "robo_alto": {"gen": 0.5231, "con": 0.7428, "intercept": 0.0365}, "aereo_segunda": {"gen": 0.7219, "con": 0.2785, "intercept": 0.0003}} \ No newline at end of file diff --git a/vendor/data/ejes/uefa-europa-league/25-26/scales.json b/vendor/data/ejes/uefa-europa-league/25-26/scales.json new file mode 100644 index 0000000000000000000000000000000000000000..6104798fd6a5c20c0ecef02cd16cc228d5ecb03e --- /dev/null +++ b/vendor/data/ejes/uefa-europa-league/25-26/scales.json @@ -0,0 +1 @@ +{"var_sigma": {"atk_l": 1.9523, "atk_w": 1.4478, "ball_distance": 59.614, "behind_line_ok": 0.0239, "broke_last_line": 0.018, "broke_second_last": 0.0538, "cross_pvadded_max": 0.0281, "dang_runs": 0.0913, "deep_completions": 18.7307, "def_h": 3.2166, "dribbles_box": 0.7962, "dribbles_last_third": 3.1294, "duration_s": 1001.2127, "hold_max": 18.6494, "hold_mean": 1.0505, "hold_min": 1.1143, "line_breaks": 0.3263, "max_x": 7.3522, "n_centros": 5.6748, "n_events": 288.8127, "n_involved": 0.1847, "n_passes": 169.9511, "opt_quality_mean": 0.1532, "paredes": 17.6533, "pass_options_mean": 1.9589, "passes_behind_line": 0.0411, "pct_adentro": 0.0339, "pct_afuera": 0.0339, "pct_cortos": 0.0505, "pct_headpass": 0.014, "pct_largos": 0.046, "pct_launch": 0.0295, "pct_layoff": 0.0051, "pct_medios": 0.0417, "pct_switch": 0.0038, "pct_through": 0.0046, "pct_verticales": 0.0522, "pelotazos_espalda": 0.0347, "press_final": 0.5326, "press_media": 0.3706, "prog_x": 13.9214, "start_x": 9.1152, "starts_from_dispossess": 0.0186, "takeons_ok": 2.5567, "tempo": 0.0541, "transition_speed": 0.8527, "verticalidad_media": 0.0657}, "eje_sigma": {"eje_verticalidad": 0.1225, "eje_elaboracion": 3.999, "eje_individual": 4.2037, "eje_rotura_lineas": 0.0733, "eje_amplitud_centro": 1.9583, "eje_profundidad_espalda": 1.6524, "eje_robo_alto": 0.1944, "eje_aereo_segunda": 0.0624}, "eje_match_mean": {"eje_verticalidad": -0.0453, "eje_elaboracion": 1.961, "eje_individual": 1.8416, "eje_rotura_lineas": -0.0192, "eje_amplitud_centro": 1.0368, "eje_profundidad_espalda": 0.7662, "eje_robo_alto": -0.0913, "eje_aereo_segunda": -0.0012}, "eje_match_std": {"eje_verticalidad": 0.1457, "eje_elaboracion": 6.2786, "eje_individual": 6.2238, "eje_rotura_lineas": 0.0985, "eje_amplitud_centro": 3.3966, "eje_profundidad_espalda": 2.4972, "eje_robo_alto": 0.2956, "eje_aereo_segunda": 0.0747}, "team_var_norm": {"AEK Larnaca": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1026, "dang_runs": 0.0, "deep_completions": 92.5, "def_h": NaN, "dribbles_box": 3.0, "dribbles_last_third": 13.0, "duration_s": 5710.5, "hold_max": 137.5, "hold_mean": 4.0116, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 26.5, "n_events": 1503.5, "n_involved": NaN, "n_passes": 836.5, "opt_quality_mean": NaN, "paredes": 92.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5403, "pct_afuera": 0.4584, "pct_cortos": 0.4674, "pct_headpass": 0.055, "pct_largos": 0.155, "pct_launch": 0.0532, "pct_layoff": 0.0106, "pct_medios": 0.3776, "pct_switch": 0.0066, "pct_through": 0.0071, "pct_verticales": 0.4128, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 14.5, "tempo": 0.1469, "transition_speed": 0.0175, "verticalidad_media": 0.1925}, "Aberdeen": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.0856, "dang_runs": 0.0, "deep_completions": 113.0, "def_h": NaN, "dribbles_box": 5.0, "dribbles_last_third": 17.0, "duration_s": 5796.0, "hold_max": 87.0, "hold_mean": 3.477, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 56.0, "n_events": 1744.0, "n_involved": NaN, "n_passes": 958.0, "opt_quality_mean": NaN, "paredes": 81.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5261, "pct_afuera": 0.4697, "pct_cortos": 0.4228, "pct_headpass": 0.0793, "pct_largos": 0.1764, "pct_launch": 0.0585, "pct_layoff": 0.0094, "pct_medios": 0.4008, "pct_switch": 0.0094, "pct_through": 0.001, "pct_verticales": 0.4217, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 15.0, "tempo": 0.1653, "transition_speed": 0.0173, "verticalidad_media": 0.2106}, "Aston Villa": {"atk_l": 41.282, "atk_w": 33.3147, "ball_distance": 136.9278, "behind_line_ok": 0.0547, "broke_last_line": 0.0368, "broke_second_last": 0.1848, "cross_pvadded_max": 0.001, "dang_runs": 0.1803, "deep_completions": 0.3963, "def_h": 32.0175, "dribbles_box": 0.0133, "dribbles_last_third": 0.0566, "duration_s": 29.0206, "hold_max": 11.7253, "hold_mean": 6.4879, "hold_min": 3.8618, "line_breaks": 0.7793, "max_x": 65.4873, "n_centros": 0.1004, "n_events": 5.8208, "n_involved": 1.9594, "n_passes": 3.5792, "opt_quality_mean": 0.0668, "paredes": 0.3259, "pass_options_mean": 8.7372, "passes_behind_line": 0.1178, "pct_adentro": 0.5188, "pct_afuera": 0.4039, "pct_cortos": 0.4224, "pct_headpass": 0.0349, "pct_largos": 0.1768, "pct_launch": 0.0413, "pct_layoff": 0.0131, "pct_medios": 0.3247, "pct_switch": 0.0048, "pct_through": 0.0067, "pct_verticales": 0.4441, "pelotazos_espalda": 0.0804, "press_final": 2.6749, "press_media": 1.9605, "prog_x": 22.9513, "start_x": 43.6558, "starts_from_dispossess": 0.0441, "takeons_ok": 0.0487, "tempo": 0.3752, "transition_speed": 2.8219, "verticalidad_media": 0.2848}, "Basel": {"atk_l": 41.227, "atk_w": 32.97, "ball_distance": 111.4328, "behind_line_ok": 0.04, "broke_last_line": 0.0371, "broke_second_last": 0.1636, "cross_pvadded_max": 0.0007, "dang_runs": 0.1118, "deep_completions": 0.3195, "def_h": 30.8686, "dribbles_box": 0.0077, "dribbles_last_third": 0.0566, "duration_s": 31.5685, "hold_max": 9.2441, "hold_mean": 5.0202, "hold_min": 2.693, "line_breaks": 0.671, "max_x": 65.3443, "n_centros": 0.1202, "n_events": 6.0198, "n_involved": 1.8829, "n_passes": 3.0799, "opt_quality_mean": 0.0469, "paredes": 0.2287, "pass_options_mean": 9.4347, "passes_behind_line": 0.0872, "pct_adentro": 0.5081, "pct_afuera": 0.4001, "pct_cortos": 0.4191, "pct_headpass": 0.0366, "pct_largos": 0.1604, "pct_launch": 0.0522, "pct_layoff": 0.0106, "pct_medios": 0.3307, "pct_switch": 0.0027, "pct_through": 0.0052, "pct_verticales": 0.4621, "pelotazos_espalda": 0.0632, "press_final": 2.6431, "press_media": 1.9074, "prog_x": 22.0765, "start_x": 44.6081, "starts_from_dispossess": 0.0425, "takeons_ok": 0.0388, "tempo": 0.4226, "transition_speed": 3.549, "verticalidad_media": 0.3158}, "Beşiktaş": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1044, "dang_runs": 0.0, "deep_completions": 100.5, "def_h": NaN, "dribbles_box": 5.0, "dribbles_last_third": 13.0, "duration_s": 5670.0, "hold_max": 111.0, "hold_mean": 3.7557, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 23.5, "n_events": 1562.0, "n_involved": NaN, "n_passes": 1002.0, "opt_quality_mean": NaN, "paredes": 96.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5134, "pct_afuera": 0.4836, "pct_cortos": 0.4237, "pct_headpass": 0.0305, "pct_largos": 0.1152, "pct_launch": 0.0239, "pct_layoff": 0.0076, "pct_medios": 0.4611, "pct_switch": 0.0106, "pct_through": 0.0015, "pct_verticales": 0.3583, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 12.5, "tempo": 0.177, "transition_speed": 0.0176, "verticalidad_media": 0.1245}, "Bologna": {"atk_l": 42.9285, "atk_w": 31.8467, "ball_distance": 134.6656, "behind_line_ok": 0.0624, "broke_last_line": 0.045, "broke_second_last": 0.1766, "cross_pvadded_max": 0.0018, "dang_runs": 0.1576, "deep_completions": 0.4282, "def_h": 29.2515, "dribbles_box": 0.0167, "dribbles_last_third": 0.0698, "duration_s": 22.3318, "hold_max": 10.0275, "hold_mean": 5.6135, "hold_min": 3.1265, "line_breaks": 0.5801, "max_x": 70.0736, "n_centros": 0.163, "n_events": 5.197, "n_involved": 1.845, "n_passes": 3.1318, "opt_quality_mean": 0.1339, "paredes": 0.2548, "pass_options_mean": 8.8419, "passes_behind_line": 0.1219, "pct_adentro": 0.5063, "pct_afuera": 0.4069, "pct_cortos": 0.3574, "pct_headpass": 0.0529, "pct_largos": 0.2011, "pct_launch": 0.0811, "pct_layoff": 0.0082, "pct_medios": 0.3553, "pct_switch": 0.0075, "pct_through": 0.0028, "pct_verticales": 0.4701, "pelotazos_espalda": 0.0862, "press_final": 2.656, "press_media": 1.9487, "prog_x": 22.1676, "start_x": 49.0226, "starts_from_dispossess": 0.0495, "takeons_ok": 0.0548, "tempo": 0.3835, "transition_speed": 3.4121, "verticalidad_media": 0.3197}, "Brann": {"atk_l": 36.9242, "atk_w": 30.9936, "ball_distance": 103.2612, "behind_line_ok": 0.0324, "broke_last_line": 0.0242, "broke_second_last": 0.1226, "cross_pvadded_max": 0.0008, "dang_runs": 0.0961, "deep_completions": 0.2728, "def_h": 32.1712, "dribbles_box": 0.0066, "dribbles_last_third": 0.0521, "duration_s": 18.2546, "hold_max": 9.6024, "hold_mean": 6.0889, "hold_min": 3.9329, "line_breaks": 0.5238, "max_x": 65.7104, "n_centros": 0.083, "n_events": 4.5522, "n_involved": 1.7774, "n_passes": 2.7542, "opt_quality_mean": -0.029, "paredes": 0.2568, "pass_options_mean": 8.7237, "passes_behind_line": 0.0912, "pct_adentro": 0.5115, "pct_afuera": 0.4041, "pct_cortos": 0.4156, "pct_headpass": 0.0495, "pct_largos": 0.2063, "pct_launch": 0.1219, "pct_layoff": 0.0121, "pct_medios": 0.295, "pct_switch": 0.0039, "pct_through": 0.0013, "pct_verticales": 0.5182, "pelotazos_espalda": 0.0648, "press_final": 2.9359, "press_media": 2.0378, "prog_x": 22.3565, "start_x": 44.7573, "starts_from_dispossess": 0.0389, "takeons_ok": 0.0447, "tempo": 0.3973, "transition_speed": 3.527, "verticalidad_media": 0.3693}, "CFR Cluj": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1973, "dang_runs": 0.0, "deep_completions": 102.0, "def_h": NaN, "dribbles_box": 2.0, "dribbles_last_third": 18.0, "duration_s": 5757.5, "hold_max": 158.5, "hold_mean": 3.7582, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 40.5, "n_events": 1583.5, "n_involved": NaN, "n_passes": 848.5, "opt_quality_mean": NaN, "paredes": 96.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5154, "pct_afuera": 0.4841, "pct_cortos": 0.4781, "pct_headpass": 0.0823, "pct_largos": 0.1606, "pct_launch": 0.0701, "pct_layoff": 0.0186, "pct_medios": 0.3612, "pct_switch": 0.0083, "pct_through": 0.0012, "pct_verticales": 0.4481, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 11.0, "tempo": 0.1471, "transition_speed": 0.0174, "verticalidad_media": 0.2585}, "Celta de Vigo": {"atk_l": 44.2024, "atk_w": 33.2017, "ball_distance": 190.8161, "behind_line_ok": 0.0522, "broke_last_line": 0.0472, "broke_second_last": 0.2189, "cross_pvadded_max": 0.0006, "dang_runs": 0.1319, "deep_completions": 0.3504, "def_h": 34.5431, "dribbles_box": 0.0169, "dribbles_last_third": 0.0661, "duration_s": 37.7553, "hold_max": 10.4212, "hold_mean": 5.6583, "hold_min": 3.3868, "line_breaks": 1.0968, "max_x": 64.9442, "n_centros": 0.076, "n_events": 6.9828, "n_involved": 2.097, "n_passes": 4.1547, "opt_quality_mean": -0.0264, "paredes": 0.3649, "pass_options_mean": 8.793, "passes_behind_line": 0.1436, "pct_adentro": 0.4777, "pct_afuera": 0.4366, "pct_cortos": 0.3813, "pct_headpass": 0.0351, "pct_largos": 0.1861, "pct_launch": 0.0699, "pct_layoff": 0.0112, "pct_medios": 0.3483, "pct_switch": 0.0054, "pct_through": 0.0086, "pct_verticales": 0.4482, "pelotazos_espalda": 0.1005, "press_final": 2.4711, "press_media": 1.7494, "prog_x": 24.7027, "start_x": 41.4931, "starts_from_dispossess": 0.0478, "takeons_ok": 0.0462, "tempo": 0.3935, "transition_speed": 2.9022, "verticalidad_media": 0.2986}, "Celtic": {"atk_l": 42.1518, "atk_w": 31.1073, "ball_distance": 181.1955, "behind_line_ok": 0.0576, "broke_last_line": 0.0329, "broke_second_last": 0.1831, "cross_pvadded_max": 0.0007, "dang_runs": 0.2046, "deep_completions": 0.3647, "def_h": 33.2823, "dribbles_box": 0.021, "dribbles_last_third": 0.0608, "duration_s": 26.444, "hold_max": 10.575, "hold_mean": 6.0897, "hold_min": 3.7469, "line_breaks": 1.0809, "max_x": 66.5941, "n_centros": 0.1094, "n_events": 6.1508, "n_involved": 2.1322, "n_passes": 3.8298, "opt_quality_mean": -0.0113, "paredes": 0.3437, "pass_options_mean": 9.0263, "passes_behind_line": 0.1412, "pct_adentro": 0.5061, "pct_afuera": 0.4203, "pct_cortos": 0.3983, "pct_headpass": 0.0344, "pct_largos": 0.1972, "pct_launch": 0.073, "pct_layoff": 0.0119, "pct_medios": 0.3312, "pct_switch": 0.0013, "pct_through": 0.0028, "pct_verticales": 0.4883, "pelotazos_espalda": 0.1033, "press_final": 2.676, "press_media": 1.8648, "prog_x": 23.3348, "start_x": 44.1546, "starts_from_dispossess": 0.0449, "takeons_ok": 0.0584, "tempo": 0.4008, "transition_speed": 3.1093, "verticalidad_media": 0.3193}, "Crvena zvezda": {"atk_l": 39.6058, "atk_w": 31.547, "ball_distance": 126.8637, "behind_line_ok": 0.0487, "broke_last_line": 0.0273, "broke_second_last": 0.1954, "cross_pvadded_max": 0.0016, "dang_runs": 0.1856, "deep_completions": 0.2976, "def_h": 32.8576, "dribbles_box": 0.0098, "dribbles_last_third": 0.0453, "duration_s": 31.7053, "hold_max": 11.5545, "hold_mean": 5.9437, "hold_min": 3.5805, "line_breaks": 0.6653, "max_x": 66.5984, "n_centros": 0.1317, "n_events": 6.0454, "n_involved": 1.9642, "n_passes": 3.3473, "opt_quality_mean": -0.0238, "paredes": 0.3077, "pass_options_mean": 9.2188, "passes_behind_line": 0.104, "pct_adentro": 0.5292, "pct_afuera": 0.3872, "pct_cortos": 0.4108, "pct_headpass": 0.0507, "pct_largos": 0.1884, "pct_launch": 0.0872, "pct_layoff": 0.0116, "pct_medios": 0.3182, "pct_switch": 0.0034, "pct_through": 0.0026, "pct_verticales": 0.4777, "pelotazos_espalda": 0.0714, "press_final": 2.5252, "press_media": 1.9387, "prog_x": 23.4569, "start_x": 44.3349, "starts_from_dispossess": 0.0341, "takeons_ok": 0.0467, "tempo": 0.3895, "transition_speed": 3.4849, "verticalidad_media": 0.3273}, "Dinamo Zagreb": {"atk_l": 42.8086, "atk_w": 31.8955, "ball_distance": 182.6032, "behind_line_ok": 0.0455, "broke_last_line": 0.0293, "broke_second_last": 0.1799, "cross_pvadded_max": 0.0013, "dang_runs": 0.2081, "deep_completions": 0.3582, "def_h": 32.541, "dribbles_box": 0.0148, "dribbles_last_third": 0.0617, "duration_s": 35.7004, "hold_max": 9.5865, "hold_mean": 5.1611, "hold_min": 2.9446, "line_breaks": 0.7831, "max_x": 66.7718, "n_centros": 0.1271, "n_events": 6.6172, "n_involved": 2.0147, "n_passes": 3.8961, "opt_quality_mean": 0.0078, "paredes": 0.4203, "pass_options_mean": 9.104, "passes_behind_line": 0.1104, "pct_adentro": 0.5018, "pct_afuera": 0.4202, "pct_cortos": 0.4099, "pct_headpass": 0.0458, "pct_largos": 0.1756, "pct_launch": 0.0746, "pct_layoff": 0.0091, "pct_medios": 0.3371, "pct_switch": 0.0023, "pct_through": 0.0022, "pct_verticales": 0.4479, "pelotazos_espalda": 0.0768, "press_final": 2.5487, "press_media": 1.8414, "prog_x": 23.9452, "start_x": 44.1257, "starts_from_dispossess": 0.0516, "takeons_ok": 0.0476, "tempo": 0.3908, "transition_speed": 3.2317, "verticalidad_media": 0.2805}, "Drita": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1417, "dang_runs": 0.0, "deep_completions": 77.0, "def_h": NaN, "dribbles_box": 4.0, "dribbles_last_third": 21.0, "duration_s": 5520.0, "hold_max": 80.0, "hold_mean": 3.4529, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 33.0, "n_events": 1636.0, "n_involved": NaN, "n_passes": 893.0, "opt_quality_mean": NaN, "paredes": 93.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5308, "pct_afuera": 0.4681, "pct_cortos": 0.4378, "pct_headpass": 0.0907, "pct_largos": 0.1456, "pct_launch": 0.0493, "pct_layoff": 0.0146, "pct_medios": 0.4166, "pct_switch": 0.0134, "pct_through": 0.0011, "pct_verticales": 0.4446, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 16.0, "tempo": 0.1618, "transition_speed": 0.0181, "verticalidad_media": 0.2434}, "FCSB": {"atk_l": 42.7802, "atk_w": 34.9486, "ball_distance": 92.7279, "behind_line_ok": 0.0372, "broke_last_line": 0.0353, "broke_second_last": 0.1517, "cross_pvadded_max": 0.0196, "dang_runs": 0.1193, "deep_completions": 7.5694, "def_h": 34.778, "dribbles_box": 0.7887, "dribbles_last_third": 1.4827, "duration_s": 639.6202, "hold_max": 22.5464, "hold_mean": 5.2806, "hold_min": 2.8769, "line_breaks": 0.5384, "max_x": 67.8215, "n_centros": 2.8717, "n_events": 179.2517, "n_involved": 1.8561, "n_passes": 105.1616, "opt_quality_mean": -0.0521, "paredes": 12.2904, "pass_options_mean": 8.2342, "passes_behind_line": 0.0983, "pct_adentro": 0.505, "pct_afuera": 0.4275, "pct_cortos": 0.398, "pct_headpass": 0.0406, "pct_largos": 0.2012, "pct_launch": 0.0759, "pct_layoff": 0.0121, "pct_medios": 0.3353, "pct_switch": 0.0079, "pct_through": 0.0033, "pct_verticales": 0.5082, "pelotazos_espalda": 0.0749, "press_final": 2.0978, "press_media": 1.5805, "prog_x": 32.0226, "start_x": 36.4956, "starts_from_dispossess": 0.039, "takeons_ok": 1.593, "tempo": 0.3989, "transition_speed": 3.5527, "verticalidad_media": 0.3476}, "Fenerbahçe": {"atk_l": 42.8009, "atk_w": 33.0788, "ball_distance": 181.1767, "behind_line_ok": 0.0548, "broke_last_line": 0.0365, "broke_second_last": 0.1663, "cross_pvadded_max": 0.0012, "dang_runs": 0.1109, "deep_completions": 0.4041, "def_h": 32.1035, "dribbles_box": 0.0104, "dribbles_last_third": 0.0573, "duration_s": 30.2859, "hold_max": 10.4567, "hold_mean": 5.5996, "hold_min": 3.142, "line_breaks": 0.8834, "max_x": 67.0936, "n_centros": 0.1184, "n_events": 6.3926, "n_involved": 2.0213, "n_passes": 3.8353, "opt_quality_mean": 0.0346, "paredes": 0.3948, "pass_options_mean": 9.3282, "passes_behind_line": 0.129, "pct_adentro": 0.5096, "pct_afuera": 0.4011, "pct_cortos": 0.4181, "pct_headpass": 0.0351, "pct_largos": 0.1666, "pct_launch": 0.0664, "pct_layoff": 0.0129, "pct_medios": 0.3278, "pct_switch": 0.0036, "pct_through": 0.0047, "pct_verticales": 0.4324, "pelotazos_espalda": 0.0875, "press_final": 2.4896, "press_media": 1.8589, "prog_x": 23.6722, "start_x": 44.3789, "starts_from_dispossess": 0.0454, "takeons_ok": 0.0453, "tempo": 0.3925, "transition_speed": 3.0137, "verticalidad_media": 0.2732}, "Ferencváros": {"atk_l": 41.0022, "atk_w": 32.0563, "ball_distance": 146.7256, "behind_line_ok": 0.0538, "broke_last_line": 0.024, "broke_second_last": 0.1697, "cross_pvadded_max": 0.0011, "dang_runs": 0.1555, "deep_completions": 0.3228, "def_h": 30.2889, "dribbles_box": 0.0117, "dribbles_last_third": 0.0528, "duration_s": 32.7564, "hold_max": 10.1616, "hold_mean": 5.9596, "hold_min": 3.7196, "line_breaks": 0.6907, "max_x": 68.786, "n_centros": 0.1247, "n_events": 6.0698, "n_involved": 1.9418, "n_passes": 3.1583, "opt_quality_mean": 0.0159, "paredes": 0.3156, "pass_options_mean": 8.9902, "passes_behind_line": 0.125, "pct_adentro": 0.5172, "pct_afuera": 0.3888, "pct_cortos": 0.3859, "pct_headpass": 0.0602, "pct_largos": 0.2094, "pct_launch": 0.1122, "pct_layoff": 0.0089, "pct_medios": 0.3115, "pct_switch": 0.003, "pct_through": 0.0022, "pct_verticales": 0.4981, "pelotazos_espalda": 0.0985, "press_final": 2.7627, "press_media": 1.9865, "prog_x": 23.8674, "start_x": 45.8921, "starts_from_dispossess": 0.0546, "takeons_ok": 0.0476, "tempo": 0.3705, "transition_speed": 3.5867, "verticalidad_media": 0.3488}, "Feyenoord": {"atk_l": 42.743, "atk_w": 30.7005, "ball_distance": 132.4484, "behind_line_ok": 0.0578, "broke_last_line": 0.0539, "broke_second_last": 0.1691, "cross_pvadded_max": 0.0024, "dang_runs": 0.1308, "deep_completions": 0.3218, "def_h": 31.077, "dribbles_box": 0.0225, "dribbles_last_third": 0.0932, "duration_s": 39.7758, "hold_max": 10.5445, "hold_mean": 5.9224, "hold_min": 3.5077, "line_breaks": 0.656, "max_x": 69.0278, "n_centros": 0.146, "n_events": 6.766, "n_involved": 1.9001, "n_passes": 3.4271, "opt_quality_mean": 0.1556, "paredes": 0.3499, "pass_options_mean": 9.3434, "passes_behind_line": 0.1131, "pct_adentro": 0.5133, "pct_afuera": 0.4003, "pct_cortos": 0.4125, "pct_headpass": 0.0447, "pct_largos": 0.1533, "pct_launch": 0.0677, "pct_layoff": 0.0149, "pct_medios": 0.3495, "pct_switch": 0.0061, "pct_through": 0.0052, "pct_verticales": 0.4444, "pelotazos_espalda": 0.0771, "press_final": 2.7052, "press_media": 1.9716, "prog_x": 23.75, "start_x": 46.6409, "starts_from_dispossess": 0.0457, "takeons_ok": 0.0772, "tempo": 0.3873, "transition_speed": 3.0614, "verticalidad_media": 0.2802}, "Fredrikstad": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.2174, "dang_runs": 0.0, "deep_completions": 84.0, "def_h": NaN, "dribbles_box": 2.0, "dribbles_last_third": 14.0, "duration_s": 5728.0, "hold_max": 166.0, "hold_mean": 3.6748, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 41.0, "n_events": 1604.0, "n_involved": NaN, "n_passes": 991.0, "opt_quality_mean": NaN, "paredes": 95.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5348, "pct_afuera": 0.4601, "pct_cortos": 0.444, "pct_headpass": 0.0616, "pct_largos": 0.1493, "pct_launch": 0.0394, "pct_layoff": 0.0131, "pct_medios": 0.4067, "pct_switch": 0.0061, "pct_through": 0.001, "pct_verticales": 0.3946, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 13.0, "tempo": 0.173, "transition_speed": 0.0175, "verticalidad_media": 0.1715}, "Freiburg": {"atk_l": 38.2726, "atk_w": 29.9231, "ball_distance": 140.3209, "behind_line_ok": 0.0426, "broke_last_line": 0.0249, "broke_second_last": 0.1508, "cross_pvadded_max": 0.0011, "dang_runs": 0.1694, "deep_completions": 0.3075, "def_h": 32.6605, "dribbles_box": 0.0135, "dribbles_last_third": 0.0594, "duration_s": 30.2623, "hold_max": 10.8495, "hold_mean": 6.642, "hold_min": 4.3327, "line_breaks": 0.5718, "max_x": 65.6433, "n_centros": 0.1132, "n_events": 5.8292, "n_involved": 1.8726, "n_passes": 3.1757, "opt_quality_mean": 0.0448, "paredes": 0.29, "pass_options_mean": 8.8057, "passes_behind_line": 0.1114, "pct_adentro": 0.4867, "pct_afuera": 0.4096, "pct_cortos": 0.369, "pct_headpass": 0.0528, "pct_largos": 0.2005, "pct_launch": 0.0986, "pct_layoff": 0.0085, "pct_medios": 0.3277, "pct_switch": 0.0044, "pct_through": 0.0018, "pct_verticales": 0.4526, "pelotazos_espalda": 0.0745, "press_final": 2.6966, "press_media": 1.8684, "prog_x": 23.3087, "start_x": 43.8225, "starts_from_dispossess": 0.051, "takeons_ok": 0.0502, "tempo": 0.3713, "transition_speed": 2.9424, "verticalidad_media": 0.3163}, "Genk": {"atk_l": 42.8163, "atk_w": 31.9907, "ball_distance": 129.2366, "behind_line_ok": 0.0479, "broke_last_line": 0.0421, "broke_second_last": 0.1978, "cross_pvadded_max": 0.0173, "dang_runs": 0.1546, "deep_completions": 10.5719, "def_h": 32.3123, "dribbles_box": 0.5449, "dribbles_last_third": 2.2876, "duration_s": 446.2884, "hold_max": 14.191, "hold_mean": 5.0761, "hold_min": 2.7104, "line_breaks": 0.7346, "max_x": 70.4, "n_centros": 2.8785, "n_events": 134.0213, "n_involved": 1.9925, "n_passes": 75.683, "opt_quality_mean": 0.013, "paredes": 8.577, "pass_options_mean": 8.341, "passes_behind_line": 0.0987, "pct_adentro": 0.5122, "pct_afuera": 0.4037, "pct_cortos": 0.4367, "pct_headpass": 0.0411, "pct_largos": 0.1659, "pct_launch": 0.0671, "pct_layoff": 0.0097, "pct_medios": 0.3135, "pct_switch": 0.0045, "pct_through": 0.0036, "pct_verticales": 0.4536, "pelotazos_espalda": 0.0711, "press_final": 2.4043, "press_media": 1.8112, "prog_x": 29.7944, "start_x": 41.8919, "starts_from_dispossess": 0.0484, "takeons_ok": 1.425, "tempo": 0.378, "transition_speed": 2.99, "verticalidad_media": 0.2923}, "Go Ahead Eagles": {"atk_l": 41.1039, "atk_w": 30.8579, "ball_distance": 133.8585, "behind_line_ok": 0.0643, "broke_last_line": 0.0367, "broke_second_last": 0.1684, "cross_pvadded_max": 0.0011, "dang_runs": 0.1571, "deep_completions": 0.3869, "def_h": 33.4203, "dribbles_box": 0.0081, "dribbles_last_third": 0.0384, "duration_s": 38.0298, "hold_max": 10.5952, "hold_mean": 5.9633, "hold_min": 3.224, "line_breaks": 0.5903, "max_x": 66.8233, "n_centros": 0.1332, "n_events": 6.6151, "n_involved": 1.8796, "n_passes": 3.7021, "opt_quality_mean": 0.0133, "paredes": 0.3537, "pass_options_mean": 8.2716, "passes_behind_line": 0.1401, "pct_adentro": 0.4872, "pct_afuera": 0.4433, "pct_cortos": 0.4038, "pct_headpass": 0.0413, "pct_largos": 0.2149, "pct_launch": 0.0804, "pct_layoff": 0.0121, "pct_medios": 0.3143, "pct_switch": 0.0036, "pct_through": 0.0005, "pct_verticales": 0.4694, "pelotazos_espalda": 0.1097, "press_final": 2.4294, "press_media": 1.8367, "prog_x": 25.6966, "start_x": 41.8703, "starts_from_dispossess": 0.0415, "takeons_ok": 0.0388, "tempo": 0.4142, "transition_speed": 3.6707, "verticalidad_media": 0.3058}, "Hibernian": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1735, "dang_runs": 0.0, "deep_completions": 126.0, "def_h": NaN, "dribbles_box": 4.0, "dribbles_last_third": 15.0, "duration_s": 5671.5, "hold_max": 83.5, "hold_mean": 3.8093, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 38.5, "n_events": 1517.5, "n_involved": NaN, "n_passes": 851.0, "opt_quality_mean": NaN, "paredes": 93.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5407, "pct_afuera": 0.4581, "pct_cortos": 0.3615, "pct_headpass": 0.0563, "pct_largos": 0.1832, "pct_launch": 0.047, "pct_layoff": 0.0181, "pct_medios": 0.4553, "pct_switch": 0.006, "pct_through": 0.0012, "pct_verticales": 0.433, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 12.5, "tempo": 0.1501, "transition_speed": 0.0176, "verticalidad_media": 0.2399}, "Lech Poznań": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.0801, "dang_runs": 0.0, "deep_completions": 84.0, "def_h": NaN, "dribbles_box": 5.0, "dribbles_last_third": 24.0, "duration_s": 5592.0, "hold_max": 125.0, "hold_mean": 3.5672, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 26.0, "n_events": 1638.0, "n_involved": NaN, "n_passes": 996.0, "opt_quality_mean": NaN, "paredes": 96.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5151, "pct_afuera": 0.4819, "pct_cortos": 0.495, "pct_headpass": 0.0412, "pct_largos": 0.1145, "pct_launch": 0.0311, "pct_layoff": 0.0231, "pct_medios": 0.3906, "pct_switch": 0.004, "pct_through": 0.008, "pct_verticales": 0.3735, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 19.0, "tempo": 0.1781, "transition_speed": 0.0179, "verticalidad_media": 0.1401}, "Legia Warszawa": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1936, "dang_runs": 0.0, "deep_completions": 94.0, "def_h": NaN, "dribbles_box": 2.0, "dribbles_last_third": 15.0, "duration_s": 5884.0, "hold_max": 76.0, "hold_mean": 3.9461, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 41.0, "n_events": 1559.0, "n_involved": NaN, "n_passes": 806.0, "opt_quality_mean": NaN, "paredes": 84.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5323, "pct_afuera": 0.4677, "pct_cortos": 0.4355, "pct_headpass": 0.0881, "pct_largos": 0.1886, "pct_launch": 0.0633, "pct_layoff": 0.0099, "pct_medios": 0.3759, "pct_switch": 0.0124, "pct_through": 0.0012, "pct_verticales": 0.4665, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 10.0, "tempo": 0.137, "transition_speed": 0.017, "verticalidad_media": 0.2531}, "Lille": {"atk_l": 43.1797, "atk_w": 31.8996, "ball_distance": 165.0597, "behind_line_ok": 0.0666, "broke_last_line": 0.0397, "broke_second_last": 0.1866, "cross_pvadded_max": 0.001, "dang_runs": 0.2054, "deep_completions": 0.4582, "def_h": 31.4218, "dribbles_box": 0.0172, "dribbles_last_third": 0.058, "duration_s": 28.3881, "hold_max": 9.4557, "hold_mean": 5.1776, "hold_min": 2.9119, "line_breaks": 0.7646, "max_x": 68.6731, "n_centros": 0.1389, "n_events": 6.3007, "n_involved": 1.9831, "n_passes": 4.0014, "opt_quality_mean": 0.1153, "paredes": 0.3772, "pass_options_mean": 9.0841, "passes_behind_line": 0.1344, "pct_adentro": 0.5208, "pct_afuera": 0.4027, "pct_cortos": 0.41, "pct_headpass": 0.0378, "pct_largos": 0.1616, "pct_launch": 0.0645, "pct_layoff": 0.0131, "pct_medios": 0.3531, "pct_switch": 0.0051, "pct_through": 0.0037, "pct_verticales": 0.402, "pelotazos_espalda": 0.0846, "press_final": 2.6052, "press_media": 1.8077, "prog_x": 23.0719, "start_x": 46.5454, "starts_from_dispossess": 0.047, "takeons_ok": 0.0426, "tempo": 0.371, "transition_speed": 2.55, "verticalidad_media": 0.2348}, "Ludogorets Razgrad": {"atk_l": 41.7376, "atk_w": 32.6297, "ball_distance": 125.4071, "behind_line_ok": 0.045, "broke_last_line": 0.0281, "broke_second_last": 0.148, "cross_pvadded_max": 0.0105, "dang_runs": 0.1509, "deep_completions": 10.7251, "def_h": 35.2281, "dribbles_box": 0.3742, "dribbles_last_third": 2.1338, "duration_s": 540.7434, "hold_max": 16.5646, "hold_mean": 5.6356, "hold_min": 2.9932, "line_breaks": 0.5639, "max_x": 66.6023, "n_centros": 3.0898, "n_events": 157.277, "n_involved": 1.8751, "n_passes": 80.1191, "opt_quality_mean": -0.1009, "paredes": 7.6568, "pass_options_mean": 8.2795, "passes_behind_line": 0.108, "pct_adentro": 0.5043, "pct_afuera": 0.4155, "pct_cortos": 0.4162, "pct_headpass": 0.045, "pct_largos": 0.2035, "pct_launch": 0.0776, "pct_layoff": 0.0108, "pct_medios": 0.3009, "pct_switch": 0.0045, "pct_through": 0.0025, "pct_verticales": 0.4743, "pelotazos_espalda": 0.0814, "press_final": 2.3719, "press_media": 1.717, "prog_x": 31.2276, "start_x": 36.2184, "starts_from_dispossess": 0.0356, "takeons_ok": 1.3203, "tempo": 0.353, "transition_speed": 2.9413, "verticalidad_media": 0.3168}, "Lugano": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.3308, "dang_runs": 0.0, "deep_completions": 73.0, "def_h": NaN, "dribbles_box": 2.0, "dribbles_last_third": 15.0, "duration_s": 5885.0, "hold_max": 95.0, "hold_mean": 3.7868, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 36.0, "n_events": 1578.0, "n_involved": NaN, "n_passes": 1010.0, "opt_quality_mean": NaN, "paredes": 118.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5218, "pct_afuera": 0.4762, "pct_cortos": 0.5356, "pct_headpass": 0.0594, "pct_largos": 0.095, "pct_launch": 0.0307, "pct_layoff": 0.0168, "pct_medios": 0.3693, "pct_switch": 0.0, "pct_through": 0.0, "pct_verticales": 0.3931, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 13.0, "tempo": 0.1716, "transition_speed": 0.017, "verticalidad_media": 0.1825}, "Maccabi Tel Aviv": {"atk_l": 45.7413, "atk_w": 32.6132, "ball_distance": 116.2951, "behind_line_ok": 0.0406, "broke_last_line": 0.034, "broke_second_last": 0.1922, "cross_pvadded_max": 0.0011, "dang_runs": 0.1097, "deep_completions": 0.1644, "def_h": 36.6728, "dribbles_box": 0.0059, "dribbles_last_third": 0.0364, "duration_s": 25.2849, "hold_max": 11.8494, "hold_mean": 6.0549, "hold_min": 3.1041, "line_breaks": 0.8117, "max_x": 59.4793, "n_centros": 0.0612, "n_events": 5.2362, "n_involved": 1.881, "n_passes": 3.0876, "opt_quality_mean": -0.1163, "paredes": 0.1846, "pass_options_mean": 9.3626, "passes_behind_line": 0.1202, "pct_adentro": 0.4852, "pct_afuera": 0.4423, "pct_cortos": 0.3858, "pct_headpass": 0.0366, "pct_largos": 0.1878, "pct_launch": 0.0634, "pct_layoff": 0.0169, "pct_medios": 0.3544, "pct_switch": 0.0052, "pct_through": 0.0069, "pct_verticales": 0.4411, "pelotazos_espalda": 0.095, "press_final": 2.3349, "press_media": 1.8511, "prog_x": 21.0914, "start_x": 38.8213, "starts_from_dispossess": 0.0502, "takeons_ok": 0.0417, "tempo": 0.409, "transition_speed": 3.0555, "verticalidad_media": 0.2484}, "Malmö FF": {"atk_l": 38.8077, "atk_w": 31.5545, "ball_distance": 139.989, "behind_line_ok": 0.0386, "broke_last_line": 0.0204, "broke_second_last": 0.1308, "cross_pvadded_max": -0.0004, "dang_runs": 0.1414, "deep_completions": 0.2355, "def_h": 36.0801, "dribbles_box": 0.0089, "dribbles_last_third": 0.0348, "duration_s": 25.707, "hold_max": 11.1804, "hold_mean": 6.6183, "hold_min": 4.191, "line_breaks": 0.6968, "max_x": 59.8924, "n_centros": 0.0681, "n_events": 5.5869, "n_involved": 1.9164, "n_passes": 3.392, "opt_quality_mean": -0.1175, "paredes": 0.3565, "pass_options_mean": 9.3144, "passes_behind_line": 0.1168, "pct_adentro": 0.4773, "pct_afuera": 0.4435, "pct_cortos": 0.4682, "pct_headpass": 0.0462, "pct_largos": 0.1988, "pct_launch": 0.1012, "pct_layoff": 0.0081, "pct_medios": 0.2547, "pct_switch": 0.0006, "pct_through": 0.0051, "pct_verticales": 0.528, "pelotazos_espalda": 0.0796, "press_final": 2.8885, "press_media": 1.9334, "prog_x": 23.0353, "start_x": 38.0459, "starts_from_dispossess": 0.0314, "takeons_ok": 0.0449, "tempo": 0.3986, "transition_speed": 3.3259, "verticalidad_media": 0.3876}, "Midtjylland": {"atk_l": 41.6914, "atk_w": 31.5507, "ball_distance": 90.0486, "behind_line_ok": 0.0343, "broke_last_line": 0.0161, "broke_second_last": 0.1007, "cross_pvadded_max": 0.0439, "dang_runs": 0.0792, "deep_completions": 28.3487, "def_h": 33.1104, "dribbles_box": 0.7036, "dribbles_last_third": 3.518, "duration_s": 1313.8399, "hold_max": 35.2383, "hold_mean": 5.5325, "hold_min": 2.9862, "line_breaks": 0.4682, "max_x": 73.4018, "n_centros": 7.2356, "n_events": 383.586, "n_involved": 1.8385, "n_passes": 237.6064, "opt_quality_mean": 0.0499, "paredes": 26.7096, "pass_options_mean": 6.9963, "passes_behind_line": 0.0945, "pct_adentro": 0.492, "pct_afuera": 0.4262, "pct_cortos": 0.3946, "pct_headpass": 0.0536, "pct_largos": 0.1829, "pct_launch": 0.0764, "pct_layoff": 0.0098, "pct_medios": 0.3422, "pct_switch": 0.0059, "pct_through": 0.0048, "pct_verticales": 0.448, "pelotazos_espalda": 0.0744, "press_final": 2.1085, "press_media": 1.5582, "prog_x": 40.8352, "start_x": 33.6596, "starts_from_dispossess": 0.0329, "takeons_ok": 3.6697, "tempo": 0.3177, "transition_speed": 2.6269, "verticalidad_media": 0.3081}, "Nice": {"atk_l": 43.1686, "atk_w": 31.9722, "ball_distance": 124.818, "behind_line_ok": 0.0389, "broke_last_line": 0.0214, "broke_second_last": 0.1203, "cross_pvadded_max": 0.0008, "dang_runs": 0.1722, "deep_completions": 0.2354, "def_h": 32.9448, "dribbles_box": 0.0091, "dribbles_last_third": 0.0521, "duration_s": 45.2324, "hold_max": 10.1922, "hold_mean": 5.7975, "hold_min": 3.4967, "line_breaks": 0.6552, "max_x": 64.6805, "n_centros": 0.1182, "n_events": 6.839, "n_involved": 1.868, "n_passes": 3.068, "opt_quality_mean": 0.0395, "paredes": 0.2487, "pass_options_mean": 9.3112, "passes_behind_line": 0.1105, "pct_adentro": 0.5144, "pct_afuera": 0.3922, "pct_cortos": 0.4022, "pct_headpass": 0.0459, "pct_largos": 0.1936, "pct_launch": 0.0579, "pct_layoff": 0.0089, "pct_medios": 0.3113, "pct_switch": 0.0032, "pct_through": 0.0049, "pct_verticales": 0.4525, "pelotazos_espalda": 0.0829, "press_final": 2.6379, "press_media": 1.9023, "prog_x": 22.5691, "start_x": 43.452, "starts_from_dispossess": 0.0379, "takeons_ok": 0.0618, "tempo": 0.368, "transition_speed": 3.2815, "verticalidad_media": 0.2972}, "Nottingham Forest": {"atk_l": 42.5328, "atk_w": 32.0143, "ball_distance": 162.0609, "behind_line_ok": 0.0519, "broke_last_line": 0.0336, "broke_second_last": 0.1924, "cross_pvadded_max": 0.0014, "dang_runs": 0.1844, "deep_completions": 0.4198, "def_h": 30.9676, "dribbles_box": 0.014, "dribbles_last_third": 0.0621, "duration_s": 22.8438, "hold_max": 10.4968, "hold_mean": 6.0473, "hold_min": 3.6654, "line_breaks": 0.8908, "max_x": 69.3428, "n_centros": 0.1413, "n_events": 5.7024, "n_involved": 2.0732, "n_passes": 3.7501, "opt_quality_mean": 0.0948, "paredes": 0.3705, "pass_options_mean": 8.872, "passes_behind_line": 0.1215, "pct_adentro": 0.5017, "pct_afuera": 0.4071, "pct_cortos": 0.4155, "pct_headpass": 0.0433, "pct_largos": 0.1782, "pct_launch": 0.0674, "pct_layoff": 0.0107, "pct_medios": 0.3165, "pct_switch": 0.0047, "pct_through": 0.0031, "pct_verticales": 0.4269, "pelotazos_espalda": 0.0856, "press_final": 2.6683, "press_media": 1.9283, "prog_x": 22.8164, "start_x": 47.6509, "starts_from_dispossess": 0.0554, "takeons_ok": 0.0548, "tempo": 0.3804, "transition_speed": 2.8464, "verticalidad_media": 0.266}, "Olympique Lyonnais": {"atk_l": 44.5475, "atk_w": 31.7071, "ball_distance": 225.9594, "behind_line_ok": 0.064, "broke_last_line": 0.0401, "broke_second_last": 0.2292, "cross_pvadded_max": 0.0014, "dang_runs": 0.1975, "deep_completions": 0.4529, "def_h": 32.0314, "dribbles_box": 0.0134, "dribbles_last_third": 0.0652, "duration_s": 34.8321, "hold_max": 9.7305, "hold_mean": 5.0322, "hold_min": 2.6973, "line_breaks": 1.4005, "max_x": 67.1271, "n_centros": 0.1373, "n_events": 7.3075, "n_involved": 2.2033, "n_passes": 4.6527, "opt_quality_mean": 0.0857, "paredes": 0.4405, "pass_options_mean": 9.3421, "passes_behind_line": 0.1295, "pct_adentro": 0.4965, "pct_afuera": 0.4041, "pct_cortos": 0.446, "pct_headpass": 0.0344, "pct_largos": 0.1264, "pct_launch": 0.0387, "pct_layoff": 0.012, "pct_medios": 0.3301, "pct_switch": 0.0054, "pct_through": 0.0044, "pct_verticales": 0.3937, "pelotazos_espalda": 0.0858, "press_final": 2.5532, "press_media": 1.8491, "prog_x": 23.0707, "start_x": 45.7296, "starts_from_dispossess": 0.0463, "takeons_ok": 0.0421, "tempo": 0.3731, "transition_speed": 2.4917, "verticalidad_media": 0.2301}, "PAOK": {"atk_l": 42.8766, "atk_w": 31.9095, "ball_distance": 140.8183, "behind_line_ok": 0.0423, "broke_last_line": 0.0298, "broke_second_last": 0.1149, "cross_pvadded_max": 0.0436, "dang_runs": 0.1289, "deep_completions": 29.4833, "def_h": 31.7817, "dribbles_box": 0.7234, "dribbles_last_third": 4.2515, "duration_s": 1633.6359, "hold_max": 36.6669, "hold_mean": 5.2812, "hold_min": 2.4819, "line_breaks": 0.571, "max_x": 77.7206, "n_centros": 9.4422, "n_events": 468.9433, "n_involved": 2.0324, "n_passes": 282.5303, "opt_quality_mean": 0.0214, "paredes": 27.458, "pass_options_mean": 6.4815, "passes_behind_line": 0.1101, "pct_adentro": 0.5167, "pct_afuera": 0.4197, "pct_cortos": 0.3837, "pct_headpass": 0.0408, "pct_largos": 0.1955, "pct_launch": 0.0638, "pct_layoff": 0.0139, "pct_medios": 0.3582, "pct_switch": 0.0082, "pct_through": 0.0037, "pct_verticales": 0.4311, "pelotazos_espalda": 0.0829, "press_final": 1.8548, "press_media": 1.3246, "prog_x": 45.9234, "start_x": 32.5496, "starts_from_dispossess": 0.033, "takeons_ok": 2.7492, "tempo": 0.328, "transition_speed": 2.332, "verticalidad_media": 0.2581}, "Paks": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1085, "dang_runs": 0.0, "deep_completions": 103.0, "def_h": NaN, "dribbles_box": 6.0, "dribbles_last_third": 20.0, "duration_s": 5769.0, "hold_max": 109.0, "hold_mean": 3.3875, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 43.0, "n_events": 1708.0, "n_involved": NaN, "n_passes": 869.0, "opt_quality_mean": NaN, "paredes": 82.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5374, "pct_afuera": 0.458, "pct_cortos": 0.4764, "pct_headpass": 0.1162, "pct_largos": 0.1968, "pct_launch": 0.0863, "pct_layoff": 0.0184, "pct_medios": 0.3268, "pct_switch": 0.0058, "pct_through": 0.0046, "pct_verticales": 0.5155, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 17.0, "tempo": 0.1506, "transition_speed": 0.0173, "verticalidad_media": 0.301}, "Panathinaikos": {"atk_l": 40.7175, "atk_w": 31.0746, "ball_distance": 132.5622, "behind_line_ok": 0.0484, "broke_last_line": 0.0318, "broke_second_last": 0.1526, "cross_pvadded_max": 0.0114, "dang_runs": 0.115, "deep_completions": 8.9383, "def_h": 31.8587, "dribbles_box": 0.5521, "dribbles_last_third": 1.9693, "duration_s": 464.573, "hold_max": 20.1082, "hold_mean": 5.9847, "hold_min": 3.4479, "line_breaks": 0.6733, "max_x": 69.6227, "n_centros": 2.8837, "n_events": 126.6798, "n_involved": 1.9824, "n_passes": 68.5411, "opt_quality_mean": 0.0119, "paredes": 6.3421, "pass_options_mean": 8.15, "passes_behind_line": 0.1242, "pct_adentro": 0.5061, "pct_afuera": 0.4214, "pct_cortos": 0.3974, "pct_headpass": 0.0483, "pct_largos": 0.1997, "pct_launch": 0.0956, "pct_layoff": 0.0142, "pct_medios": 0.3307, "pct_switch": 0.004, "pct_through": 0.0039, "pct_verticales": 0.4828, "pelotazos_espalda": 0.0795, "press_final": 2.3049, "press_media": 1.7298, "prog_x": 29.7982, "start_x": 41.0452, "starts_from_dispossess": 0.0364, "takeons_ok": 1.4394, "tempo": 0.3802, "transition_speed": 3.1168, "verticalidad_media": 0.3268}, "Porto": {"atk_l": 39.7594, "atk_w": 31.6065, "ball_distance": 134.4694, "behind_line_ok": 0.059, "broke_last_line": 0.0272, "broke_second_last": 0.1705, "cross_pvadded_max": 0.0009, "dang_runs": 0.1829, "deep_completions": 0.3263, "def_h": 31.0605, "dribbles_box": 0.01, "dribbles_last_third": 0.0587, "duration_s": 36.1534, "hold_max": 10.4736, "hold_mean": 5.9494, "hold_min": 3.5034, "line_breaks": 0.6625, "max_x": 67.435, "n_centros": 0.1286, "n_events": 6.4284, "n_involved": 1.9395, "n_passes": 3.3922, "opt_quality_mean": 0.1076, "paredes": 0.3069, "pass_options_mean": 8.8549, "passes_behind_line": 0.1227, "pct_adentro": 0.4954, "pct_afuera": 0.4077, "pct_cortos": 0.4021, "pct_headpass": 0.0453, "pct_largos": 0.1651, "pct_launch": 0.0494, "pct_layoff": 0.0094, "pct_medios": 0.3363, "pct_switch": 0.0026, "pct_through": 0.0061, "pct_verticales": 0.4534, "pelotazos_espalda": 0.08, "press_final": 2.7169, "press_media": 1.9038, "prog_x": 23.3868, "start_x": 45.409, "starts_from_dispossess": 0.0577, "takeons_ok": 0.0525, "tempo": 0.3702, "transition_speed": 2.9809, "verticalidad_media": 0.3081}, "Rangers": {"atk_l": 41.5876, "atk_w": 31.7975, "ball_distance": 134.0467, "behind_line_ok": 0.0427, "broke_last_line": 0.0251, "broke_second_last": 0.1598, "cross_pvadded_max": 0.0018, "dang_runs": 0.1369, "deep_completions": 0.3151, "def_h": 32.0369, "dribbles_box": 0.0173, "dribbles_last_third": 0.0649, "duration_s": 14.9014, "hold_max": 10.4716, "hold_mean": 6.1025, "hold_min": 3.6772, "line_breaks": 0.7183, "max_x": 67.5475, "n_centros": 0.144, "n_events": 4.7842, "n_involved": 1.945, "n_passes": 3.3685, "opt_quality_mean": 0.072, "paredes": 0.2977, "pass_options_mean": 9.3888, "passes_behind_line": 0.1106, "pct_adentro": 0.5245, "pct_afuera": 0.3711, "pct_cortos": 0.3859, "pct_headpass": 0.0348, "pct_largos": 0.1976, "pct_launch": 0.071, "pct_layoff": 0.0092, "pct_medios": 0.3139, "pct_switch": 0.0016, "pct_through": 0.0022, "pct_verticales": 0.4355, "pelotazos_espalda": 0.0836, "press_final": 2.7183, "press_media": 1.9789, "prog_x": 23.6332, "start_x": 44.5924, "starts_from_dispossess": 0.0434, "takeons_ok": 0.0735, "tempo": 0.3882, "transition_speed": 3.8175, "verticalidad_media": 0.2791}, "Real Betis": {"atk_l": 44.7667, "atk_w": 32.294, "ball_distance": 222.5657, "behind_line_ok": 0.0667, "broke_last_line": 0.0394, "broke_second_last": 0.1789, "cross_pvadded_max": 0.0006, "dang_runs": 0.2339, "deep_completions": 0.3406, "def_h": 32.1904, "dribbles_box": 0.0194, "dribbles_last_third": 0.0795, "duration_s": 36.7516, "hold_max": 9.7641, "hold_mean": 4.999, "hold_min": 2.7037, "line_breaks": 1.0586, "max_x": 67.663, "n_centros": 0.0943, "n_events": 7.2349, "n_involved": 2.1507, "n_passes": 4.248, "opt_quality_mean": 0.0053, "paredes": 0.4404, "pass_options_mean": 9.2334, "passes_behind_line": 0.1402, "pct_adentro": 0.5071, "pct_afuera": 0.4094, "pct_cortos": 0.4484, "pct_headpass": 0.0351, "pct_largos": 0.1596, "pct_launch": 0.0671, "pct_layoff": 0.0103, "pct_medios": 0.3104, "pct_switch": 0.0069, "pct_through": 0.0038, "pct_verticales": 0.4333, "pelotazos_espalda": 0.0948, "press_final": 2.6783, "press_media": 1.8653, "prog_x": 22.915, "start_x": 45.6907, "starts_from_dispossess": 0.0472, "takeons_ok": 0.0632, "tempo": 0.3884, "transition_speed": 2.7621, "verticalidad_media": 0.2737}, "Roma": {"atk_l": 43.5592, "atk_w": 31.2403, "ball_distance": 144.2896, "behind_line_ok": 0.0431, "broke_last_line": 0.0372, "broke_second_last": 0.1881, "cross_pvadded_max": 0.0013, "dang_runs": 0.1993, "deep_completions": 0.3699, "def_h": 31.6915, "dribbles_box": 0.0104, "dribbles_last_third": 0.0516, "duration_s": 35.5401, "hold_max": 9.2794, "hold_mean": 5.3506, "hold_min": 3.2099, "line_breaks": 0.7824, "max_x": 68.281, "n_centros": 0.1219, "n_events": 6.6565, "n_involved": 2.0539, "n_passes": 3.482, "opt_quality_mean": 0.0356, "paredes": 0.2452, "pass_options_mean": 9.1791, "passes_behind_line": 0.116, "pct_adentro": 0.4987, "pct_afuera": 0.4119, "pct_cortos": 0.3989, "pct_headpass": 0.0411, "pct_largos": 0.1667, "pct_launch": 0.0721, "pct_layoff": 0.0091, "pct_medios": 0.3455, "pct_switch": 0.0036, "pct_through": 0.0033, "pct_verticales": 0.4373, "pelotazos_espalda": 0.0768, "press_final": 2.7971, "press_media": 2.0055, "prog_x": 23.2482, "start_x": 45.98, "starts_from_dispossess": 0.0507, "takeons_ok": 0.0444, "tempo": 0.4082, "transition_speed": 3.3112, "verticalidad_media": 0.3004}, "Salzburg": {"atk_l": 39.0967, "atk_w": 31.968, "ball_distance": 94.3269, "behind_line_ok": 0.0301, "broke_last_line": 0.0311, "broke_second_last": 0.1835, "cross_pvadded_max": 0.0002, "dang_runs": 0.0911, "deep_completions": 0.2851, "def_h": 34.5027, "dribbles_box": 0.0181, "dribbles_last_third": 0.06, "duration_s": 22.8478, "hold_max": 8.7552, "hold_mean": 4.9786, "hold_min": 2.7829, "line_breaks": 0.5632, "max_x": 64.9784, "n_centros": 0.0874, "n_events": 5.3271, "n_involved": 1.7821, "n_passes": 3.2879, "opt_quality_mean": -0.0273, "paredes": 0.303, "pass_options_mean": 8.3091, "passes_behind_line": 0.0769, "pct_adentro": 0.5177, "pct_afuera": 0.3885, "pct_cortos": 0.4278, "pct_headpass": 0.0306, "pct_largos": 0.158, "pct_launch": 0.0661, "pct_layoff": 0.0113, "pct_medios": 0.3212, "pct_switch": 0.0019, "pct_through": 0.007, "pct_verticales": 0.4518, "pelotazos_espalda": 0.0518, "press_final": 2.7671, "press_media": 1.9309, "prog_x": 23.565, "start_x": 43.1166, "starts_from_dispossess": 0.0608, "takeons_ok": 0.0595, "tempo": 0.3702, "transition_speed": 3.0751, "verticalidad_media": 0.2998}, "Samsunspor": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1794, "dang_runs": 0.0, "deep_completions": 75.0, "def_h": NaN, "dribbles_box": 0.0, "dribbles_last_third": 11.0, "duration_s": 5644.0, "hold_max": 86.0, "hold_mean": 3.7453, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 28.0, "n_events": 1529.0, "n_involved": NaN, "n_passes": 966.0, "opt_quality_mean": NaN, "paredes": 109.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5476, "pct_afuera": 0.4513, "pct_cortos": 0.4337, "pct_headpass": 0.0507, "pct_largos": 0.1304, "pct_launch": 0.0373, "pct_layoff": 0.0052, "pct_medios": 0.4358, "pct_switch": 0.0093, "pct_through": 0.0, "pct_verticales": 0.4027, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 6.0, "tempo": 0.1712, "transition_speed": 0.0177, "verticalidad_media": 0.1503}, "Servette": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.2584, "dang_runs": 0.0, "deep_completions": 62.0, "def_h": NaN, "dribbles_box": 2.0, "dribbles_last_third": 13.0, "duration_s": 5708.0, "hold_max": 92.0, "hold_mean": 3.7476, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 39.0, "n_events": 1547.0, "n_involved": NaN, "n_passes": 912.0, "opt_quality_mean": NaN, "paredes": 92.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5241, "pct_afuera": 0.4748, "pct_cortos": 0.4441, "pct_headpass": 0.0702, "pct_largos": 0.1338, "pct_launch": 0.0482, "pct_layoff": 0.0055, "pct_medios": 0.4221, "pct_switch": 0.0022, "pct_through": 0.0, "pct_verticales": 0.4276, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 11.0, "tempo": 0.1598, "transition_speed": 0.0175, "verticalidad_media": 0.2214}, "Shakhtar Donetsk": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1519, "dang_runs": 0.0, "deep_completions": 90.0, "def_h": NaN, "dribbles_box": 3.0, "dribbles_last_third": 16.0, "duration_s": 5700.0, "hold_max": 145.0, "hold_mean": 3.9077, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 24.0, "n_events": 1476.0, "n_involved": NaN, "n_passes": 937.0, "opt_quality_mean": NaN, "paredes": 96.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5251, "pct_afuera": 0.4728, "pct_cortos": 0.428, "pct_headpass": 0.0277, "pct_largos": 0.1121, "pct_launch": 0.0245, "pct_layoff": 0.0139, "pct_medios": 0.46, "pct_switch": 0.016, "pct_through": 0.0032, "pct_verticales": 0.3383, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 14.0, "tempo": 0.1644, "transition_speed": 0.0175, "verticalidad_media": 0.1232}, "Sheriff": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.2855, "dang_runs": 0.0, "deep_completions": 66.0, "def_h": NaN, "dribbles_box": 3.0, "dribbles_last_third": 11.0, "duration_s": 5762.0, "hold_max": 103.0, "hold_mean": 4.0782, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 29.0, "n_events": 1459.0, "n_involved": NaN, "n_passes": 790.0, "opt_quality_mean": NaN, "paredes": 60.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5203, "pct_afuera": 0.4785, "pct_cortos": 0.3785, "pct_headpass": 0.0734, "pct_largos": 0.1962, "pct_launch": 0.0595, "pct_layoff": 0.0114, "pct_medios": 0.4253, "pct_switch": 0.0101, "pct_through": 0.0, "pct_verticales": 0.4646, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 11.0, "tempo": 0.1371, "transition_speed": 0.0174, "verticalidad_media": 0.2472}, "Sigma Olomouc": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.1878, "dang_runs": 0.0, "deep_completions": 97.0, "def_h": NaN, "dribbles_box": 3.0, "dribbles_last_third": 16.0, "duration_s": 5594.0, "hold_max": 58.0, "hold_mean": 3.5206, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 43.0, "n_events": 1625.0, "n_involved": NaN, "n_passes": 928.0, "opt_quality_mean": NaN, "paredes": 103.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5323, "pct_afuera": 0.4677, "pct_cortos": 0.514, "pct_headpass": 0.042, "pct_largos": 0.1541, "pct_launch": 0.0312, "pct_layoff": 0.0194, "pct_medios": 0.3319, "pct_switch": 0.0075, "pct_through": 0.0043, "pct_verticales": 0.4289, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 12.0, "tempo": 0.1659, "transition_speed": 0.0179, "verticalidad_media": 0.2021}, "Slovan Bratislava": {"atk_l": NaN, "atk_w": NaN, "ball_distance": 0.0, "behind_line_ok": 0.0, "broke_last_line": 0.0, "broke_second_last": 0.0, "cross_pvadded_max": 0.2666, "dang_runs": 0.0, "deep_completions": 74.0, "def_h": NaN, "dribbles_box": 0.0, "dribbles_last_third": 11.0, "duration_s": 5593.0, "hold_max": 196.0, "hold_mean": 3.8763, "hold_min": 0.0, "line_breaks": 0.0, "max_x": 100.0, "n_centros": 40.0, "n_events": 1522.0, "n_involved": NaN, "n_passes": 794.0, "opt_quality_mean": NaN, "paredes": 51.0, "pass_options_mean": 0.0, "passes_behind_line": 0.0, "pct_adentro": 0.5579, "pct_afuera": 0.4395, "pct_cortos": 0.4421, "pct_headpass": 0.0869, "pct_largos": 0.1952, "pct_launch": 0.0655, "pct_layoff": 0.0076, "pct_medios": 0.3627, "pct_switch": 0.0101, "pct_through": 0.0025, "pct_verticales": 0.5088, "pelotazos_espalda": 0.0, "press_final": 0.0, "press_media": 0.0, "prog_x": 100.0, "start_x": 0.0, "starts_from_dispossess": 0.0, "takeons_ok": 6.0, "tempo": 0.142, "transition_speed": 0.0179, "verticalidad_media": 0.3252}, "Sporting Braga": {"atk_l": 42.0265, "atk_w": 30.776, "ball_distance": 162.2458, "behind_line_ok": 0.0487, "broke_last_line": 0.0324, "broke_second_last": 0.1744, "cross_pvadded_max": 0.0072, "dang_runs": 0.1626, "deep_completions": 6.3374, "def_h": 31.9077, "dribbles_box": 0.1479, "dribbles_last_third": 0.7124, "duration_s": 408.7479, "hold_max": 16.9051, "hold_mean": 6.0441, "hold_min": 3.4617, "line_breaks": 0.9598, "max_x": 68.9436, "n_centros": 2.1028, "n_events": 119.5762, "n_involved": 2.1003, "n_passes": 72.4187, "opt_quality_mean": 0.0381, "paredes": 7.3831, "pass_options_mean": 8.1704, "passes_behind_line": 0.1189, "pct_adentro": 0.5114, "pct_afuera": 0.4334, "pct_cortos": 0.4821, "pct_headpass": 0.0431, "pct_largos": 0.1683, "pct_launch": 0.0818, "pct_layoff": 0.0137, "pct_medios": 0.2952, "pct_switch": 0.0035, "pct_through": 0.0026, "pct_verticales": 0.4594, "pelotazos_espalda": 0.0866, "press_final": 2.4118, "press_media": 1.786, "prog_x": 26.5245, "start_x": 43.0247, "starts_from_dispossess": 0.0391, "takeons_ok": 1.2379, "tempo": 0.3989, "transition_speed": 2.6551, "verticalidad_media": 0.2734}, "Sturm Graz": {"atk_l": 34.9341, "atk_w": 31.3198, "ball_distance": 93.9859, "behind_line_ok": 0.045, "broke_last_line": 0.0252, "broke_second_last": 0.1625, "cross_pvadded_max": -0.0, "dang_runs": 0.0703, "deep_completions": 0.2457, "def_h": 32.8505, "dribbles_box": 0.0016, "dribbles_last_third": 0.0493, "duration_s": 29.9068, "hold_max": 9.093, "hold_mean": 5.5535, "hold_min": 3.4683, "line_breaks": 0.5191, "max_x": 64.3822, "n_centros": 0.0835, "n_events": 5.8373, "n_involved": 1.8701, "n_passes": 2.8472, "opt_quality_mean": -0.0484, "paredes": 0.2575, "pass_options_mean": 9.4336, "passes_behind_line": 0.1038, "pct_adentro": 0.5264, "pct_afuera": 0.3832, "pct_cortos": 0.4521, "pct_headpass": 0.0485, "pct_largos": 0.1858, "pct_launch": 0.1142, "pct_layoff": 0.015, "pct_medios": 0.2729, "pct_switch": 0.0031, "pct_through": 0.0019, "pct_verticales": 0.4888, "pelotazos_espalda": 0.0769, "press_final": 2.7831, "press_media": 1.9315, "prog_x": 23.188, "start_x": 42.0202, "starts_from_dispossess": 0.042, "takeons_ok": 0.0297, "tempo": 0.4332, "transition_speed": 3.8623, "verticalidad_media": 0.3679}, "Stuttgart": {"atk_l": 42.4444, "atk_w": 30.9504, "ball_distance": 152.2746, "behind_line_ok": 0.0631, "broke_last_line": 0.0429, "broke_second_last": 0.2259, "cross_pvadded_max": 0.0019, "dang_runs": 0.1582, "deep_completions": 0.5133, "def_h": 29.4449, "dribbles_box": 0.0146, "dribbles_last_third": 0.0678, "duration_s": 30.4543, "hold_max": 10.3029, "hold_mean": 5.7527, "hold_min": 3.3795, "line_breaks": 0.9387, "max_x": 70.9243, "n_centros": 0.1524, "n_events": 6.4485, "n_involved": 2.0037, "n_passes": 3.9834, "opt_quality_mean": 0.201, "paredes": 0.3893, "pass_options_mean": 9.2815, "passes_behind_line": 0.1226, "pct_adentro": 0.5314, "pct_afuera": 0.4019, "pct_cortos": 0.4488, "pct_headpass": 0.0503, "pct_largos": 0.1501, "pct_launch": 0.0628, "pct_layoff": 0.0163, "pct_medios": 0.3367, "pct_switch": 0.0019, "pct_through": 0.007, "pct_verticales": 0.4253, "pelotazos_espalda": 0.0734, "press_final": 2.572, "press_media": 1.9415, "prog_x": 23.1075, "start_x": 48.9853, "starts_from_dispossess": 0.0371, "takeons_ok": 0.0516, "tempo": 0.409, "transition_speed": 2.8868, "verticalidad_media": 0.2598}, "Utrecht": {"atk_l": 40.1863, "atk_w": 30.9899, "ball_distance": 94.6555, "behind_line_ok": 0.0254, "broke_last_line": 0.0151, "broke_second_last": 0.1117, "cross_pvadded_max": 0.0359, "dang_runs": 0.1003, "deep_completions": 27.808, "def_h": 33.4708, "dribbles_box": 0.7536, "dribbles_last_third": 4.1065, "duration_s": 1896.9687, "hold_max": 48.5232, "hold_mean": 5.5517, "hold_min": 2.5906, "line_breaks": 0.4466, "max_x": 76.1073, "n_centros": 9.9201, "n_events": 516.9417, "n_involved": 1.9142, "n_passes": 298.3868, "opt_quality_mean": -0.042, "paredes": 28.3231, "pass_options_mean": 6.1145, "passes_behind_line": 0.0668, "pct_adentro": 0.5082, "pct_afuera": 0.4359, "pct_cortos": 0.4111, "pct_headpass": 0.058, "pct_largos": 0.1778, "pct_launch": 0.0815, "pct_layoff": 0.0104, "pct_medios": 0.3557, "pct_switch": 0.0034, "pct_through": 0.0016, "pct_verticales": 0.4617, "pelotazos_espalda": 0.0479, "press_final": 1.6254, "press_media": 1.2751, "prog_x": 47.9777, "start_x": 28.9225, "starts_from_dispossess": 0.0304, "takeons_ok": 3.1119, "tempo": 0.3185, "transition_speed": 2.1481, "verticalidad_media": 0.2919}, "Viktoria Plzeň": {"atk_l": 40.9049, "atk_w": 31.0895, "ball_distance": 122.7399, "behind_line_ok": 0.0412, "broke_last_line": 0.0225, "broke_second_last": 0.1719, "cross_pvadded_max": 0.0006, "dang_runs": 0.1231, "deep_completions": 0.2849, "def_h": 32.224, "dribbles_box": 0.0095, "dribbles_last_third": 0.0565, "duration_s": 27.169, "hold_max": 10.6004, "hold_mean": 6.3798, "hold_min": 3.9892, "line_breaks": 0.6656, "max_x": 67.8725, "n_centros": 0.1153, "n_events": 5.48, "n_involved": 1.784, "n_passes": 2.7661, "opt_quality_mean": 0.0352, "paredes": 0.243, "pass_options_mean": 9.1794, "passes_behind_line": 0.1156, "pct_adentro": 0.4908, "pct_afuera": 0.4187, "pct_cortos": 0.3818, "pct_headpass": 0.0573, "pct_largos": 0.2224, "pct_launch": 0.0878, "pct_layoff": 0.0093, "pct_medios": 0.3064, "pct_switch": 0.0067, "pct_through": 0.0032, "pct_verticales": 0.5243, "pelotazos_espalda": 0.0941, "press_final": 2.6453, "press_media": 1.8554, "prog_x": 24.9339, "start_x": 43.8233, "starts_from_dispossess": 0.0458, "takeons_ok": 0.0402, "tempo": 0.3661, "transition_speed": 3.6747, "verticalidad_media": 0.3985}, "Young Boys": {"atk_l": 40.3467, "atk_w": 32.4822, "ball_distance": 103.3774, "behind_line_ok": 0.039, "broke_last_line": 0.0267, "broke_second_last": 0.17, "cross_pvadded_max": 0.0091, "dang_runs": 0.1968, "deep_completions": 11.3695, "def_h": 33.727, "dribbles_box": 0.6729, "dribbles_last_third": 1.3753, "duration_s": 643.026, "hold_max": 18.9976, "hold_mean": 5.5263, "hold_min": 3.0048, "line_breaks": 0.528, "max_x": 68.978, "n_centros": 2.762, "n_events": 187.9506, "n_involved": 1.8659, "n_passes": 113.4509, "opt_quality_mean": -0.0339, "paredes": 10.0214, "pass_options_mean": 8.2649, "passes_behind_line": 0.0948, "pct_adentro": 0.4971, "pct_afuera": 0.4208, "pct_cortos": 0.4153, "pct_headpass": 0.0385, "pct_largos": 0.1688, "pct_launch": 0.0624, "pct_layoff": 0.0108, "pct_medios": 0.3344, "pct_switch": 0.003, "pct_through": 0.0021, "pct_verticales": 0.4452, "pelotazos_espalda": 0.0645, "press_final": 2.5101, "press_media": 1.6698, "prog_x": 33.7744, "start_x": 36.5707, "starts_from_dispossess": 0.0484, "takeons_ok": 1.8167, "tempo": 0.3675, "transition_speed": 3.0978, "verticalidad_media": 0.2927}}, "team_eje_norm_gen": {"AEK Larnaca": {"eje_verticalidad": -0.2546, "eje_elaboracion": 20.6859, "eje_individual": 19.6162, "eje_rotura_lineas": -0.1991, "eje_amplitud_centro": 9.0946, "eje_profundidad_espalda": 8.0934, "eje_robo_alto": -0.9559, "eje_aereo_segunda": -0.0138}, "Aberdeen": {"eje_verticalidad": -0.2208, "eje_elaboracion": 20.8906, "eje_individual": 25.0988, "eje_rotura_lineas": -0.2304, "eje_amplitud_centro": 19.2296, "eje_profundidad_espalda": 9.9431, "eje_robo_alto": -0.9559, "eje_aereo_segunda": 0.0384}, "Aston Villa": {"eje_verticalidad": -0.0642, "eje_elaboracion": -0.0058, "eje_individual": -0.0093, "eje_rotura_lineas": 0.026, "eje_amplitud_centro": -0.0129, "eje_profundidad_espalda": -0.0002, "eje_robo_alto": -0.0238, "eje_aereo_segunda": -0.0588}, "Basel": {"eje_verticalidad": -0.023, "eje_elaboracion": -0.0203, "eje_individual": -0.0421, "eje_rotura_lineas": -0.0033, "eje_amplitud_centro": -0.0254, "eje_profundidad_espalda": -0.0608, "eje_robo_alto": -0.0096, "eje_aereo_segunda": -0.0545}, "Beşiktaş": {"eje_verticalidad": -0.3635, "eje_elaboracion": 22.6489, "eje_individual": 21.6454, "eje_rotura_lineas": -0.228, "eje_amplitud_centro": 8.1213, "eje_profundidad_espalda": 8.8152, "eje_robo_alto": -0.9559, "eje_aereo_segunda": -0.1258}, "Bologna": {"eje_verticalidad": 0.0136, "eje_elaboracion": -0.0647, "eje_individual": 0.0005, "eje_rotura_lineas": -0.0047, "eje_amplitud_centro": 0.0315, "eje_profundidad_espalda": 0.0191, "eje_robo_alto": 0.0908, "eje_aereo_segunda": 0.0077}, "Brann": {"eje_verticalidad": 0.0837, "eje_elaboracion": -0.0322, "eje_individual": -0.0467, "eje_rotura_lineas": -0.0782, "eje_amplitud_centro": -0.0255, "eje_profundidad_espalda": -0.0687, "eje_robo_alto": -0.0153, "eje_aereo_segunda": 0.0819}, "CFR Cluj": {"eje_verticalidad": -0.1866, "eje_elaboracion": 21.2184, "eje_individual": 18.4584, "eje_rotura_lineas": -0.2297, "eje_amplitud_centro": 13.9264, "eje_profundidad_espalda": 8.9506, "eje_robo_alto": -0.9559, "eje_aereo_segunda": 0.1159}, "Celta de Vigo": {"eje_verticalidad": -0.0462, "eje_elaboracion": -0.018, "eje_individual": -0.013, "eje_rotura_lineas": 0.098, "eje_amplitud_centro": 0.0146, "eje_profundidad_espalda": 0.0301, "eje_robo_alto": -0.056, "eje_aereo_segunda": -0.0283}, "Celtic": {"eje_verticalidad": 0.014, "eje_elaboracion": -0.0195, "eje_individual": 0.0173, "eje_rotura_lineas": 0.0256, "eje_amplitud_centro": -0.0206, "eje_profundidad_espalda": 0.0378, "eje_robo_alto": -0.0125, "eje_aereo_segunda": -0.0217}, "Crvena zvezda": {"eje_verticalidad": 0.0152, "eje_elaboracion": -0.0158, "eje_individual": -0.0202, "eje_rotura_lineas": -0.012, "eje_amplitud_centro": -0.0289, "eje_profundidad_espalda": -0.0337, "eje_robo_alto": -0.0348, "eje_aereo_segunda": 0.0317}, "Dinamo Zagreb": {"eje_verticalidad": -0.0485, "eje_elaboracion": 0.0023, "eje_individual": 0.0023, "eje_rotura_lineas": -0.0102, "eje_amplitud_centro": -0.0069, "eje_profundidad_espalda": -0.0221, "eje_robo_alto": 0.003, "eje_aereo_segunda": -0.0114}, "Drita": {"eje_verticalidad": -0.2098, "eje_elaboracion": 21.1939, "eje_individual": 26.0753, "eje_rotura_lineas": -0.2301, "eje_amplitud_centro": 11.3811, "eje_profundidad_espalda": 6.6948, "eje_robo_alto": -0.9559, "eje_aereo_segunda": 0.0798}, "FCSB": {"eje_verticalidad": 0.0624, "eje_elaboracion": 2.5162, "eje_individual": 2.8282, "eje_rotura_lineas": -0.0343, "eje_amplitud_centro": 0.9821, "eje_profundidad_espalda": 0.6093, "eje_robo_alto": -0.1715, "eje_aereo_segunda": -0.0028}, "Fenerbahçe": {"eje_verticalidad": -0.0832, "eje_elaboracion": 0.0012, "eje_individual": -0.0337, "eje_rotura_lineas": 0.0133, "eje_amplitud_centro": -0.0183, "eje_profundidad_espalda": 0.0153, "eje_robo_alto": -0.0069, "eje_aereo_segunda": -0.0238}, "Ferencváros": {"eje_verticalidad": 0.0608, "eje_elaboracion": -0.0328, "eje_individual": -0.0208, "eje_rotura_lineas": -0.0315, "eje_amplitud_centro": -0.0327, "eje_profundidad_espalda": 0.0138, "eje_robo_alto": 0.0436, "eje_aereo_segunda": 0.0721}, "Feyenoord": {"eje_verticalidad": -0.077, "eje_elaboracion": -0.0045, "eje_individual": 0.0272, "eje_rotura_lineas": 0.022, "eje_amplitud_centro": 0.0092, "eje_profundidad_espalda": -0.01, "eje_robo_alto": 0.0366, "eje_aereo_segunda": 0.0107}, "Fredrikstad": {"eje_verticalidad": -0.2839, "eje_elaboracion": 22.4982, "eje_individual": 17.6371, "eje_rotura_lineas": -0.2306, "eje_amplitud_centro": 14.0581, "eje_profundidad_espalda": 7.3264, "eje_robo_alto": -0.9559, "eje_aereo_segunda": -0.0049}, "Freiburg": {"eje_verticalidad": -0.0249, "eje_elaboracion": -0.048, "eje_individual": -0.0095, "eje_rotura_lineas": -0.0534, "eje_amplitud_centro": -0.0063, "eje_profundidad_espalda": -0.0312, "eje_robo_alto": -0.0042, "eje_aereo_segunda": 0.0344}, "Genk": {"eje_verticalidad": -0.0582, "eje_elaboracion": 1.772, "eje_individual": 2.7499, "eje_rotura_lineas": 0.0209, "eje_amplitud_centro": 0.936, "eje_profundidad_espalda": 0.8882, "eje_robo_alto": -0.0469, "eje_aereo_segunda": -0.0285}, "Go Ahead Eagles": {"eje_verticalidad": 0.0336, "eje_elaboracion": -0.0084, "eje_individual": -0.0385, "eje_rotura_lineas": -0.0323, "eje_amplitud_centro": 0.0272, "eje_profundidad_espalda": 0.0519, "eje_robo_alto": -0.0638, "eje_aereo_segunda": 0.0054}, "Hibernian": {"eje_verticalidad": -0.1903, "eje_elaboracion": 20.827, "eje_individual": 21.0414, "eje_rotura_lineas": -0.2296, "eje_amplitud_centro": 13.1992, "eje_profundidad_espalda": 11.1161, "eje_robo_alto": -0.9559, "eje_aereo_segunda": 0.0242}, "Lech Poznań": {"eje_verticalidad": -0.3444, "eje_elaboracion": 22.5845, "eje_individual": 30.9229, "eje_rotura_lineas": -0.1945, "eje_amplitud_centro": 8.9264, "eje_profundidad_espalda": 7.3264, "eje_robo_alto": -0.9559, "eje_aereo_segunda": -0.0012}, "Legia Warszawa": {"eje_verticalidad": -0.1553, "eje_elaboracion": 19.7285, "eje_individual": 16.3801, "eje_rotura_lineas": -0.2294, "eje_amplitud_centro": 14.1129, "eje_profundidad_espalda": 8.2287, "eje_robo_alto": -0.9559, "eje_aereo_segunda": 0.0671}, "Lille": {"eje_verticalidad": -0.1422, "eje_elaboracion": -0.0055, "eje_individual": 0.0008, "eje_rotura_lineas": 0.0141, "eje_amplitud_centro": 0.0017, "eje_profundidad_espalda": 0.034, "eje_robo_alto": 0.0378, "eje_aereo_segunda": -0.019}, "Ludogorets Razgrad": {"eje_verticalidad": -0.0037, "eje_elaboracion": 1.7794, "eje_individual": 2.3381, "eje_rotura_lineas": -0.0481, "eje_amplitud_centro": 1.0198, "eje_profundidad_espalda": 0.9152, "eje_robo_alto": -0.1849, "eje_aereo_segunda": 0.0012}, "Lugano": {"eje_verticalidad": -0.3209, "eje_elaboracion": 25.007, "eje_individual": 18.1349, "eje_rotura_lineas": -0.2358, "eje_amplitud_centro": 12.3157, "eje_profundidad_espalda": 6.3339, "eje_robo_alto": -0.9559, "eje_aereo_segunda": -0.0}, "Maccabi Tel Aviv": {"eje_verticalidad": -0.0669, "eje_elaboracion": -0.0508, "eje_individual": -0.0539, "eje_rotura_lineas": 0.0305, "eje_amplitud_centro": 0.0137, "eje_profundidad_espalda": -0.0212, "eje_robo_alto": -0.1008, "eje_aereo_segunda": -0.0009}, "Malmö FF": {"eje_verticalidad": 0.0878, "eje_elaboracion": 0.0235, "eje_individual": -0.0397, "eje_rotura_lineas": -0.0436, "eje_amplitud_centro": -0.0172, "eje_profundidad_espalda": -0.0332, "eje_robo_alto": -0.1604, "eje_aereo_segunda": 0.022}, "Midtjylland": {"eje_verticalidad": -0.0576, "eje_elaboracion": 5.6313, "eje_individual": 4.9092, "eje_rotura_lineas": -0.0886, "eje_amplitud_centro": 2.4605, "eje_profundidad_espalda": 2.4778, "eje_robo_alto": -0.2398, "eje_aereo_segunda": 0.0119}, "Nice": {"eje_verticalidad": -0.025, "eje_elaboracion": -0.0208, "eje_individual": -0.0126, "eje_rotura_lineas": -0.0533, "eje_amplitud_centro": -0.0303, "eje_profundidad_espalda": -0.0346, "eje_robo_alto": -0.0425, "eje_aereo_segunda": -0.0366}, "Nottingham Forest": {"eje_verticalidad": -0.0869, "eje_elaboracion": -0.0087, "eje_individual": -0.0007, "eje_rotura_lineas": 0.0173, "eje_amplitud_centro": 0.0031, "eje_profundidad_espalda": 0.0064, "eje_robo_alto": 0.0788, "eje_aereo_segunda": -0.0175}, "Olympique Lyonnais": {"eje_verticalidad": -0.1864, "eje_elaboracion": 0.0352, "eje_individual": -0.0041, "eje_rotura_lineas": 0.0991, "eje_amplitud_centro": 0.0041, "eje_profundidad_espalda": 0.0283, "eje_robo_alto": 0.0208, "eje_aereo_segunda": -0.0705}, "PAOK": {"eje_verticalidad": -0.0903, "eje_elaboracion": 6.3544, "eje_individual": 4.7807, "eje_rotura_lineas": -0.0585, "eje_amplitud_centro": 3.227, "eje_profundidad_espalda": 2.6078, "eje_robo_alto": -0.2606, "eje_aereo_segunda": -0.0096}, "Paks": {"eje_verticalidad": -0.0869, "eje_elaboracion": 20.1175, "eje_individual": 29.3614, "eje_rotura_lineas": -0.2121, "eje_amplitud_centro": 14.7387, "eje_profundidad_espalda": 9.0408, "eje_robo_alto": -0.9559, "eje_aereo_segunda": 0.21}, "Panathinaikos": {"eje_verticalidad": 0.0167, "eje_elaboracion": 1.4778, "eje_individual": 2.6009, "eje_rotura_lineas": -0.0236, "eje_amplitud_centro": 0.9511, "eje_profundidad_espalda": 0.7678, "eje_robo_alto": -0.0916, "eje_aereo_segunda": 0.0542}, "Porto": {"eje_verticalidad": -0.0543, "eje_elaboracion": -0.0182, "eje_individual": -0.0105, "eje_rotura_lineas": -0.009, "eje_amplitud_centro": -0.0163, "eje_profundidad_espalda": 0.0014, "eje_robo_alto": 0.0418, "eje_aereo_segunda": -0.0471}, "Rangers": {"eje_verticalidad": -0.0234, "eje_elaboracion": -0.0443, "eje_individual": 0.0044, "eje_rotura_lineas": -0.0332, "eje_amplitud_centro": -0.0537, "eje_profundidad_espalda": -0.0226, "eje_robo_alto": -0.0078, "eje_aereo_segunda": -0.0392}, "Real Betis": {"eje_verticalidad": -0.0962, "eje_elaboracion": 0.034, "eje_individual": 0.0346, "eje_rotura_lineas": 0.0353, "eje_amplitud_centro": 0.0061, "eje_profundidad_espalda": 0.037, "eje_robo_alto": 0.0221, "eje_aereo_segunda": -0.0379}, "Roma": {"eje_verticalidad": -0.053, "eje_elaboracion": -0.0256, "eje_individual": -0.0138, "eje_rotura_lineas": 0.0112, "eje_amplitud_centro": -0.0074, "eje_profundidad_espalda": -0.0194, "eje_robo_alto": 0.036, "eje_aereo_segunda": -0.025}, "Salzburg": {"eje_verticalidad": -0.0607, "eje_elaboracion": -0.0114, "eje_individual": -0.017, "eje_rotura_lineas": 0.0001, "eje_amplitud_centro": -0.0541, "eje_profundidad_espalda": -0.0922, "eje_robo_alto": 0.0059, "eje_aereo_segunda": -0.0428}, "Samsunspor": {"eje_verticalidad": -0.3058, "eje_elaboracion": 23.4979, "eje_individual": 8.8503, "eje_rotura_lineas": -0.2358, "eje_amplitud_centro": 9.6217, "eje_profundidad_espalda": 6.5143, "eje_robo_alto": -0.9559, "eje_aereo_segunda": -0.0777}, "Servette": {"eje_verticalidad": -0.2438, "eje_elaboracion": 21.4189, "eje_individual": 15.9695, "eje_rotura_lineas": -0.2358, "eje_amplitud_centro": 13.3582, "eje_profundidad_espalda": 5.3413, "eje_robo_alto": -0.9559, "eje_aereo_segunda": -0.0188}, "Shakhtar Donetsk": {"eje_verticalidad": -0.3803, "eje_elaboracion": 22.0259, "eje_individual": 20.8171, "eje_rotura_lineas": -0.2193, "eje_amplitud_centro": 8.3225, "eje_profundidad_espalda": 7.8678, "eje_robo_alto": -0.9559, "eje_aereo_segunda": -0.0936}, "Sheriff": {"eje_verticalidad": -0.1542, "eje_elaboracion": 17.2024, "eje_individual": 16.5734, "eje_rotura_lineas": -0.2358, "eje_amplitud_centro": 9.9963, "eje_profundidad_espalda": 5.7022, "eje_robo_alto": -0.9559, "eje_aereo_segunda": 0.0391}, "Sigma Olomouc": {"eje_verticalidad": -0.2385, "eje_elaboracion": 22.5784, "eje_individual": 19.6472, "eje_rotura_lineas": -0.2136, "eje_amplitud_centro": 14.7614, "eje_profundidad_espalda": 8.4994, "eje_robo_alto": -0.9559, "eje_aereo_segunda": -0.021}, "Slovan Bratislava": {"eje_verticalidad": -0.0782, "eje_elaboracion": 16.3286, "eje_individual": 8.8503, "eje_rotura_lineas": -0.2229, "eje_amplitud_centro": 13.7259, "eje_profundidad_espalda": 6.4241, "eje_robo_alto": -0.9559, "eje_aereo_segunda": 0.0538}, "Sporting Braga": {"eje_verticalidad": -0.0687, "eje_elaboracion": 1.6328, "eje_individual": 1.2235, "eje_rotura_lineas": 0.0085, "eje_amplitud_centro": 0.6915, "eje_profundidad_espalda": 0.5358, "eje_robo_alto": -0.0476, "eje_aereo_segunda": 0.0206}, "Sturm Graz": {"eje_verticalidad": 0.0573, "eje_elaboracion": 0.0009, "eje_individual": -0.0716, "eje_rotura_lineas": -0.0501, "eje_amplitud_centro": -0.0513, "eje_profundidad_espalda": -0.0375, "eje_robo_alto": -0.0598, "eje_aereo_segunda": 0.0862}, "Stuttgart": {"eje_verticalidad": -0.1029, "eje_elaboracion": 0.0227, "eje_individual": -0.0057, "eje_rotura_lineas": 0.074, "eje_amplitud_centro": -0.0186, "eje_profundidad_espalda": 0.0165, "eje_robo_alto": 0.0606, "eje_aereo_segunda": 0.0238}, "Utrecht": {"eje_verticalidad": -0.0712, "eje_elaboracion": 6.7874, "eje_individual": 4.9614, "eje_rotura_lineas": -0.1022, "eje_amplitud_centro": 3.3701, "eje_profundidad_espalda": 2.3754, "eje_robo_alto": -0.3356, "eje_aereo_segunda": 0.0323}, "Viktoria Plzeň": {"eje_verticalidad": 0.1167, "eje_elaboracion": -0.0499, "eje_individual": -0.0354, "eje_rotura_lineas": -0.0293, "eje_amplitud_centro": 0.0207, "eje_profundidad_espalda": -0.0138, "eje_robo_alto": -0.0165, "eje_aereo_segunda": 0.0331}, "Young Boys": {"eje_verticalidad": -0.056, "eje_elaboracion": 2.3999, "eje_individual": 2.7408, "eje_rotura_lineas": -0.0422, "eje_amplitud_centro": 0.9014, "eje_profundidad_espalda": 0.9421, "eje_robo_alto": -0.1477, "eje_aereo_segunda": -0.0345}}, "team_eje_norm_con": {"AEK Larnaca": {"eje_verticalidad": -0.1553, "eje_elaboracion": 19.7285, "eje_individual": 16.3801, "eje_rotura_lineas": -0.2294, "eje_amplitud_centro": 14.1129, "eje_profundidad_espalda": 8.2287, "eje_robo_alto": -0.9559, "eje_aereo_segunda": 0.0671}, "Aberdeen": {"eje_verticalidad": -0.3091, "eje_elaboracion": 23.0447, "eje_individual": 25.7218, "eje_rotura_lineas": -0.2247, "eje_amplitud_centro": 8.6381, "eje_profundidad_espalda": 5.7022, "eje_robo_alto": -0.9559, "eje_aereo_segunda": 0.0136}, "Aston Villa": {"eje_verticalidad": -0.031, "eje_elaboracion": -0.0056, "eje_individual": -0.0499, "eje_rotura_lineas": -0.0029, "eje_amplitud_centro": 0.0254, "eje_profundidad_espalda": 0.0187, "eje_robo_alto": -0.0156, "eje_aereo_segunda": -0.0304}, "Basel": {"eje_verticalidad": -0.063, "eje_elaboracion": -0.0146, "eje_individual": -0.0104, "eje_rotura_lineas": 0.0465, "eje_amplitud_centro": 0.0104, "eje_profundidad_espalda": -0.0379, "eje_robo_alto": 0.0064, "eje_aereo_segunda": -0.0303}, "Bologna": {"eje_verticalidad": 0.0839, "eje_elaboracion": -0.0411, "eje_individual": -0.0623, "eje_rotura_lineas": -0.0289, "eje_amplitud_centro": -0.0145, "eje_profundidad_espalda": -0.0287, "eje_robo_alto": -0.0784, "eje_aereo_segunda": 0.027}, "Brann": {"eje_verticalidad": 0.0178, "eje_elaboracion": 1.9223, "eje_individual": 2.0405, "eje_rotura_lineas": -0.0335, "eje_amplitud_centro": 0.7419, "eje_profundidad_espalda": 0.8439, "eje_robo_alto": -0.0611, "eje_aereo_segunda": 0.0387}, "CFR Cluj": {"eje_verticalidad": -0.2455, "eje_elaboracion": 22.9771, "eje_individual": 22.0223, "eje_rotura_lineas": -0.2196, "eje_amplitud_centro": 12.4595, "eje_profundidad_espalda": 7.7174, "eje_robo_alto": -0.9559, "eje_aereo_segunda": 0.0418}, "Celta de Vigo": {"eje_verticalidad": -0.0966, "eje_elaboracion": -0.006, "eje_individual": -0.0089, "eje_rotura_lineas": 0.0183, "eje_amplitud_centro": 0.0108, "eje_profundidad_espalda": 0.0638, "eje_robo_alto": -0.0054, "eje_aereo_segunda": -0.0439}, "Celtic": {"eje_verticalidad": -0.0745, "eje_elaboracion": -0.0226, "eje_individual": -0.0096, "eje_rotura_lineas": 0.0054, "eje_amplitud_centro": 0.0065, "eje_profundidad_espalda": -0.0104, "eje_robo_alto": 0.0545, "eje_aereo_segunda": 0.0221}, "Crvena zvezda": {"eje_verticalidad": -0.0231, "eje_elaboracion": 0.0024, "eje_individual": 0.0097, "eje_rotura_lineas": 0.0049, "eje_amplitud_centro": -0.0, "eje_profundidad_espalda": -0.0109, "eje_robo_alto": -0.0144, "eje_aereo_segunda": 0.004}, "Dinamo Zagreb": {"eje_verticalidad": -0.0541, "eje_elaboracion": -0.0127, "eje_individual": -0.0004, "eje_rotura_lineas": 0.073, "eje_amplitud_centro": -0.0161, "eje_profundidad_espalda": 0.0438, "eje_robo_alto": -0.0065, "eje_aereo_segunda": -0.0316}, "FCSB": {"eje_verticalidad": -0.0788, "eje_elaboracion": 4.1911, "eje_individual": 5.1294, "eje_rotura_lineas": -0.0347, "eje_amplitud_centro": 3.0334, "eje_profundidad_espalda": 1.6457, "eje_robo_alto": -0.1509, "eje_aereo_segunda": 0.007}, "Fenerbahçe": {"eje_verticalidad": 0.0521, "eje_elaboracion": -0.0334, "eje_individual": 0.0144, "eje_rotura_lineas": -0.0399, "eje_amplitud_centro": -0.0067, "eje_profundidad_espalda": -0.0504, "eje_robo_alto": 0.0205, "eje_aereo_segunda": -0.0167}, "Ferencváros": {"eje_verticalidad": -0.0635, "eje_elaboracion": 0.0158, "eje_individual": -0.0212, "eje_rotura_lineas": -0.0211, "eje_amplitud_centro": -0.0123, "eje_profundidad_espalda": -0.0017, "eje_robo_alto": 0.0122, "eje_aereo_segunda": 0.0027}, "Feyenoord": {"eje_verticalidad": -0.0211, "eje_elaboracion": -0.0002, "eje_individual": -0.0171, "eje_rotura_lineas": 0.0203, "eje_amplitud_centro": -0.012, "eje_profundidad_espalda": -0.0097, "eje_robo_alto": -0.0959, "eje_aereo_segunda": 0.0498}, "Fredrikstad": {"eje_verticalidad": -0.3387, "eje_elaboracion": 24.0042, "eje_individual": 17.1583, "eje_rotura_lineas": -0.2306, "eje_amplitud_centro": 7.2279, "eje_profundidad_espalda": 8.9506, "eje_robo_alto": -0.9559, "eje_aereo_segunda": -0.1266}, "Freiburg": {"eje_verticalidad": -0.0147, "eje_elaboracion": -0.0192, "eje_individual": -0.0195, "eje_rotura_lineas": 0.002, "eje_amplitud_centro": -0.0025, "eje_profundidad_espalda": -0.0058, "eje_robo_alto": -0.0103, "eje_aereo_segunda": -0.0098}, "Genk": {"eje_verticalidad": -0.059, "eje_elaboracion": 1.7538, "eje_individual": 2.3646, "eje_rotura_lineas": -0.0144, "eje_amplitud_centro": 0.688, "eje_profundidad_espalda": 0.5343, "eje_robo_alto": -0.0798, "eje_aereo_segunda": 0.0133}, "Go Ahead Eagles": {"eje_verticalidad": -0.0754, "eje_elaboracion": -0.0089, "eje_individual": -0.0188, "eje_rotura_lineas": -0.0129, "eje_amplitud_centro": -0.0163, "eje_profundidad_espalda": -0.0356, "eje_robo_alto": 0.023, "eje_aereo_segunda": 0.0091}, "KuPS": {"eje_verticalidad": -0.3183, "eje_elaboracion": 24.8819, "eje_individual": 23.3621, "eje_rotura_lineas": -0.2332, "eje_amplitud_centro": 12.3555, "eje_profundidad_espalda": 11.6575, "eje_robo_alto": -0.9559, "eje_aereo_segunda": -0.0838}, "Lech Poznań": {"eje_verticalidad": -0.3043, "eje_elaboracion": 23.0308, "eje_individual": 36.0258, "eje_rotura_lineas": -0.2194, "eje_amplitud_centro": 12.335, "eje_profundidad_espalda": 11.7478, "eje_robo_alto": -0.9559, "eje_aereo_segunda": -0.0346}, "Legia Warszawa": {"eje_verticalidad": -0.2917, "eje_elaboracion": 19.6935, "eje_individual": 16.5734, "eje_rotura_lineas": -0.2034, "eje_amplitud_centro": 9.9681, "eje_profundidad_espalda": 7.0557, "eje_robo_alto": -0.9559, "eje_aereo_segunda": -0.0318}, "Lille": {"eje_verticalidad": 0.0079, "eje_elaboracion": -0.0492, "eje_individual": -0.0255, "eje_rotura_lineas": -0.0238, "eje_amplitud_centro": -0.0252, "eje_profundidad_espalda": -0.0133, "eje_robo_alto": -0.0556, "eje_aereo_segunda": 0.0151}, "Ludogorets Razgrad": {"eje_verticalidad": -0.0484, "eje_elaboracion": -0.0195, "eje_individual": 0.0225, "eje_rotura_lineas": 0.0373, "eje_amplitud_centro": -0.0137, "eje_profundidad_espalda": 0.0354, "eje_robo_alto": 0.0629, "eje_aereo_segunda": -0.0244}, "Lugano": {"eje_verticalidad": -0.2852, "eje_elaboracion": 26.2244, "eje_individual": 11.4454, "eje_rotura_lineas": -0.2304, "eje_amplitud_centro": 12.7108, "eje_profundidad_espalda": 9.131, "eje_robo_alto": -0.9559, "eje_aereo_segunda": -0.0311}, "Maccabi Tel Aviv": {"eje_verticalidad": -0.1698, "eje_elaboracion": 0.0164, "eje_individual": -0.003, "eje_rotura_lineas": 0.0431, "eje_amplitud_centro": 0.0018, "eje_profundidad_espalda": 0.0384, "eje_robo_alto": 0.0966, "eje_aereo_segunda": -0.0495}, "Malmö FF": {"eje_verticalidad": -0.1348, "eje_elaboracion": 2.5206, "eje_individual": 2.1948, "eje_rotura_lineas": 0.0113, "eje_amplitud_centro": 1.6146, "eje_profundidad_espalda": 0.9875, "eje_robo_alto": 0.02, "eje_aereo_segunda": -0.0126}, "Midtjylland": {"eje_verticalidad": -0.0275, "eje_elaboracion": 4.8928, "eje_individual": 4.56, "eje_rotura_lineas": -0.0868, "eje_amplitud_centro": 3.0812, "eje_profundidad_espalda": 2.2496, "eje_robo_alto": -0.1824, "eje_aereo_segunda": 0.0208}, "Nice": {"eje_verticalidad": -0.0492, "eje_elaboracion": -0.0006, "eje_individual": 0.0078, "eje_rotura_lineas": 0.0446, "eje_amplitud_centro": 0.002, "eje_profundidad_espalda": 0.0082, "eje_robo_alto": 0.0353, "eje_aereo_segunda": -0.0157}, "Nottingham Forest": {"eje_verticalidad": -0.0028, "eje_elaboracion": -0.005, "eje_individual": -0.0203, "eje_rotura_lineas": -0.0339, "eje_amplitud_centro": 0.0006, "eje_profundidad_espalda": 0.0258, "eje_robo_alto": -0.0534, "eje_aereo_segunda": -0.0052}, "Olympique Lyonnais": {"eje_verticalidad": -0.0011, "eje_elaboracion": -0.0204, "eje_individual": -0.036, "eje_rotura_lineas": -0.0317, "eje_amplitud_centro": 0.0138, "eje_profundidad_espalda": -0.0102, "eje_robo_alto": -0.0486, "eje_aereo_segunda": -0.0101}, "PAOK": {"eje_verticalidad": -0.1035, "eje_elaboracion": 0.0071, "eje_individual": 0.0094, "eje_rotura_lineas": 0.0706, "eje_amplitud_centro": -0.0008, "eje_profundidad_espalda": -0.0317, "eje_robo_alto": -0.0396, "eje_aereo_segunda": -0.0458}, "Paks": {"eje_verticalidad": -0.088, "eje_elaboracion": 16.2123, "eje_individual": 25.4713, "eje_rotura_lineas": -0.2289, "eje_amplitud_centro": 15.1421, "eje_profundidad_espalda": 8.7701, "eje_robo_alto": -0.9559, "eje_aereo_segunda": 0.2629}, "Panathinaikos": {"eje_verticalidad": -0.0488, "eje_elaboracion": 3.2584, "eje_individual": 2.1263, "eje_rotura_lineas": -0.0243, "eje_amplitud_centro": 1.2692, "eje_profundidad_espalda": 1.041, "eje_robo_alto": -0.1448, "eje_aereo_segunda": -0.0008}, "Porto": {"eje_verticalidad": -0.0012, "eje_elaboracion": -0.0199, "eje_individual": -0.0266, "eje_rotura_lineas": -0.0051, "eje_amplitud_centro": 0.0204, "eje_profundidad_espalda": -0.0349, "eje_robo_alto": -0.0292, "eje_aereo_segunda": -0.0054}, "Rangers": {"eje_verticalidad": -0.0406, "eje_elaboracion": 0.0112, "eje_individual": -0.0301, "eje_rotura_lineas": -0.0106, "eje_amplitud_centro": -0.0334, "eje_profundidad_espalda": 0.0254, "eje_robo_alto": 0.0265, "eje_aereo_segunda": -0.0117}, "Real Betis": {"eje_verticalidad": -0.0394, "eje_elaboracion": 0.018, "eje_individual": 0.0053, "eje_rotura_lineas": 0.0017, "eje_amplitud_centro": -0.0171, "eje_profundidad_espalda": -0.0351, "eje_robo_alto": -0.0014, "eje_aereo_segunda": -0.0032}, "Rijeka": {"eje_verticalidad": -0.2678, "eje_elaboracion": 21.8858, "eje_individual": 12.8396, "eje_rotura_lineas": -0.2304, "eje_amplitud_centro": 10.3258, "eje_profundidad_espalda": 8.4994, "eje_robo_alto": -0.9559, "eje_aereo_segunda": -0.0132}, "Roma": {"eje_verticalidad": 0.0587, "eje_elaboracion": -0.0509, "eje_individual": -0.0284, "eje_rotura_lineas": 0.0032, "eje_amplitud_centro": -0.0217, "eje_profundidad_espalda": 0.0005, "eje_robo_alto": -0.0671, "eje_aereo_segunda": 0.0277}, "Salzburg": {"eje_verticalidad": -0.1202, "eje_elaboracion": -0.0156, "eje_individual": -0.0447, "eje_rotura_lineas": -0.012, "eje_amplitud_centro": 0.0109, "eje_profundidad_espalda": -0.0488, "eje_robo_alto": -0.0128, "eje_aereo_segunda": -0.0421}, "Samsunspor": {"eje_verticalidad": -0.147, "eje_elaboracion": 19.6065, "eje_individual": 34.0347, "eje_rotura_lineas": -0.2298, "eje_amplitud_centro": 12.341, "eje_profundidad_espalda": 9.8529, "eje_robo_alto": -0.9559, "eje_aereo_segunda": 0.0358}, "Servette": {"eje_verticalidad": -0.2541, "eje_elaboracion": 21.9242, "eje_individual": 5.7765, "eje_rotura_lineas": -0.2358, "eje_amplitud_centro": 8.6494, "eje_profundidad_espalda": 7.3264, "eje_robo_alto": -0.9559, "eje_aereo_segunda": -0.0564}, "Shakhtar Donetsk": {"eje_verticalidad": -0.3635, "eje_elaboracion": 22.6489, "eje_individual": 21.6454, "eje_rotura_lineas": -0.228, "eje_amplitud_centro": 8.1213, "eje_profundidad_espalda": 8.8152, "eje_robo_alto": -0.9559, "eje_aereo_segunda": -0.1258}, "Sheriff": {"eje_verticalidad": -0.2606, "eje_elaboracion": 18.092, "eje_individual": 23.8228, "eje_rotura_lineas": -0.2358, "eje_amplitud_centro": 9.262, "eje_profundidad_espalda": 6.8753, "eje_robo_alto": -0.9559, "eje_aereo_segunda": 0.0649}, "Shkendija": {"eje_verticalidad": -0.2131, "eje_elaboracion": 19.7176, "eje_individual": 25.901, "eje_rotura_lineas": -0.2298, "eje_amplitud_centro": 11.382, "eje_profundidad_espalda": 10.1236, "eje_robo_alto": -0.9559, "eje_aereo_segunda": 0.0149}, "Slovan Bratislava": {"eje_verticalidad": -0.2575, "eje_elaboracion": 21.7695, "eje_individual": 24.7943, "eje_rotura_lineas": -0.2306, "eje_amplitud_centro": 8.2396, "eje_profundidad_espalda": 8.7701, "eje_robo_alto": -0.9559, "eje_aereo_segunda": -0.0071}, "Sporting Braga": {"eje_verticalidad": -0.0483, "eje_elaboracion": -0.0286, "eje_individual": -0.0121, "eje_rotura_lineas": -0.0382, "eje_amplitud_centro": -0.0122, "eje_profundidad_espalda": -0.0386, "eje_robo_alto": 0.0241, "eje_aereo_segunda": 0.0004}, "Sturm Graz": {"eje_verticalidad": 0.0198, "eje_elaboracion": -0.0349, "eje_individual": 0.0096, "eje_rotura_lineas": -0.0113, "eje_amplitud_centro": -0.0241, "eje_profundidad_espalda": -0.0048, "eje_robo_alto": 0.0306, "eje_aereo_segunda": 0.001}, "Stuttgart": {"eje_verticalidad": 0.0984, "eje_elaboracion": -0.0557, "eje_individual": -0.0311, "eje_rotura_lineas": 0.0105, "eje_amplitud_centro": 0.0014, "eje_profundidad_espalda": -0.0151, "eje_robo_alto": -0.1063, "eje_aereo_segunda": 0.0479}, "Utrecht": {"eje_verticalidad": -0.0744, "eje_elaboracion": 3.8659, "eje_individual": 3.2464, "eje_rotura_lineas": -0.0663, "eje_amplitud_centro": 2.3157, "eje_profundidad_espalda": 1.0911, "eje_robo_alto": -0.1421, "eje_aereo_segunda": 0.0126}, "Viktoria Plzeň": {"eje_verticalidad": 0.0545, "eje_elaboracion": -0.0562, "eje_individual": -0.017, "eje_rotura_lineas": -0.0205, "eje_amplitud_centro": -0.013, "eje_profundidad_espalda": -0.0135, "eje_robo_alto": -0.0465, "eje_aereo_segunda": 0.0382}, "Wolfsberger AC": {"eje_verticalidad": -0.2514, "eje_elaboracion": 22.7568, "eje_individual": 20.6863, "eje_rotura_lineas": -0.2256, "eje_amplitud_centro": 12.2332, "eje_profundidad_espalda": 9.4469, "eje_robo_alto": -0.9559, "eje_aereo_segunda": -0.0422}, "Young Boys": {"eje_verticalidad": -0.0886, "eje_elaboracion": 1.8246, "eje_individual": 0.9726, "eje_rotura_lineas": 0.0494, "eje_amplitud_centro": 1.5069, "eje_profundidad_espalda": 0.754, "eje_robo_alto": -0.111, "eje_aereo_segunda": 0.0044}, "Zrinjski": {"eje_verticalidad": -0.261, "eje_elaboracion": 20.8224, "eje_individual": 15.1452, "eje_rotura_lineas": -0.2243, "eje_amplitud_centro": 11.3045, "eje_profundidad_espalda": 7.3715, "eje_robo_alto": -0.9559, "eje_aereo_segunda": 0.0411}}} \ No newline at end of file diff --git a/vendor/data/ejes/uefa-europa-league/25-26/team_profiles.parquet b/vendor/data/ejes/uefa-europa-league/25-26/team_profiles.parquet new file mode 100644 index 0000000000000000000000000000000000000000..d450fc90d5a7d85c4ae443bbee11087ae4128070 --- /dev/null +++ b/vendor/data/ejes/uefa-europa-league/25-26/team_profiles.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:addf21ad5c461dc60c577b6100cc523ba53a7c7647034232b981bab79c30d46c +size 13875