Skip to content

Commit

Permalink
Advancment
Browse files Browse the repository at this point in the history
  • Loading branch information
andresnowak committed Dec 21, 2024
1 parent 923f1ae commit 2b93943
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 10 deletions.
38 changes: 28 additions & 10 deletions app/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { IframeChart } from "./iframe_charts.js";
import { BubbleChart } from "./bubble_chart.js";
import { SankeyChart } from "./sankey_chart.js";
import { LineDottedPlotChart } from "./line_chart_dotted.js";
import { worldCupLDA, olympicLDA, nbaLDA } from "./lda_texts.js"
import { worldCupLDA, olympicLDA, nbaLDA } from "./lda_texts.js";

function SubTitleText({ title, text }) {
return (
Expand Down Expand Up @@ -329,12 +329,6 @@ export default function Home() {
/>
)}
</VariableChooserComponent>
<RacingChartComponent
dataPath={"data/third_plot/sport_transit.csv"}
xName={"Number of videos"}
yName={"Sport category"}
loading={<LoadingSpinner />}
/>
<div className="flex flex-col space-y-2 p-4 w-full max-w-4xl text-lg text-left">
<h3 className="text-1xl font-bold mb-2">
Shifting Sentiments in Sports Video Titles
Expand Down Expand Up @@ -494,7 +488,15 @@ export default function Home() {
most with millions of viewers.
</p>
</div>
wordcloud images
<VariableChooserComponentImage
Title=""
variables={[
{
datapath: "data/word_clouds/world_cup_cloud.webp",
name: "World cup wordcloud",
},
]}
></VariableChooserComponentImage>
<div className="flex flex-col space-y-2 p-4 w-full max-w-4xl text-lg text-left">
<p>
Beyond the dominant words like "world," "cup," and
Expand All @@ -516,7 +518,15 @@ export default function Home() {
pivotal moments and standout performances.
</p>
</div>
olympic wordcloud
<VariableChooserComponentImage
Title=""
variables={[
{
datapath: "data/word_clouds/olympic_cloud.webp",
name: "Olympics wordcloud",
},
]}
></VariableChooserComponentImage>
<div className="flex flex-col space-y-2 p-4 w-full max-w-4xl text-lg text-left">
<p>
Our word cloud analysis for Olympic videos highlights
Expand All @@ -532,7 +542,15 @@ export default function Home() {
performances.
</p>
</div>
nba word
<VariableChooserComponentImage
Title=""
variables={[
{
datapath: "data/word_clouds/nba_cloud.webp",
name: "NBA wordcloud",
},
]}
></VariableChooserComponentImage>
<div className="flex flex-col space-y-2 p-4 w-full max-w-4xl text-lg text-left">
<p>
Our word cloud analysis of NBA-related videos highlights
Expand Down
Binary file added public/data/word_clouds/nba_cloud.webp
Binary file not shown.
Binary file added public/data/word_clouds/olympic_cloud.webp
Binary file not shown.
Binary file added public/data/word_clouds/world_cup_cloud.webp
Binary file not shown.

0 comments on commit 2b93943

Please sign in to comment.