!pip install geopandas # install geopandas import geopandas from google.colab import drive drive.mount('/content/drive') #impor the libraries I need data = geopandas.read_file('/content/drive/MyDrive/geospatial training/toxic_release_pennsylvania.shp') #read in data to variable 'data' data.head() # View data data['CHEMICAL'].unique() # The types of chemicals available data = data.drop(['CITY','COUNTY','ST'], axis = 1) data. head() data['geometry'].plot()