Skip to content

Unicorn Funding vs Valuation

Spinner
DataFrameas
df
variable
select * FROM companies inner join funding USING(company_id)
import plotly.express as px

fig = px.scatter(df, x="funding", y="valuation",log_x=True, log_y=True, title='Valuation vs Funding', hover_name= 'company')
fig.show()
  • Positive correletion
  • Some companies with valuation < total funding
Open the video in a new tab