Skip to content
Spinner
DataFrameas
df
variable
SELECT * FROM companies INNER JOIN funding USING(company_id);

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