1 |
|
2003-05-16 Bernhard Herzog <[email protected]> |
2 |
|
|
3 |
|
* Thuban/Model/table.py (Table): Remove this compatibility alias |
4 |
|
for DBFTable. |
5 |
|
|
6 |
|
* test/test_table.py: Import DBFTable as Table because that alias |
7 |
|
doesn't exist anymore. |
8 |
|
|
9 |
|
* Thuban/UI/classgen.py: Remove some unused imports |
10 |
|
|
11 |
|
2003-05-14 Jonathan Coles <[email protected]> |
12 |
|
|
13 |
|
* Thuban/Model/classgen.py (ClassGenerator.GenSingletonsFromList): |
14 |
|
Fix docstring. |
15 |
|
(ClassGenerator.GenUniformDistribution): Fix spelling of method name. |
16 |
|
(ClassGenerator.GenQuantiles): Use the left/right brackets and min/max |
17 |
|
values of the supplied range to determine the beginning and end |
18 |
|
bounds of the generated classes. |
19 |
|
|
20 |
|
* Thuban/Model/range.py (Range.number_re): Now accepts floats that |
21 |
|
do not have a leading 0 (.5 is now accepted as well as 0.5). |
22 |
|
|
23 |
|
* Thuban/UI/classgen.py (ClassGenDialog.OnOK): Fix name of method |
24 |
|
call to ClassGenerator.GenUniformDistribution. |
25 |
|
|
26 |
|
* Thuban/UI/projdialog.py (ProjFrame.__do_layout): Fix Windows |
27 |
|
layout bug with the 'Projection' label. |
28 |
|
|
29 |
|
* test/support.py (FloatTestCase): New. Needed for the Range tests. |
30 |
|
|
31 |
|
* test/test_range.py: New. Imported from SciParam. |
32 |
|
|
33 |
|
2003-05-12 Jonathan Coles <[email protected]> |
34 |
|
|
35 |
|
* Thuban/UI/classgen.py (GenQuantilesPanel.GetList): Replace call |
36 |
|
to table.UniqueValues() with calls that retrieve all the values |
37 |
|
from the table. This will need to be replaced by a method on table |
38 |
|
which can simply return the list (perhaps more efficiently). |
39 |
|
|
40 |
|
2003-05-12 Jonathan Coles <[email protected]> |
41 |
|
|
42 |
|
The return value of ClassGenerator.CalculateQuantiles has changed. |
43 |
|
Refer to the documentation for details. |
44 |
|
|
45 |
|
* test/test_classgen.py: Modified Quantile tests to use the |
46 |
|
new return values. |
47 |
|
|
48 |
|
* Thuban/Model/classgen.py |
49 |
|
(ClassGenerator.GenQuantiles): Add comments describing the parameters, |
50 |
|
use new return values from CalculateQuantiles to produce the correct |
51 |
|
range bounds in the Classification. |
52 |
|
(ClassGenerator.CalculateQuantiles): Add more comments describing |
53 |
|
the return values and parameters. Make minor adjustments to improve |
54 |
|
the legibility of the code. Fix problem with adjusted not being set |
55 |
|
in most cases. |
56 |
|
|
57 |
2003-05-12 Frank Koormann <[email protected]> |
2003-05-12 Frank Koormann <[email protected]> |
58 |
|
|
59 |
* Thuban/Model/save.py (XMLWriter.encode()): Explicite call to unicode |
* Thuban/Model/save.py (XMLWriter.encode()): Explicite call to unicode |
61 |
|
|
62 |
2003-05-09 Jonathan Coles <[email protected]> |
2003-05-09 Jonathan Coles <[email protected]> |
63 |
|
|
64 |
|
* test/test_classgen.py: New. Tests the Quantile algorithm. |
65 |
|
|
66 |
|
* Thuban/Model/classgen.py (ClassGenerator.CalculateQuantiles): |
67 |
|
Clean up debugging statement, add comments, fix a small bug in the |
68 |
|
returned adjusted percentiles. |
69 |
|
|
70 |
|
2003-05-09 Jonathan Coles <[email protected]> |
71 |
|
|
72 |
Introduces Range class from SciParam into the ClassGroupRange class, |
Introduces Range class from SciParam into the ClassGroupRange class, |
73 |
and such ranges can now be saved and loaded from disk. |
and such ranges can now be saved and loaded from disk. |
74 |
|
|