Skip to content

Unicorn companies valuations analysis

Spinner
DataFrameas
df
variable
SELECT * FROM public.companies INNER JOIN public.funding ON public.companies.company_id = public.funding.company_id;
# Importing the required libraries
import plotly.express as px

# Creating the plot
fig = px.scatter(df, x='valuation', y='funding', log_x = True, log_y= True, title='Funding vs Valuation', hover_name="company")

# Displaying the plot
fig.show()
  • Positive correlation between valuation and funding
Open the video in a new tab