Skip to content
Spinner
Data frameas
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 o be positive correlation between funding and valuation -There are some companies with funding > valuation!

Open the video in a new tab