Skip to content

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.
DataFrameas
df
variable
SELECT * FROM companies INNER JOIN funding USING(company_id)import matplotlib.pyplot as plt
plt.scatter(df['funding'], df['valuation'])
plt.title('Companies evaluation')
plt.xlabel('Funding')
plt.ylabel('Valuation')
plt.show()