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.

    Spinner
    Data frameavailable as
    df
    variable
    Select * from companies INNER JOIN funding USING (company_id)
    library(ggplot2)
    library(dplyr)
    Unicorn Companies %>%
    inner_join(compan
    ggplot(df, aes(x = valuation, y = funding)) +
      geom_jitter()
    str(df)
    Open the video in a new tab