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

    Unicorn companies valuations analysis

    Unknown integration
    DataFrameavailable as
    df
    variable
    SELECT * FROM public.companies INNER JOIN public.funding ON public.companies.company_id = public.funding.company_id;
    This query is taking long to finish...Consider adding a LIMIT clause or switching to Query mode to preview the result.
    # 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