...
/Exercise: Continuous vs. Categorical Bivariate Analysis
Exercise: Continuous vs. Categorical Bivariate Analysis
Practice with some lab exercises.
We'll cover the following...
Exercise 1
Create a bar chart in Plotly graph objects that detail the revenue per math (in thousands of Euros) for each of the top 10 leagues. We’ll use the sport_organisation_figures.csv
dataset.
Press + to interact
# Prerequisitesports = pd.read_csv('/usr/local/csvfiles/sport_organisation_figures.csv')top_leagues = sports.iloc[:11, :].copy()
Solution
-
The below code snippet creates a bar chart using the
go.Bar()
function on line 2 from theplotly.graph_objs
module. -
The x-axis represents the
League
column of thetop_leagues
DataFrame, and the y-axis represents theRevenue per match (in thousands of euros)
column. -
A new figure object is created using the
go.Figure()
function on line 6 with the trace as its data. Finally, theshow()
function is called to display the generated bar chart.
Press + to interact
# Create tracetrace = go.Bar(x=top_leagues['League'],y=top_leagues['Revenue per match (in thousands of euros)'])# Add trace to figure and showfig = go.Figure(data=[trace])fig.show()
Exercise 2
Using Plotly graph ...