You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WITH player_performance AS (
SELECT"match_date",
"position",
"player_id",
"predicted_score",
"game_id",
recorded_at AS recorded_time,
TO_TIMESTAMP(CONCAT("match_date", "match_time"), 'YYYY-MM-DDHH24:MI:SS') AS prediction_time
FROM game_data
JOIN score_predictions ON (game_data.id="game_id")
WHERE"target_metric"='player_id'
), filtered_performance AS (
SELECT"match_date",
"game_id",
"position",
"player_id",
"predicted_score",
recorded_time,
MAX(prediction_time) AS prediction_time
FROM player_performance
WHERE recorded_time > prediction_time
GROUP BY"match_date", "position", "player_id", "predicted_score", "game_id", recorded_time
)
SELECT"match_date",
COUNT("game_id") FILTER (WHERE"position"=0AND"player_id"="predicted_score") AS correct_predictions,
COUNT("game_id") FILTER (WHERE"player_id"="predicted_score") AS top_predictions,
COUNT("game_id") FILTER (WHERE"position"=0) AS total_predictions,
CAST(COUNT("game_id") FILTER (WHERE"position"=0AND"player_id"="predicted_score") AS FLOAT) /COUNT("game_id") FILTER (WHERE"position"=0) AS accuracy,
CAST(COUNT("game_id") FILTER (WHERE"player_id"="predicted_score") AS FLOAT) /COUNT("game_id") FILTER (WHERE"position"=0) AS top_accuracy
FROM filtered_performance
GROUP BY"match_date"ORDER BY"match_date"DESC;
The text was updated successfully, but these errors were encountered: