Skip to content
New Workbook
Sign up
Analyzing unicorn company data

Analyzing unicorn company data

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

Spinner
DataFrameavailable as
df
variable
SELECT * FROM companies INNER JOIN funding USING(company_id)
import plotly.express as px
px.scatter(df, x="funding", y="valuation", log_x=True, log_y=True)
  • The more funding a company receives the more its valuation.
  • Also, it can be seen that valuation is higher than funding for most companies
Open the video in a new tab