Skip to content

Commit

Permalink
results display
Browse files Browse the repository at this point in the history
  • Loading branch information
ecornamu committed Dec 19, 2024
1 parent 11e295c commit 9c5af93
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 12 deletions.
7 changes: 7 additions & 0 deletions docs/_includes/results_display.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,13 @@ <h1>Movie Character Name Influence</h1>
};

graphContainer.appendChild(iframe);
<!-- If the name is DAWSON, add a footnote to precise its jacks last name -->
if (graphFile === "titanic") {
const footnote = document.createElement('p');
footnote.textContent = "Note: 'Dawson' is the last name of the main character Jack.";
graphContainer.appendChild(footnote);
}

})
.catch(error => {
console.error('Error loading graph:', error);
Expand Down
24 changes: 12 additions & 12 deletions emile_evolution_temporelle.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -5004,7 +5004,7 @@
},
{
"cell_type": "code",
"execution_count": 6,
"execution_count": 27,
"metadata": {},
"outputs": [],
"source": [
Expand Down Expand Up @@ -5093,7 +5093,7 @@
"\n",
" # Update layout\n",
" fig.update_layout(\n",
" title=f\"Impact of {movname} on for {name}\",\n",
" title=f\"Impact of {movname} on {name}\",\n",
" xaxis_title='Year',\n",
" yaxis_title='Count',\n",
" legend_title='Legend',\n",
Expand All @@ -5107,7 +5107,7 @@
},
{
"cell_type": "code",
"execution_count": 7,
"execution_count": 28,
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -5142,7 +5142,7 @@
},
{
"cell_type": "code",
"execution_count": 23,
"execution_count": 29,
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -6191,7 +6191,7 @@
}
},
"title": {
"text": "Impact of Mission: Impossible Ii on the evolution of the name count for ETHAN"
"text": "Impact of Mission: Impossible Ii on ETHAN"
},
"xaxis": {
"title": {
Expand Down Expand Up @@ -7255,7 +7255,7 @@
}
},
"title": {
"text": "Impact of Pulp Fiction on the evolution of the name count for MIA"
"text": "Impact of Pulp Fiction on MIA"
},
"xaxis": {
"title": {
Expand Down Expand Up @@ -8319,7 +8319,7 @@
}
},
"title": {
"text": "Impact of Star Wars Episode IV: A New Hope on the evolution of the name count for LUKE"
"text": "Impact of Star Wars Episode IV: A New Hope on LUKE"
},
"xaxis": {
"title": {
Expand Down Expand Up @@ -9383,7 +9383,7 @@
}
},
"title": {
"text": "Impact of Titanic on the evolution of the name count for DAWSON"
"text": "Impact of Titanic on DAWSON"
},
"xaxis": {
"title": {
Expand Down Expand Up @@ -10447,7 +10447,7 @@
}
},
"title": {
"text": "Impact of The Little Mermaid on the evolution of the name count for ARIEL"
"text": "Impact of The Little Mermaid on ARIEL"
},
"xaxis": {
"title": {
Expand Down Expand Up @@ -11511,7 +11511,7 @@
}
},
"title": {
"text": "Impact of Doctor Zhivago on the evolution of the name count for TONYA"
"text": "Impact of Doctor Zhivago on TONYA"
},
"xaxis": {
"title": {
Expand Down Expand Up @@ -12575,7 +12575,7 @@
}
},
"title": {
"text": "Impact of Charlie and the Chocolate Factory on the evolution of the name count for CHARLIE"
"text": "Impact of Charlie and the Chocolate Factory on CHARLIE"
},
"xaxis": {
"title": {
Expand Down Expand Up @@ -13639,7 +13639,7 @@
}
},
"title": {
"text": "Impact of The Nightmare Before Christmas on the evolution of the name count for JACK"
"text": "Impact of The Nightmare Before Christmas on JACK"
},
"xaxis": {
"title": {
Expand Down

0 comments on commit 9c5af93

Please sign in to comment.