Skip to content
  • There is a positive relationship between valuation and funding
  • There are some company which valuation > funding
Spinner
DataFrameas
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, hover_name='company')