Skip to content
Analyzing unicorn company data
  • AI Chat
  • Code
  • Report
  • Spinner
    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.

    Analyzing unicorn company data

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

    import matplotlib.pyplot as plt
    
    plt.scatter(df["funding"],logx df["valuation"])
    plt.xlabel("Funding")
    plt.ylabel("Valuation")
    plt.title("Valuation vs Funding")
    plt.show()
    Current Type: Bar
    Current X-axis: None
    Current Y-axis: None
    Current Color: None
    Open the video in a new tab