I am working on a self-learning project on AIS ship tracking, and the following line of code:
hi_boat1,hi_boat2,hi_boat3,hi_boat4,hi_boat5,hi_boat6,hi_boat7,hi_boat8,hi_boat9,hi_boat10 = [x for _, x in hi_eez.groupby(hi_eez['mmsi'])]
is giving me the following error:
ValueError: too many values to unpack (expected 10)
What should I do?