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.

Spinner
DataFrameas
df
variable
-- Select the details and location of different events
-- Note that the query may take a long time to run if you remove the LIMIT statement
SELECT *
FROM event
  

LIMIT 5
import matplotlib.pyplot as plt

plt.plot(df, x='eventid', y='eventname')
plt.show()
Open the video in a new tab