Analyzing unicorn company data
  • AI Chat
  • Code
  • Report
  • Beta
    Spinner

    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)
    This query is taking long to finish...Consider adding a LIMIT clause or switching to Query mode to preview the result.
    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 funding and valuation
    • There are some companies for which funding > valuation
    Open the video in a new tab