# Example DataFrame:
experiment_run_df = pd.DataFrame(
{
"result": [
"The telephone was invented by **Alexander Graham Bell**.",
"The invention of the light bulb is commonly attributed to **Thomas Edison**"
],
"label": ["correct", "incorrect"],
"score": [1, 0],
"explanation_text": [
"This statement is accurate because Alexander Graham Bell is credited with inventing the telephone.",
"This statement is inaccurate; others like Humphry Davy and Joseph Swan made earlier versions of the light bulb.",
],
}
)