Skip to content
New Workbook
Sign up
Analyzing unicorn company data

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(plotly)
plot_ly(data = df, x = ~funding, y = ~valuation, text = ~company, type = "scatter", mode = "markers")
  • There seems to be a positive correlation between funding and valuation
  • There are some companies with funding > valuation!
Open the video in a new tab