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.

# Importing the necessary libraries
import folium

# Creating a map centered around the Eiffel Tower
map_eiffel_tower = folium.Map(location=[48.8584, 2.2945], zoom_start=15)

# Adding a marker for the Eiffel Tower
folium.Marker(location=[48.8584, 2.2945], popup='Eiffel Tower').add_to(map_eiffel_tower)

# Displaying the map
map_eiffel_tower
Open the video in a new tab