Automating-GIS-processes / CSC18

MIT License
78 stars 58 forks source link

Lesson 3 - data reclassification using Pysal #9

Open muxevola opened 4 years ago

muxevola commented 4 years ago

The below command:

classifier = ps.Natural_Breaks.make(k=n_classes)

Fails with the below error:

module 'pysal' has no attribute 'Natural_Breaks'

I had to use the following apporach instead (i.e. mapclassify instead of pysal):

import mapclassify as mc
classifier = mc.NaturalBreaks(y=acc[['pt_r_tt']], k=n_classes)
VuokkoH commented 4 years ago

Please note that this repository is an old version of the course. You can find most up-to-date materials under the site-repo (https://autogis.github.io/).

You can find this and other issues fixed in there :)