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.

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_y=True, title='Valuation vs Funding', hover_name = 'company')
fig.show()
  • Postive correlation
  • Some companies with valuation < total funding
Spinner
DataFrameas
df1
variable
SELECT * FROM 'OrderData.csv'
Spinner
DataFrameas
df2
variable
SELECT * FROM 'UserLevelData.csv'
Open the video in a new tab