Skip to content
Analyzing unicorn company data
In this workspace, we'll be exploring the relationship between total funding a company receives and its valuation.
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)