Skip to content

Analyzing unicorn company data

In this workspace, we'll be exploring the relationship between total funding a company receives and its valuation.

Spinner
DataFrameas
df
variable
[3]
Select * from companies inner join funding Using(company_id)
                                              
import plotly.express as px
px.scatter(df, x= 'funding', y= 'valuation', log_x = True, hover_name = 'company')
  • Higher funding tends to lead to higher vauluation
  • There are some companies with a funding > valuation. Tough luck!
Open the video in a new tab