1__version__ = "2.4.3" 2# __version__ has to be defined in the first line 3 4from .classifiers import ( 5 BoxPlot, 6 EqualInterval, 7 FisherJenks, 8 FisherJenksSampled, 9 HeadTailBreaks, 10 JenksCaspall, 11 JenksCaspallForced, 12 JenksCaspallSampled, 13 MaxP, 14 MaximumBreaks, 15 NaturalBreaks, 16 Quantiles, 17 Percentiles, 18 StdMean, 19 UserDefined, 20 load_example, 21 gadf, 22 KClassifiers, 23 CLASSIFIERS, 24) 25 26from .pooling import Pooled 27from .greedy import greedy 28 29from ._classify_API import classify 30