Skip to content

Unicorn funding vs valuation
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
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
DataFrameas
df1
variable
SELECT * FROM 'OrderData.csv'
DataFrameas
df2
variable
SELECT * FROM 'UserLevelData.csv'