Skip to content
Analyzing unicorn company data
  • AI Chat
  • Code
  • Report
  • Analyzing unicorn company data

    In this workspace, we'll be exploring the relationship between total funding a company receives and its valuation.

    Unknown integration
    DataFrameavailable as
    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')
    • Higher Funding Correlates to Higher Valuations
    • There are companies with Higher Funding than Valuations
    Open the video in a new tab