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
SELECT * 
FROM public.companies 
INNER JOIN public.funding 
ON public.companies.company_id = public.funding.company_id
import plotly.express as px
px.scatter(df,x='funding', y='valuation',log_x=True, log_y=True,hover_name='company')
  • There seems to be a positive correlation between the funding and valuations
Open the video in a new tab