You are on page 1of 7

Project-1

Data Analysis and Visualization using Python

Presentation
on
FIFA WORLD CUP

Under the Guidance of Presented By


Dr. Abhishek Das Name: GOVIND KUMAR
Assistant Professor, Regn. No.:220101150010,
Department of CSE, Department of EEE,
SoET, CUTM Section: D
3rd Semester
2 Contents

 Introduction
 Importance
 Dataset Description
 References

11/11/2023
Introduction
3

 The FIFA World Cup is an international football tournament that takes place every four years, bringing
together the best national teams from around the world to compete for the title of world champion. It is
organized by FIFA, the international governing body of football, and is one of the most popular and
widely watched sporting events in the world. The tournament is hosted by a different country each time,
with the host nation providing the venues and infrastructure for the matches. The first FIFA World Cup
was held in 1930 and since then it has grown in size and popularity, with millions of fans tuning in to
watch the matches and support their favorite teams. The World Cup is not only a celebration of football,
but also a cultural and social event that brings people from different countries and backgrounds together.

11/11/2023
Importance

 The FIFA World Cup is like the biggest soccer party on the planet. Every four years, countries from all
over the world join in. They play exciting football matches, and people everywhere celebrate their
teams. It's an event full of joy, goals, and national pride!"
Dataset Description

1.Declaration
import pandas as pd
import plotly.express as px
import plotly.graph_objects as go
from plotly.subplots import make_subplots

2. Reading our data


wc = pd.read_csv('/content/WorldCups.csv')
teams=pd.read_csv('/content/WorldCupPlayers.csv')
matches =pd.read_csv('/content/WorldCupMatches.csv')

wc.head()

Year Country Winner Runners-Up Third Fourth GoalsScored QualifiedTeams MatchesPlayed Attendance

0 1930 Uruguay Uruguay Argentina USA Yugoslavia 70 13 18 590.549

1 1934 Italy Italy Czechoslovakia Germany Austria 70 16 17 363.000

2 1938 France Italy Hungary Brazil Sweden 84 15 18 375.700

3 1950 Brazil Uruguay Brazil Sweden Spain 88 13 22 1.045.246

4 1954 Switzerland Germany FR Hungary Austria Uruguay 140 16 26 768.607


teams.head()

RoundID MatchID Team Initials Coach Name Line-up Shirt Number Player Name Position Event

0 201 1096 FRA CAUDRON Raoul (FRA) S 0 Alex THEPOT GK NaN

1 201 1096 MEX LUQUE Juan (MEX) S 0 Oscar BONFIGLIO GK NaN

2 201 1096 FRA CAUDRON Raoul (FRA) S 0 Marcel LANGILLER NaN G40'

3 201 1096 MEX LUQUE Juan (MEX) S 0 Juan CARRENO NaN G70'

4 201 1096 FRA CAUDRON Raoul (FRA) S 0 Ernest LIBERATI NaN NaN
7 References

[1] https://www.kaggle.com/code/abdikhanimohamed/fifa-worldcup-2022-analysis/notebook[2] J. Ker, L.


Wang,
[2] https://www.kaggle.com/code/abdikhanimohamed/fifa-worldcup-2022-analysis/input
[3] https://www.kaggle.com/code/abdikhanimohamed/fifa-worldcup-2022-analysis/output
[4] https://www.kaggle.com/

11/11/2023

You might also like