AnalystPath

Podcast Episodes Missing a Transcript

PandasEasyJunior level~10 min

Problem

A podcast platform stores one row per episode in the `episodes` DataFrame. The `transcript_score` column holds an accuracy rating once a transcript has been produced, and is missing (NaN) while an episode still has no transcript. Find every episode that has not been transcribed yet (`transcript_score` is missing). Return `episode_id`, `title`, `host` and `release_year`, ordered by `episode_id`.

Input data

Example rows — the live problem includes the full dataset.

episodes
episode_idtitlehostrelease_yeartranscript_score
1Tides of IndustryMaya R.19254.5
2Quiet EnginesLeo Park1960
3Garden of SignalsAna Vora18134.8
4The Long CommuteD. Salim1951
5Paper BoatsGreta Osei19454.2

Expected output

Your answer should return 3 rows with the columns episode_id, title, host, release_year.

Starter code (Pandas (Python))

import pandas as pd

def episodes_missing_transcript(episodes) -> pd.DataFrame:
    # Your code here
    return episodes

Solve this Pandas question free

Write Pandas (Python) and run it instantly in your browser — even on your phone. No signup needed to try.

Solution & explanation

Create a free account to unlock the optimal solution, a step-by-step explanation, and the hidden test cases that grade your answer.

Sign up free to unlock

Related Pandas questions