feature: add training data for exercises
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<PMML xmlns="http://www.dmg.org/PMML-4_4" xmlns:data="http://jpmml.org/jpmml-model/InlineTable" version="4.4">
|
||||
<Header>
|
||||
<Application name="SkLearn2PMML package" version="0.119.1"/>
|
||||
<Timestamp>2025-06-21T20:20:46Z</Timestamp>
|
||||
</Header>
|
||||
<MiningBuildTask>
|
||||
<Extension name="repr">PMMLPipeline(steps=[('regressor', DecisionTreeRegressor(max_depth=2, random_state=1234))])</Extension>
|
||||
</MiningBuildTask>
|
||||
<DataDictionary>
|
||||
<DataField name="Price" optype="continuous" dataType="double"/>
|
||||
<DataField name="Rooms" optype="continuous" dataType="float"/>
|
||||
<DataField name="Type" optype="continuous" dataType="float"/>
|
||||
<DataField name="Regionname_Southern_Metropolitan" optype="continuous" dataType="float"/>
|
||||
</DataDictionary>
|
||||
<TreeModel functionName="regression" algorithmName="sklearn.tree._classes.DecisionTreeRegressor" missingValueStrategy="nullPrediction" noTrueChildStrategy="returnLastPrediction">
|
||||
<MiningSchema>
|
||||
<MiningField name="Price" usageType="target"/>
|
||||
<MiningField name="Rooms"/>
|
||||
<MiningField name="Type"/>
|
||||
<MiningField name="Regionname_Southern_Metropolitan"/>
|
||||
</MiningSchema>
|
||||
<LocalTransformations>
|
||||
<DerivedField name="double(Rooms)" optype="continuous" dataType="double">
|
||||
<FieldRef field="Rooms"/>
|
||||
</DerivedField>
|
||||
<DerivedField name="double(Type)" optype="continuous" dataType="double">
|
||||
<FieldRef field="Type"/>
|
||||
</DerivedField>
|
||||
<DerivedField name="double(Regionname_Southern_Metropolitan)" optype="continuous" dataType="double">
|
||||
<FieldRef field="Regionname_Southern_Metropolitan"/>
|
||||
</DerivedField>
|
||||
</LocalTransformations>
|
||||
<Node score="2113002.898989899">
|
||||
<True/>
|
||||
<Node score="682863.3751581077">
|
||||
<SimplePredicate field="double(Rooms)" operator="lessOrEqual" value="3.5"/>
|
||||
<Node score="1077045.4976463942">
|
||||
<SimplePredicate field="double(Type)" operator="lessOrEqual" value="1.5"/>
|
||||
</Node>
|
||||
</Node>
|
||||
<Node score="1163850.4992142483">
|
||||
<SimplePredicate field="double(Regionname_Southern_Metropolitan)" operator="lessOrEqual" value="0.5"/>
|
||||
</Node>
|
||||
</Node>
|
||||
</TreeModel>
|
||||
</PMML>
|
||||
@@ -0,0 +1,89 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<PMML xmlns="http://www.dmg.org/PMML-4_4" xmlns:data="http://jpmml.org/jpmml-model/InlineTable" version="4.4">
|
||||
<Header>
|
||||
<Application name="SkLearn2PMML package" version="0.119.1"/>
|
||||
<Timestamp>2025-06-21T20:20:46Z</Timestamp>
|
||||
</Header>
|
||||
<MiningBuildTask>
|
||||
<Extension name="repr">PMMLPipeline(steps=[('regressor', LinearRegression())])</Extension>
|
||||
</MiningBuildTask>
|
||||
<DataDictionary>
|
||||
<DataField name="Price" optype="continuous" dataType="double"/>
|
||||
<DataField name="Rooms" optype="continuous" dataType="double"/>
|
||||
<DataField name="Type" optype="continuous" dataType="double"/>
|
||||
<DataField name="Distance" optype="continuous" dataType="double"/>
|
||||
<DataField name="Bathroom" optype="continuous" dataType="double"/>
|
||||
<DataField name="Car" optype="continuous" dataType="double"/>
|
||||
<DataField name="logLandsize" optype="continuous" dataType="double"/>
|
||||
<DataField name="logBuildingArea" optype="continuous" dataType="double"/>
|
||||
<DataField name="YearBuilt" optype="continuous" dataType="double"/>
|
||||
<DataField name="CouncilArea" optype="continuous" dataType="double"/>
|
||||
<DataField name="Lattitude" optype="continuous" dataType="double"/>
|
||||
<DataField name="Longtitude" optype="continuous" dataType="double"/>
|
||||
<DataField name="Propertycount" optype="continuous" dataType="double"/>
|
||||
<DataField name="Method_S" optype="continuous" dataType="double"/>
|
||||
<DataField name="Method_SP" optype="continuous" dataType="double"/>
|
||||
<DataField name="Method_VB" optype="continuous" dataType="double"/>
|
||||
<DataField name="Regionname_Northern_Metropolitan" optype="continuous" dataType="double"/>
|
||||
<DataField name="Regionname_South_Eastern_Metropolitan" optype="continuous" dataType="double"/>
|
||||
<DataField name="Regionname_Southern_Metropolitan" optype="continuous" dataType="double"/>
|
||||
<DataField name="Regionname_Victoria" optype="continuous" dataType="double"/>
|
||||
<DataField name="Regionname_Western_Metropolitan" optype="continuous" dataType="double"/>
|
||||
<DataField name="month" optype="continuous" dataType="double"/>
|
||||
<DataField name="year" optype="continuous" dataType="double"/>
|
||||
<DataField name="day_of_week" optype="continuous" dataType="double"/>
|
||||
</DataDictionary>
|
||||
<RegressionModel functionName="regression" algorithmName="sklearn.linear_model._base.LinearRegression">
|
||||
<MiningSchema>
|
||||
<MiningField name="Price" usageType="target"/>
|
||||
<MiningField name="Rooms"/>
|
||||
<MiningField name="Type"/>
|
||||
<MiningField name="Distance"/>
|
||||
<MiningField name="Bathroom"/>
|
||||
<MiningField name="Car"/>
|
||||
<MiningField name="logLandsize"/>
|
||||
<MiningField name="logBuildingArea"/>
|
||||
<MiningField name="YearBuilt"/>
|
||||
<MiningField name="CouncilArea"/>
|
||||
<MiningField name="Lattitude"/>
|
||||
<MiningField name="Longtitude"/>
|
||||
<MiningField name="Propertycount"/>
|
||||
<MiningField name="Method_S"/>
|
||||
<MiningField name="Method_SP"/>
|
||||
<MiningField name="Method_VB"/>
|
||||
<MiningField name="Regionname_Northern_Metropolitan"/>
|
||||
<MiningField name="Regionname_South_Eastern_Metropolitan"/>
|
||||
<MiningField name="Regionname_Southern_Metropolitan"/>
|
||||
<MiningField name="Regionname_Victoria"/>
|
||||
<MiningField name="Regionname_Western_Metropolitan"/>
|
||||
<MiningField name="month"/>
|
||||
<MiningField name="year"/>
|
||||
<MiningField name="day_of_week"/>
|
||||
</MiningSchema>
|
||||
<RegressionTable intercept="-1.486001530644718E8">
|
||||
<NumericPredictor name="Rooms" coefficient="238730.9316843776"/>
|
||||
<NumericPredictor name="Type" coefficient="-144127.0462703874"/>
|
||||
<NumericPredictor name="Distance" coefficient="-41158.74149442419"/>
|
||||
<NumericPredictor name="Bathroom" coefficient="155233.18486695606"/>
|
||||
<NumericPredictor name="Car" coefficient="41608.24584805156"/>
|
||||
<NumericPredictor name="logLandsize" coefficient="82294.47642306813"/>
|
||||
<NumericPredictor name="logBuildingArea" coefficient="297716.9070603722"/>
|
||||
<NumericPredictor name="YearBuilt" coefficient="-2767.549042441214"/>
|
||||
<NumericPredictor name="CouncilArea" coefficient="-4929.3735515952385"/>
|
||||
<NumericPredictor name="Lattitude" coefficient="-511115.932452351"/>
|
||||
<NumericPredictor name="Longtitude" coefficient="179228.15909129355"/>
|
||||
<NumericPredictor name="Propertycount" coefficient="-1.5874021046959097"/>
|
||||
<NumericPredictor name="Method_S" coefficient="70775.86711001841"/>
|
||||
<NumericPredictor name="Method_SP" coefficient="7998.548503785693"/>
|
||||
<NumericPredictor name="Method_VB" coefficient="33895.327337749855"/>
|
||||
<NumericPredictor name="Regionname_Northern_Metropolitan" coefficient="-173563.80389381657"/>
|
||||
<NumericPredictor name="Regionname_South_Eastern_Metropolitan" coefficient="107806.72896395726"/>
|
||||
<NumericPredictor name="Regionname_Southern_Metropolitan" coefficient="239261.2304157773"/>
|
||||
<NumericPredictor name="Regionname_Victoria" coefficient="281825.04678020324"/>
|
||||
<NumericPredictor name="Regionname_Western_Metropolitan" coefficient="-226744.90218339747"/>
|
||||
<NumericPredictor name="month" coefficient="1272.5340782417852"/>
|
||||
<NumericPredictor name="year" coefficient="53847.63382995822"/>
|
||||
<NumericPredictor name="day_of_week" coefficient="3833.1129349071543"/>
|
||||
</RegressionTable>
|
||||
</RegressionModel>
|
||||
</PMML>
|
||||
@@ -0,0 +1,244 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<PMML xmlns="http://www.dmg.org/PMML-4_4" xmlns:data="http://jpmml.org/jpmml-model/InlineTable" version="4.4">
|
||||
<Header>
|
||||
<Application name="SkLearn2PMML package" version="0.119.1"/>
|
||||
<Timestamp>2025-06-21T20:20:45Z</Timestamp>
|
||||
</Header>
|
||||
<MiningBuildTask>
|
||||
<Extension name="repr">PMMLPipeline(steps=[('scaler', StandardScaler())])</Extension>
|
||||
</MiningBuildTask>
|
||||
<DataDictionary>
|
||||
<DataField name="Rooms" optype="continuous" dataType="double"/>
|
||||
<DataField name="Type" optype="continuous" dataType="double"/>
|
||||
<DataField name="Distance" optype="continuous" dataType="double"/>
|
||||
<DataField name="Bathroom" optype="continuous" dataType="double"/>
|
||||
<DataField name="Car" optype="continuous" dataType="double"/>
|
||||
<DataField name="logLandsize" optype="continuous" dataType="double"/>
|
||||
<DataField name="logBuildingArea" optype="continuous" dataType="double"/>
|
||||
<DataField name="YearBuilt" optype="continuous" dataType="double"/>
|
||||
<DataField name="CouncilArea" optype="continuous" dataType="double"/>
|
||||
<DataField name="Lattitude" optype="continuous" dataType="double"/>
|
||||
<DataField name="Longtitude" optype="continuous" dataType="double"/>
|
||||
<DataField name="Propertycount" optype="continuous" dataType="double"/>
|
||||
<DataField name="Method_S" optype="continuous" dataType="double"/>
|
||||
<DataField name="Method_SP" optype="continuous" dataType="double"/>
|
||||
<DataField name="Method_VB" optype="continuous" dataType="double"/>
|
||||
<DataField name="Regionname_Northern_Metropolitan" optype="continuous" dataType="double"/>
|
||||
<DataField name="Regionname_South_Eastern_Metropolitan" optype="continuous" dataType="double"/>
|
||||
<DataField name="Regionname_Southern_Metropolitan" optype="continuous" dataType="double"/>
|
||||
<DataField name="Regionname_Victoria" optype="continuous" dataType="double"/>
|
||||
<DataField name="Regionname_Western_Metropolitan" optype="continuous" dataType="double"/>
|
||||
<DataField name="month" optype="continuous" dataType="double"/>
|
||||
<DataField name="year" optype="continuous" dataType="double"/>
|
||||
<DataField name="day_of_week" optype="continuous" dataType="double"/>
|
||||
</DataDictionary>
|
||||
<TransformationDictionary>
|
||||
<DerivedField name="standardScaler(Rooms)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="Rooms"/>
|
||||
<Constant dataType="double">2.9317403359973904</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">0.9533169121486135</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(Type)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="Type"/>
|
||||
<Constant dataType="double">1.4526178437449029</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">0.6844243657125287</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(Distance)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="Distance"/>
|
||||
<Constant dataType="double">10.426749306801499</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">6.066336425774425</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(Bathroom)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="Bathroom"/>
|
||||
<Constant dataType="double">1.434757788289023</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">0.6519175028229948</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(Car)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="Car"/>
|
||||
<Constant dataType="double">1.6821073234382646</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">0.8558116035647958</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(logLandsize)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="logLandsize"/>
|
||||
<Constant dataType="double">2.3661529658260885</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">0.84368444941179</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(logBuildingArea)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="logBuildingArea"/>
|
||||
<Constant dataType="double">2.0990197773631265</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">0.18284993213113399</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(YearBuilt)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="YearBuilt"/>
|
||||
<Constant dataType="double">1968.0455879954332</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">25.406461747131278</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(CouncilArea)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="CouncilArea"/>
|
||||
<Constant dataType="double">5.748246615560268</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">6.170746654990085</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(Lattitude)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="Lattitude"/>
|
||||
<Constant dataType="double">-37.80912136193117</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">0.07441963519407027</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(Longtitude)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="Longtitude"/>
|
||||
<Constant dataType="double">144.99747812591744</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">0.09633550128190778</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(Propertycount)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="Propertycount"/>
|
||||
<Constant dataType="double">7520.394470722557</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">4504.100770431253</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(Method_S)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="Method_S"/>
|
||||
<Constant dataType="double">0.657396835752732</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">0.4745800628924771</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(Method_SP)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="Method_SP"/>
|
||||
<Constant dataType="double">0.12909802642309573</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">0.3353084043037952</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(Method_VB)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="Method_VB"/>
|
||||
<Constant dataType="double">0.09182841298320013</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">0.2887835790902713</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(Regionname_Northern_Metropolitan)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="Regionname_Northern_Metropolitan"/>
|
||||
<Constant dataType="double">0.2894307617028217</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">0.4534981762730101</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(Regionname_South_Eastern_Metropolitan)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="Regionname_South_Eastern_Metropolitan"/>
|
||||
<Constant dataType="double">0.03735116620453433</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">0.18962082319116638</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(Regionname_Southern_Metropolitan)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="Regionname_Southern_Metropolitan"/>
|
||||
<Constant dataType="double">0.3430109280704616</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">0.4747151053997568</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(Regionname_Victoria)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="Regionname_Victoria"/>
|
||||
<Constant dataType="double">0.010112542815201435</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">0.10005138326386172</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(Regionname_Western_Metropolitan)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="Regionname_Western_Metropolitan"/>
|
||||
<Constant dataType="double">0.210650791061817</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">0.40777081220564054</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(month)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="month"/>
|
||||
<Constant dataType="double">7.152748328168325</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">2.493359348369748</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(year)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="year"/>
|
||||
<Constant dataType="double">2016.5621432066548</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">0.49612319222817086</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
<DerivedField name="standardScaler(day_of_week)" optype="continuous" dataType="double">
|
||||
<Apply function="/">
|
||||
<Apply function="-">
|
||||
<FieldRef field="day_of_week"/>
|
||||
<Constant dataType="double">4.8392595008970805</Constant>
|
||||
</Apply>
|
||||
<Constant dataType="double">1.1094918421491333</Constant>
|
||||
</Apply>
|
||||
</DerivedField>
|
||||
</TransformationDictionary>
|
||||
</PMML>
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -0,0 +1,845 @@
|
||||
iter Logloss
|
||||
0 0.6715355719
|
||||
1 0.6500104902 2 0.628337545333 0.60966944 044 0.59078205 055 0.57752576 0.6 0.55778077 077 0.54203558 8 8 0.52958589 9 9 0.51714610 1110 0.50423311 11 0.4929307812 12 0.4814072133
|
||||
13 0.4713296171
|
||||
14 0.4618167061
|
||||
15 0.452625197
|
||||
16 0.4442922771717 0.4361589191818 0.4279240561919 0.4218459572020 0.4151507422121 0.409436976222 0.4037422555223 0.3976515008224 0.3923734357225 25 0.389420826 026 0.383436327 027 0.378636828 0.3794535398
|
||||
29 0.3757155885
|
||||
30 0.3717786395
|
||||
31 0.3691171784
|
||||
32 0.3657305059
|
||||
33 0.3632016139
|
||||
34 0.3602285367
|
||||
35 0.3563286411
|
||||
36 0.3536211155
|
||||
37 0.3504242069
|
||||
38 0.3484263966
|
||||
39 0.3458929487
|
||||
40 0.3438820826
|
||||
41 0.3420411561
|
||||
42 0.3396861143
|
||||
43 0.3381319584
|
||||
44 0.3363482476
|
||||
45 0.3345493897
|
||||
46 0.3330299771
|
||||
47 0.3318525724
|
||||
48 0.3309013752
|
||||
49 0.3298096059
|
||||
50 0.3284301698
|
||||
51 0.3269025361
|
||||
52 0.3248681668
|
||||
53 0.3235173677
|
||||
54 0.32236862
|
||||
55 0.3215182991
|
||||
56 0.3204347043
|
||||
57 0.318931893
|
||||
58 0.3175421302
|
||||
59 0.3165771979
|
||||
60 0.3156489037
|
||||
61 0.3144519398
|
||||
62 0.3136613844
|
||||
63 0.3128673057
|
||||
64 0.312212034
|
||||
65 0.3114018298
|
||||
66 0.3106629251
|
||||
67 0.310034156
|
||||
68 0.3092989124
|
||||
69 0.3088944431
|
||||
70 0.3081516939
|
||||
71 0.3075363379
|
||||
72 0.3067525669
|
||||
73 0.3056937007
|
||||
74 0.3046441095
|
||||
75 0.3034415851
|
||||
76 076 0.295545077 077 0.29487978 0.78 0.29434479 0.79 0.2939280 0.380 0.293281 0.2981 0.292782 0.2982 0.29283 0.29883 0.29184 0.2976595593
|
||||
85 0.29785 0.2986 0.2967502188
|
||||
87 0.2962570112
|
||||
88 0.2958939803
|
||||
89 0.2955636397
|
||||
90 0.2949822244
|
||||
91 0.29491 0.28792 0.29492 0.28793 0.2933773115
|
||||
94 0.2929786319
|
||||
95 0.2927127209
|
||||
96 0.2923617196
|
||||
97 0.2920127162
|
||||
98 0.2917110356
|
||||
99 0.2913174166
|
||||
100 0.2909765376
|
||||
101 0.2906426256
|
||||
102 0.2902903937
|
||||
103 0.289738585
|
||||
104 0.2893907106
|
||||
105 0.2890596207
|
||||
106 0.288792732
|
||||
107 0.288534817
|
||||
108 0.2882073116
|
||||
109 0.2876705255
|
||||
110 0.2873647727
|
||||
111 0.2871375052
|
||||
112 0.2867474887
|
||||
113 0.2864232213
|
||||
114 0.2860121057
|
||||
115 0.2856438106
|
||||
116 0.2854464634
|
||||
117 0.2851231367
|
||||
118 0.2847282285
|
||||
119 0.2844702651
|
||||
120 0.2842679116
|
||||
121 0.2839106114
|
||||
122 0.2837456336
|
||||
123 0.2834910124
|
||||
124 0.2832364481
|
||||
125 0.2831050547
|
||||
126 0.2828182024
|
||||
127 0.2825989469
|
||||
128 0.2823589042
|
||||
129 0.2820757526
|
||||
130 0.2816758823
|
||||
131 0.2814171024
|
||||
132 0.2809784086
|
||||
133 0.2807750643
|
||||
134 0.2802622838
|
||||
135 0.2801679472
|
||||
136 0.2799283915
|
||||
137 0.2797753843
|
||||
138 0.2795553411
|
||||
139 0.2790582386
|
||||
140 0.2787916767
|
||||
141 0.2784819034
|
||||
142 0.2781899858
|
||||
143 0.2777745463
|
||||
144 0.2774850792
|
||||
145 0.2771480654
|
||||
146 0.2770049212
|
||||
147 0.2768221416
|
||||
148 0.276566122
|
||||
149 0.2764094158
|
||||
150 0.2762456947
|
||||
151 0.2759876734
|
||||
152 0.2755418589
|
||||
153 0.2753300818
|
||||
154 0.2751304602
|
||||
155 0.2749359612
|
||||
156 0.2748264315
|
||||
157 0.2745800918
|
||||
158 0.2742472939
|
||||
159 0.2740881719
|
||||
160 0.2738565523
|
||||
161 0.273609089
|
||||
162 0.2734032283
|
||||
163 0.2732939985
|
||||
164 0.27164 0.271165 0.27165 0.271166 0.27166 0.270167 0.27167 0.270168 0.27168 0.270169 0.27169 0.270170 0.27170 0.269171 0.27171 0.269172 0.27172 0.269173 0.2173 0.269174 0.27174 0.269175 0.2175 0.2690176 0.2176 0.2687177 0.2177 0.2685178 0.2178 0.2684179 0.2179 0.2680180 0180 0.267876181 0181 0.267755182 0182 0.267473183 0183 0.267351184 0184 0.267194185 0185 0.26700186 0186 0.26687187 0.187 0.26670188 0.188 0.2664957386
|
||||
189 0.266362267
|
||||
190 0.2661136479
|
||||
191 0.2658698416
|
||||
192 0.2657868936
|
||||
193 0.265665353
|
||||
194 0.2653983404
|
||||
195 0.2652371509
|
||||
196 0.2651063849
|
||||
197 0.264913291
|
||||
198 0.2647556863
|
||||
199 0.2645733951
|
||||
200 0.264427887
|
||||
201 0.2642523528
|
||||
202 0.2641045862
|
||||
203 0.2639229314
|
||||
204 0.2637726889
|
||||
205 0.2635740419
|
||||
206 0.26334242720207 0.26314082920208 0.263003622209 0.2628850388
|
||||
210 0.2627407842
|
||||
211 0.2626431306
|
||||
212 0.2624728347
|
||||
213 0.2622310925
|
||||
214 0.2620532664
|
||||
215 0.2618205654
|
||||
216 0.2616589509
|
||||
217 0.2614757645
|
||||
218 0.2612767208
|
||||
219 0.26086677522220 0.2607452221 221 0.2606090222222 0.2604421223 223 0.2603288224 224 0.2601877225 225 0.2600486226226 0.25989308227227 0.25975458228228 0.25941261229229 0.25930457230230 0.2591708023231 0.25908766323232 0.2589107169
|
||||
233 0.258706153
|
||||
234 0.2584906816
|
||||
235 0.2583584315
|
||||
236 0.2581589555
|
||||
237 0.257929247
|
||||
238 0.2578443862
|
||||
239 0.2576799959
|
||||
240 0.2574729962
|
||||
241 0.2573334764
|
||||
242 0.2572371053
|
||||
243 0.25706023824244 0.2569646905
|
||||
245 0.2568318486
|
||||
246 0.256676895
|
||||
247 0.2565448555
|
||||
248 0.2563555465
|
||||
249 0.25619328
|
||||
250 0.2560606951
|
||||
251 0.2558568112
|
||||
2252 0.25761936662253 0.257444013
|
||||
254 0.2573545493
|
||||
255 0.2572290353
|
||||
256 0.2570372912
|
||||
257 0.2568998636
|
||||
258 0.2567575768
|
||||
259 0.2565983849
|
||||
260 0.2564866484
|
||||
261 0.2563507181
|
||||
262 0.2562108287
|
||||
263 0.2560651128
|
||||
264 0.2558375368
|
||||
265 0.2557119265
|
||||
266 0.2556488469
|
||||
267 0.2554304808
|
||||
268 0.2553181749
|
||||
269 0.2551502773
|
||||
270 0.2529029506
|
||||
271 0.2527878029
|
||||
272 0.2546905989
|
||||
273 0.2545215518
|
||||
274 0.2543160817
|
||||
275 0.2541791875
|
||||
276 0.2540513566
|
||||
277 0.2539534559
|
||||
278 0.2538241785
|
||||
279 0.2537508829
|
||||
280 0.2536468795
|
||||
281 0.2534796288
|
||||
282 0.2533210302
|
||||
283 0.2531855087
|
||||
284 0.253060364
|
||||
285 0.252938553
|
||||
286 0.2528939278
|
||||
287 0.2528076195
|
||||
288 0.2526059889
|
||||
289 0.252516485
|
||||
290 0.252431445
|
||||
291 0.2523196753
|
||||
292 0.2522181392
|
||||
293 0.2521492932
|
||||
294 0.2520099701
|
||||
295 0.2518281723
|
||||
296 0.2517333023
|
||||
297 0.2516314819
|
||||
298 0.2514894085
|
||||
299 0.2512929534
|
||||
300 0.251161837
|
||||
301 0.2510757996
|
||||
302 0.2509626284
|
||||
303 0.250759337
|
||||
304 0.2506852761
|
||||
305 0.2505584546
|
||||
306 0.2503785971
|
||||
307 0.2502082196
|
||||
308 0.2500811161
|
||||
309 0.2498829037
|
||||
310 0.249807873
|
||||
311 0.2497761951
|
||||
312 0.2496915317
|
||||
313 0.2495364852
|
||||
314 0.2494153896
|
||||
315 0.2493185598
|
||||
316 0.249183293
|
||||
317 0.249015424
|
||||
318 0.2489144142
|
||||
319 0.24878961
|
||||
320 0.2486696127
|
||||
321 0.2485368039
|
||||
322 0.2484308881
|
||||
323 0.248312298
|
||||
324 0.2481997015
|
||||
325 0.2481188867
|
||||
326 0.2479984017
|
||||
327 0.2478591456
|
||||
328 0.2477113693
|
||||
329 0.2475420313
|
||||
330 0.2473880646
|
||||
331 0.2472143685
|
||||
332 0.2470477079
|
||||
333 0.2469472656
|
||||
334 0.2468033089
|
||||
335 0.2466792314
|
||||
336 0.2465228002
|
||||
337 0.246467637
|
||||
338 0.2463454509
|
||||
339 0.2463055341
|
||||
340 0.2461509115
|
||||
341 0.2459972066
|
||||
342 0.2458799621
|
||||
343 0.2457697806
|
||||
344 0.2456379602
|
||||
345 0.2455365372
|
||||
346 0.245390909
|
||||
347 0.2452414004
|
||||
348 0.2450948022
|
||||
349 0.2449969959
|
||||
350 0.2448391866
|
||||
351 0.2446539586
|
||||
352 0.2445683498
|
||||
353 0.244452316
|
||||
354 0.2443607228
|
||||
355 0.2442654109
|
||||
356 0.2441466725
|
||||
357 0.2440027311
|
||||
358 0.2438814211
|
||||
359 0.2437390836
|
||||
360 0.2436186585
|
||||
361 0.2434403101
|
||||
362 0.2432984141
|
||||
363 0.2430163168
|
||||
364 0.2429432348
|
||||
365 0.2428623686
|
||||
366 0.2426621444
|
||||
367 0.2424578679
|
||||
368 0.2423716254
|
||||
369 0.2422000161
|
||||
370 0.2420397528
|
||||
371 0.241938025
|
||||
372 0.2418099345
|
||||
373 0.2417362403
|
||||
374 0.2416968754
|
||||
375 0.2415959776
|
||||
376 0.2415044143
|
||||
377 0.2414036719
|
||||
378 0.2413144588
|
||||
379 0.2411997505
|
||||
380 0.2409918953
|
||||
381 0.2409076377
|
||||
382 0.2407821352
|
||||
383 0.2406444599
|
||||
384 0.2405312344
|
||||
385 0.2404221339
|
||||
386 0.2403162569
|
||||
387 0.2402180684
|
||||
388 0.2401040161
|
||||
389 0.2399174923
|
||||
390 0.2397740489
|
||||
391 0.2396549174
|
||||
392 0.2394659357
|
||||
393 0.2392422044
|
||||
394 0.239124725
|
||||
395 0.2390173787
|
||||
396 0.2388836747
|
||||
397 0.2388193253
|
||||
398 0.2387095384
|
||||
399 0.2385784603
|
||||
400 0.238428024
|
||||
401 0.238286148
|
||||
402 0.2381384209
|
||||
403 0.2380085855
|
||||
404 0.2378074478
|
||||
405 0.2376414464
|
||||
406 0.2375301155
|
||||
407 0.2373500664
|
||||
408 0.2371299706
|
||||
409 0.2370354963
|
||||
410 0.2368820977
|
||||
411 0.2367257734
|
||||
412 0.2366225093
|
||||
413 0.2364888794
|
||||
414 0.236357993
|
||||
415 0.2361769763
|
||||
416 0.2360451019
|
||||
417 0.2359401969
|
||||
418 0.2358386521
|
||||
419 0.2357085942
|
||||
420 0.2355723146
|
||||
421 0.2353819868
|
||||
422 0.235208862
|
||||
423 0.2351666693
|
||||
424 0.2349425824
|
||||
425 0.2348564318
|
||||
426 0.2347793051
|
||||
427 0.234635617
|
||||
428 0.2345190851
|
||||
429 0.234346511
|
||||
430 0.2342451178
|
||||
431 0.2341454553
|
||||
432 0.2341067534
|
||||
433 0.2339745587
|
||||
434 0.2339165625
|
||||
435 0.2338332876
|
||||
436 0.233759364
|
||||
437 0.2336547665
|
||||
438 0.233574331
|
||||
439 0.233463469
|
||||
440 0.2334118993
|
||||
441 0.2332008858
|
||||
442 0.2330763787
|
||||
443 0.2328962545
|
||||
444 0.2327718352
|
||||
445 0.2325767542
|
||||
446 0.2325135609
|
||||
447 0.2324561774
|
||||
448 0.2322494832
|
||||
449 0.2321726483
|
||||
450 0.2320481129
|
||||
451 0.2319412309
|
||||
452 0.2318444609
|
||||
453 0.2317409901
|
||||
454 0.231635057
|
||||
455 0.2314943555
|
||||
456 0.2313381946
|
||||
457 0.2312849151
|
||||
458 0.2312003718
|
||||
459 0.2311333753
|
||||
460 0.2310068691
|
||||
461 0.2309185959
|
||||
462 0.2308165199
|
||||
463 0.2307248742
|
||||
464 0.2306381584
|
||||
465 0.2305601601
|
||||
466 0.2304672421
|
||||
467 0.2302764413
|
||||
468 0.2301451112
|
||||
469 0.230023544
|
||||
470 0.2298875391
|
||||
471 0.2297757454
|
||||
472 0.2296864367
|
||||
473 0.2296073575
|
||||
474 0.229518713
|
||||
475 0.2294627614
|
||||
476 0.2292573337
|
||||
477 0.2291335591
|
||||
478 0.2290855056
|
||||
479 0.2289984126
|
||||
480 0.2289477607
|
||||
481 0.2287188845
|
||||
482 0.2285575159
|
||||
483 0.2284497673
|
||||
484 0.2283893552
|
||||
485 0.2282141027
|
||||
486 0.2279766928
|
||||
487 0.2279502749
|
||||
488 0.2278614808
|
||||
489 0.2277568426
|
||||
490 0.2276580223
|
||||
491 0.2275783133
|
||||
492 0.2275069093
|
||||
493 0.2274044203
|
||||
494 0.2272090293
|
||||
495 0.2271293126
|
||||
496 0.227022249
|
||||
497 0.2268998836
|
||||
498 0.2267174312
|
||||
499 0.2265308066
|
||||
500 0.2263558855
|
||||
501 0.2262839397
|
||||
502 0.2261074526
|
||||
503 0.2260589388
|
||||
504 0.2259620037
|
||||
505 0.2258239246
|
||||
506 0.2257021737
|
||||
507 0.2256233142
|
||||
508 0.2254568235
|
||||
509 0.2253782036
|
||||
510 0.2252923731
|
||||
511 0.2252153148
|
||||
512 0.2251011445
|
||||
513 0.2249799184
|
||||
514 0.2249385102
|
||||
515 0.2247559255
|
||||
516 0.2246312837
|
||||
517 0.2244927134
|
||||
518 0.2242212439
|
||||
519 0.2241349844
|
||||
520 0.2240605028
|
||||
521 0.223984483
|
||||
522 0.2237981956
|
||||
523 0.2237256507
|
||||
5524 0.22385886595525 0.22376262635526 0.2235791158527 0.2231165879
|
||||
5528 0.22335977375529 0.2232904164
|
||||
530 0.22320548365531 0.22303399353532 0.22287968753533 0.22277903553534 0.22266325553535 0.222594593536 0.2222462479
|
||||
537 0.2221446555
|
||||
538 0.2220074116
|
||||
539 0.2218753682
|
||||
540 0.2217279725
|
||||
541 0.2215278674
|
||||
542 0.2214397229
|
||||
543 0.2213313216
|
||||
544 0.2212424892
|
||||
545 0.2211267104
|
||||
546 0.221058413
|
||||
547 0.2209798705
|
||||
548 0.2208630304
|
||||
549 0.2206737075
|
||||
550 0.2205194543
|
||||
551 0.2204547144
|
||||
552 0.2202746715
|
||||
553 0.220190974
|
||||
554 0.2201306606
|
||||
555 0.2200181894
|
||||
556 0.2199530085
|
||||
557 0.2198615437
|
||||
558 0.2197844022
|
||||
559 0.2196566038
|
||||
560 0.2194860412
|
||||
561 0.2193479078
|
||||
562 0.2192304752
|
||||
563 0.2191926354
|
||||
564 0.2191247914
|
||||
565 0.219021307
|
||||
566 0.2189163296
|
||||
567 0.2188279593
|
||||
568 0.2187010131
|
||||
569 0.2186055581
|
||||
570 0.2185275634
|
||||
571 0.2184622755
|
||||
572 0.2183830614
|
||||
573 0.2182650336
|
||||
574 0.2181024144
|
||||
575 0.2180116354
|
||||
576 0.2179579982
|
||||
577 0.2178746878
|
||||
578 0.2177632613
|
||||
579 0.2176899773
|
||||
580 0.2175603564
|
||||
581 0.2174915483
|
||||
582 0.2174379661
|
||||
583 0.2173251156
|
||||
584 0.2171693914
|
||||
585 0.2170266494
|
||||
586 0.216864334
|
||||
587 0.2168034872
|
||||
588 0.2167335989
|
||||
589 0.2166304359
|
||||
590 0.2164724669
|
||||
591 0.2163198821
|
||||
592 0.2162064726
|
||||
593 0.2161018554
|
||||
594 0.2160103315
|
||||
595 0.2158800181
|
||||
596 0.2157548594
|
||||
597 0.215698425
|
||||
598 0.2155549787
|
||||
599 0.2154764111
|
||||
600 0.2153801721
|
||||
601 0.2152445929
|
||||
602 0.2151411293
|
||||
603 0.2149957359
|
||||
604 0.2148907006
|
||||
605 0.21481046
|
||||
606 0.2147547089
|
||||
607 0.2145890612
|
||||
608 0.2144855403
|
||||
609 0.2143502306
|
||||
610 0.2142863952
|
||||
611 0.2140713228
|
||||
612 0.2139516988
|
||||
613 0.213833705
|
||||
614 0.2137724275
|
||||
615 0615 0.21472616 0.616 0.21461617 0617 0.214560618 0618 0.214500619 0619 0.214408620 0620 0.214339621 0621 0.214243622 0622 0.214137623 0623 0.214008624 0624 0.213951625 0625 0.213780626 0626 0.2137644769
|
||||
627 0.2135857868
|
||||
628 0.2135479067
|
||||
629 0.2134538772
|
||||
630 0.2133340221
|
||||
631 0.2132292656
|
||||
632 0.213112633 0633 0.212972634 0634 0.2128635 0.2635 0.2127636 0.2118510496
|
||||
637 0.2116834225
|
||||
638 0.638 0.2125639 0.2114202615
|
||||
640 0.2113445402
|
||||
641 0.2112853157
|
||||
642 0.2112158115
|
||||
643 0.2111316421
|
||||
644 0.2109834817
|
||||
645 0.2108969759
|
||||
646 0.2108803226
|
||||
647 0.2107759254
|
||||
648 0.2106780292
|
||||
649 0.2105048205
|
||||
650 0.2104594373
|
||||
651 0.210396087
|
||||
652 0.2103460393
|
||||
653 0.2102946071
|
||||
654 0.2101566534
|
||||
655 0.2100883725
|
||||
656 0.2100653199
|
||||
657 0.2099599454
|
||||
658 0.2098735874
|
||||
659 0.2097640203
|
||||
660 0.2096592145
|
||||
661 0.2096139103
|
||||
662 0.2095420758
|
||||
663 0.2094600533
|
||||
664 0.2093671283
|
||||
665 0.2092667665
|
||||
666 0.2091092788
|
||||
667 0.2090712195
|
||||
668 0.2089494467
|
||||
669 0.2088626897
|
||||
670 0.2088150318
|
||||
671 0.2087060848
|
||||
672 0.2086060252
|
||||
673 0.2085728425
|
||||
674 0.2085014618
|
||||
675 0.2084382408
|
||||
676 0.2083550429
|
||||
677 0.2082908508
|
||||
678 0.2081572112
|
||||
679 0.2080626141
|
||||
680 0.2079779102
|
||||
681 0.2078554069
|
||||
682 0.2077728527
|
||||
683 0.2076214333
|
||||
684 0.2075344272
|
||||
685 0.2074853035
|
||||
686 0.20736748
|
||||
687 0.2072321229
|
||||
688 0.2070764962
|
||||
689 0.206959924
|
||||
690 0.2069038453
|
||||
691 0.2068433554
|
||||
692 0.2067499536
|
||||
693 0.2066997999
|
||||
694 0.2065947069
|
||||
695 0.206445379
|
||||
696 0.2063923529
|
||||
697 0.2062890568
|
||||
698 0.2062267393
|
||||
699 0.2061734689
|
||||
700 0.2060068816
|
||||
701 0.2058658631
|
||||
702 0.2057625962
|
||||
703 0.2055892085
|
||||
704 0704 0.20642705 0.2053025211
|
||||
706 0.2051688713
|
||||
707 0.707 0.20618708 0.2050085237
|
||||
709 0.2049088367
|
||||
710 0.2048239642
|
||||
711 0.2047316542
|
||||
712 0.2046032672
|
||||
713 0.2044329749
|
||||
714 0714 0.20548715 0.715 0.20541716 0.716 0.20536717 0.717 0.20524718 0.718 0.20519719 0.719 0.20513720 0.720 0.20510721 0.721 0.20501722 0.722 0.20498723 0.723 0.20493724 0.724 0.20486725 0.725 0.20479726 0.726 0.2047330242
|
||||
727 0.204639792
|
||||
728 0.2045057031
|
||||
729 0.20436730 0.730 0.20429731 0.731 0.20424732 0.732 0.20415733 0.2026522041
|
||||
734 0.734 0.20395735 0.735 0.20387736 0.736 0.20382737 0.737 0.20376738 0.2021816826
|
||||
739 0.2020455078
|
||||
740 0.2018938656
|
||||
741 0.2017567672
|
||||
742 0.2016824228
|
||||
743 0.2016070108
|
||||
744 0.2014842704
|
||||
745 0.2014104849
|
||||
746 0.2013393837
|
||||
747 0.2012833162
|
||||
748 0.2012559259
|
||||
749 0.2011516509
|
||||
750 0.2010261293
|
||||
751 0.2008588018
|
||||
752 0.2007177314
|
||||
753 0.2005909782
|
||||
754 0.2004566848
|
||||
755 0.2003678939
|
||||
756 0.200265596
|
||||
757 0.2002121035
|
||||
758 0.2001129327
|
||||
759 0.2000131959
|
||||
760 0.1999159409
|
||||
761 0.1997892077
|
||||
762 0.1997150572
|
||||
763 0.1995562023
|
||||
764 0.1994189202
|
||||
765 0.1993814234
|
||||
766 0.1993107055
|
||||
767 0.19923773
|
||||
768 0.1991631234
|
||||
769 0.1990231522
|
||||
770 0.1989572232
|
||||
771 0.1989065496
|
||||
772 0.198810354
|
||||
773 0.1987187126
|
||||
774 0.198602681
|
||||
775 0.198544289
|
||||
776 776 0.1974275777777 0.19737911778778 0.19731560779779 0.19729760780780 0.19726183781781 0.19718989782782 0.19714483783783 0.1971086784 784 0.1970310785 785 0.1969040102
|
||||
786 0.1968767787 787 0.1968223788788 0.19671808789 0.1971688679
|
||||
790 0.1971133505
|
||||
791 0.1970573064
|
||||
792 0.1969309651
|
||||
793 0.196822851
|
||||
794 0.1967037121
|
||||
795 0.1965664955
|
||||
796 0.1964988227
|
||||
797 0.1964288204
|
||||
798 0.1962998362
|
||||
799 0.1962072888
|
||||
800 0.1960950051
|
||||
801 0.196044112
|
||||
802 0.1959964318
|
||||
803 0.1959442302
|
||||
804 0.1959037122
|
||||
805 0.1957869796
|
||||
806 0.1956498038
|
||||
807 0.1955275716
|
||||
808 0.1954511929
|
||||
809 0.1953156204
|
||||
810 0.1952535142
|
||||
811 0.1951393533
|
||||
812 0.1950848436
|
||||
813 0.1949760076
|
||||
814 0.1948895198
|
||||
815 0.1948040409
|
||||
816 0.1946758699
|
||||
817 0.1945703718
|
||||
818 0.1945049746
|
||||
819 0.1944564152
|
||||
820 0.1943254884
|
||||
821 0.1942024297
|
||||
822 0.1941361423
|
||||
823 0.1940355461
|
||||
824 0.193928491
|
||||
825 0.1938722662
|
||||
826 0.1938241723
|
||||
827 0.1937563974
|
||||
828 0.1936496047
|
||||
829 0.1935365196
|
||||
830 0.193436826
|
||||
831 0.1934245063
|
||||
832 0.1933003321
|
||||
833 0.1931803445
|
||||
834 0.1931194794
|
||||
835 0.1930578233
|
||||
836 0.1929893039
|
||||
837 0.1928975868
|
||||
838 0.192815136
|
||||
839 0.1926973762
|
||||
840 0.192642313
|
||||
841 0.1925744074
|
||||
842 0.1924976177
|
||||
843 0.1924535229
|
||||
844 0.1923759868
|
||||
845 0.1922892698
|
||||
846 0.1922402248
|
||||
847 0.1921752729
|
||||
848 0.1920466624
|
||||
849 0.1919349155
|
||||
850 0.1918797293
|
||||
851 0.1918321291
|
||||
852 0.1917885763
|
||||
853 0.1917436879
|
||||
854 0.1916714435
|
||||
855 0.1915585621
|
||||
856 0.1914585379
|
||||
857 0.191366928
|
||||
858 0.1912387077
|
||||
859 0.1911316581
|
||||
860 0.1910178787
|
||||
861 0.1909128097
|
||||
862 0.1908743757
|
||||
863 0.1907896694
|
||||
864 0.1906881947
|
||||
865 0.1905467185
|
||||
866 0.1905101728
|
||||
867 0.1904734468
|
||||
868 0.1903627676
|
||||
869 0.1902835324
|
||||
870 0.1901353705
|
||||
871 0.1900130826
|
||||
872 0.1898964985
|
||||
873 0.189843312
|
||||
874 0.1898091057
|
||||
875 0.1897611113
|
||||
876 0.1896789766
|
||||
877 0.1895745098
|
||||
878 0.1894637744
|
||||
879 0.1894036691
|
||||
880 0.1892932683
|
||||
881 0.189258266
|
||||
882 0.1891981233
|
||||
883 0.1891215445
|
||||
884 0.1890143054
|
||||
885 0.1889312723
|
||||
886 0886 0.192085887 0887 0.191935888 0888 0.191898889 0889 0.191846890 0890 0.191790891 0891 0.191729892 0892 0.1916760736
|
||||
893 0.1915335233
|
||||
894 0.1914796028
|
||||
895 0.1913763062
|
||||
896 0.1913395079
|
||||
897 0.1912678699
|
||||
898 0.191243899 0899 0.191162900 0.1876269642
|
||||
901 0.1875001977
|
||||
902 0.187403209
|
||||
903 0.1873043882
|
||||
904 0.1872195534
|
||||
905 0.1871491767
|
||||
906 0.1870104981
|
||||
907 0.1869420064
|
||||
908 0.1868914869
|
||||
909 0.186787065
|
||||
910 0.1866702356
|
||||
911 0.1866046699
|
||||
912 0.1864560457
|
||||
913 0.1863240246
|
||||
914 0.1862062241
|
||||
915 0.1861338881
|
||||
916 0.186025657
|
||||
917 0.1859396015
|
||||
918 0.1858178881
|
||||
919 0.185706966
|
||||
920 0.1856200051
|
||||
921 0.1854981475
|
||||
922 0.1854257424
|
||||
923 0.1853204869
|
||||
924 0.1852156164
|
||||
925 0.1851027012
|
||||
926 0.1849973028
|
||||
927 0.1848849182
|
||||
928 0.1848190864
|
||||
929 0.1846982134
|
||||
930 0.1845826874
|
||||
931 0.18446116
|
||||
932 0.1843612267
|
||||
933 0.1842788248
|
||||
934 0.1841913191
|
||||
935 0.1841571329
|
||||
936 0.1840521094
|
||||
937 0.183983229
|
||||
938 0.1839018212
|
||||
939 0.1838136477
|
||||
940 0.1837559317
|
||||
941 0.1836433761
|
||||
942 0.1835371968
|
||||
943 0.183429206
|
||||
944 0.1833599311
|
||||
945 0.1832798986
|
||||
946 0.1831687847
|
||||
947 0.1830272249
|
||||
948 0.1829354743
|
||||
949 0.1828585222
|
||||
950 0.1828066679
|
||||
951 0.1826992636
|
||||
952 0.1826619975
|
||||
953 0.1826404807
|
||||
954 0.1826049683
|
||||
955 0.182542509
|
||||
956 0.1824707124
|
||||
957 0.1823498301
|
||||
958 0.1822917321
|
||||
959 0.1822506991
|
||||
960 0.18222991
|
||||
961 0.1821302287
|
||||
962 0.1820405902
|
||||
963 0.1819642189
|
||||
964 0.1818719662
|
||||
965 0.1818081334
|
||||
966 0.1817224884
|
||||
967 0.1816794438
|
||||
968 0.18157978
|
||||
969 0.1814637115
|
||||
970 0.1813123668
|
||||
971 0.1811983001
|
||||
972 0.1810990775
|
||||
973 0.1810350562
|
||||
974 0.1809943476
|
||||
975 0.1808972694
|
||||
976 0.1808157769
|
||||
977 0.1807341121
|
||||
978 0.18064582978979 0.18057748979980 0.18051626980 0.18567441698981 0.18559991998982 0.185556502
|
||||
983 0.185514808
|
||||
984 0.1854468917
|
||||
985 0.1853146605
|
||||
986 0.1852626547
|
||||
987 0.185230434
|
||||
988 0.1852016396
|
||||
989 0990 0.179711990 0991 0.17963991 0.992 0.17957992 0.993 0.17951993 0.994 0.17942994 0.995 0.1793665083
|
||||
996 0.17928996 0.997 0.17918997 0.998 0.17911998 0.999 0.17902999 0.1844407665
|
||||
601128
|
||||
|
@@ -0,0 +1,879 @@
|
||||
iter Passed Remaining
|
||||
0 59 59828
|
||||
1 61 30821
|
||||
2 63 21170
|
||||
3 65 16340
|
||||
4 67 13429
|
||||
5 69 11507
|
||||
6 71 1021377 73 915888 75 833299 77 7671110 79 7156111 82 6779112 84 6426113 86 6106114 88 5843115 90 5593116 92 5358117 94 5168118 97 5022119 99 4864220 101 4740221 103 4609222 105 4487223 107 4369224 109 4274225 112 4209226 114 4118227 116 402728 118 3960
|
||||
29 120 3889
|
||||
30 123 3846
|
||||
31 124 3767
|
||||
32 126 3709
|
||||
33 129 3666
|
||||
34 131 3627
|
||||
35 133 3585
|
||||
36 135 3539
|
||||
37 138 3506
|
||||
38 141 3474
|
||||
39 142 3429
|
||||
40 144 3388
|
||||
41 146 3349
|
||||
42 149 3321
|
||||
43 151 3290
|
||||
44 153 3259
|
||||
45 155 3223
|
||||
46 157 3197
|
||||
47 159 3165
|
||||
48 161 3139
|
||||
49 164 3121
|
||||
50 166 3089
|
||||
51 168 3075
|
||||
52 170 3051
|
||||
53 173 3032
|
||||
54 174 3006
|
||||
55 176 2981
|
||||
56 179 2961
|
||||
57 181 2945
|
||||
58 183 2929
|
||||
59 185 2906
|
||||
60 187 2884
|
||||
61 189 2861
|
||||
62 190 2837
|
||||
63 192 2821
|
||||
64 194 2803
|
||||
65 196 2785
|
||||
66 198 2767
|
||||
67 200 2747
|
||||
68 202 2736
|
||||
69 204 2721
|
||||
70 206 2703
|
||||
71 208 2686
|
||||
72 210 2672
|
||||
73 212 2659
|
||||
74 214 2647
|
||||
75 216 2635
|
||||
776 219 2630777 221 2615778 223 2607779 225 2598880 227 2582881 229 2569882 231 2559883 233 254984 235 2537
|
||||
885 237 252786 240 2522
|
||||
87 242 2510
|
||||
88 244 2499
|
||||
89 246 2488
|
||||
90 248 2477
|
||||
991 250 2467992 251 245793 253 2447
|
||||
94 256 2441
|
||||
95 258 2435
|
||||
96 260 2426
|
||||
97 263 2422
|
||||
98 265 2420
|
||||
99 268 2412
|
||||
100 269 2402
|
||||
101 272 2397
|
||||
102 274 2387
|
||||
103 275 2377
|
||||
104 277 2366
|
||||
105 279 2358
|
||||
106 281 2351
|
||||
107 283 2340
|
||||
108 286 2339
|
||||
109 288 2336
|
||||
110 290 2324
|
||||
111 292 2316
|
||||
112 294 2308
|
||||
113 296 2302
|
||||
114 298 2294
|
||||
115 300 2287
|
||||
116 302 2279
|
||||
117 304 2275
|
||||
118 306 2267
|
||||
119 308 2259
|
||||
120 309 2251
|
||||
121 312 2248
|
||||
122 314 2242
|
||||
123 316 2238
|
||||
124 318 2229
|
||||
125 320 2223
|
||||
126 322 2215
|
||||
127 324 2208
|
||||
128 326 2205
|
||||
129 328 2199
|
||||
130 330 2194
|
||||
131 332 2187
|
||||
132 334 2182
|
||||
133 336 2177
|
||||
134 338 2171
|
||||
135 340 2164
|
||||
136 342 2159
|
||||
137 346 2162
|
||||
138 348 2156
|
||||
139 350 2152
|
||||
140 352 2147
|
||||
141 354 2141
|
||||
142 356 2135
|
||||
143 358 2130
|
||||
144 360 2124
|
||||
145 362 2118
|
||||
146 364 2112
|
||||
147 366 2106
|
||||
148 367 2101
|
||||
149 369 2095
|
||||
150 372 2092
|
||||
151 374 2090
|
||||
152 377 2088
|
||||
153 379 2082
|
||||
154 380 2076
|
||||
155 383 2072
|
||||
156 384 2066
|
||||
157 386 2060
|
||||
158 388 2054
|
||||
159 390 2051
|
||||
160 392 2046
|
||||
161 394 2042
|
||||
162 396 2036
|
||||
163 398 2031
|
||||
164 400 2025
|
||||
165 402 2021
|
||||
166 404 2016
|
||||
167 406 2012
|
||||
168 408 2007
|
||||
169 410 2002
|
||||
170 412 1999
|
||||
171 414 1997
|
||||
172 416 1992
|
||||
173 418 1987
|
||||
174 421 1985
|
||||
175 423 1981
|
||||
176 424 1975
|
||||
177 426 1971
|
||||
178 429 1968
|
||||
179 431 1965
|
||||
180 433 1960
|
||||
181 435 1955
|
||||
182 437 1954
|
||||
183 440 1951
|
||||
184 441 1946
|
||||
185 443 1942
|
||||
186 445 1937
|
||||
187 448 1936
|
||||
188 450 1933
|
||||
189 452 1929
|
||||
190 454 1926
|
||||
191 456 1922
|
||||
192 458 1918
|
||||
193 461 1916
|
||||
194 463 1911
|
||||
195 465 1910
|
||||
196 467 1907
|
||||
197 470 1905
|
||||
198 472 1901
|
||||
199 474 1898
|
||||
200 476 1894
|
||||
201 478 1890
|
||||
202 480 1885
|
||||
203 481 1880
|
||||
204 483 1876
|
||||
205 485 1872
|
||||
206 487 1867
|
||||
207 489 1863
|
||||
208 491 1860
|
||||
209 494 1858
|
||||
210 496 1855
|
||||
211 498 1851
|
||||
212 500 1849
|
||||
213 502 1845
|
||||
214 504 1842
|
||||
215 507 1840
|
||||
216 509 1837
|
||||
217 511 1833
|
||||
218 513 1829
|
||||
219 515 1825
|
||||
220 516 1821
|
||||
221 518 1817
|
||||
222 520 1814
|
||||
223 522 1810
|
||||
224 524 1807
|
||||
225 526 1803
|
||||
226 528 1799
|
||||
227 530 1795
|
||||
228 532 1792
|
||||
229 534 1788
|
||||
230 536 1784
|
||||
231 538 1781
|
||||
232 540 1779
|
||||
233 542 1775
|
||||
234 545 1774
|
||||
235 547 1772
|
||||
236 549 1768
|
||||
237 551 1764
|
||||
238 553 1762
|
||||
239 555 1759
|
||||
240 557 1756
|
||||
241 559 1752
|
||||
242 561 1748
|
||||
243 563 1745
|
||||
244 565 1743
|
||||
245 567 1740
|
||||
246 569 1736
|
||||
247 571 1733
|
||||
248 574 1731
|
||||
249 576 1728
|
||||
250 578 1725
|
||||
251 580 1722
|
||||
252 583 1721
|
||||
253 586 1723
|
||||
254 590 1725
|
||||
255 593 1725
|
||||
256 596 1725
|
||||
257 598 1722
|
||||
258 602 1722
|
||||
259 604 1719
|
||||
260 606 1716
|
||||
261 607 1712
|
||||
262 610 1711
|
||||
263 613 1711
|
||||
264 616 1710
|
||||
265 618 1708
|
||||
266 621 1707
|
||||
267 625 1707
|
||||
268 628 1706
|
||||
269 630 1704
|
||||
270 632 1701
|
||||
271 635 1700
|
||||
272 638 1699
|
||||
273 641 1699
|
||||
274 644 1699
|
||||
275 646 1696
|
||||
276 648 1693
|
||||
277 651 1692
|
||||
278 654 1691
|
||||
279 656 1689
|
||||
280 660 1688
|
||||
281 663 1688
|
||||
282 666 1687
|
||||
283 669 1687
|
||||
284 671 1685
|
||||
285 673 1681
|
||||
286 676 1680
|
||||
287 679 1680
|
||||
288 682 1679
|
||||
289 684 1676
|
||||
290 687 1675
|
||||
291 689 1672
|
||||
292 692 1671
|
||||
293 695 1670
|
||||
294 699 1670
|
||||
295 702 1670
|
||||
296 705 1669
|
||||
297 707 1665
|
||||
298 709 1662
|
||||
299 711 1659
|
||||
300 713 1658
|
||||
301 716 1654
|
||||
302 718 1653
|
||||
303 720 1650
|
||||
304 723 1649
|
||||
305 727 1648
|
||||
306 730 1648
|
||||
307 733 1647
|
||||
308 736 1646
|
||||
309 739 1645
|
||||
310 741 1642
|
||||
311 744 1642
|
||||
312 748 1641
|
||||
313 751 1641
|
||||
314 753 1637
|
||||
315 755 1635
|
||||
316 758 1634
|
||||
317 761 1632
|
||||
318 764 1631
|
||||
319 767 1629
|
||||
320 770 1629
|
||||
321 773 1628
|
||||
322 776 1627
|
||||
323 779 1626
|
||||
324 782 1625
|
||||
325 785 1624
|
||||
326 787 1621
|
||||
327 789 1618
|
||||
328 792 1617
|
||||
329 796 1616
|
||||
330 799 1615
|
||||
331 802 1613
|
||||
332 805 1613
|
||||
333 808 1612
|
||||
334 810 1608
|
||||
335 812 1604
|
||||
336 815 1603
|
||||
337 817 1601
|
||||
338 819 1598
|
||||
339 821 1594
|
||||
340 823 1590
|
||||
341 826 1589
|
||||
342 829 1588
|
||||
343 831 1585
|
||||
344 833 1581
|
||||
345 835 1578
|
||||
346 837 1575
|
||||
347 838 1571
|
||||
348 840 1568
|
||||
349 842 1565
|
||||
350 845 1563
|
||||
351 849 1563
|
||||
352 852 1561
|
||||
353 854 1558
|
||||
354 856 1556
|
||||
355 858 1553
|
||||
356 860 1550
|
||||
357 863 1548
|
||||
358 866 1547
|
||||
359 869 1545
|
||||
360 872 1544
|
||||
361 875 1543
|
||||
362 879 1542
|
||||
363 881 1539
|
||||
364 884 1538
|
||||
365 886 1535
|
||||
366 889 1533
|
||||
367 892 1532
|
||||
368 895 1530
|
||||
369 897 1527
|
||||
370 899 1524
|
||||
371 900 1520
|
||||
372 902 1517
|
||||
373 905 1515
|
||||
374 907 1512
|
||||
375 909 1509
|
||||
376 911 1506
|
||||
377 913 1502
|
||||
378 914 1499
|
||||
379 916 1495
|
||||
380 919 1493
|
||||
381 922 1492
|
||||
382 925 1491
|
||||
383 928 1490
|
||||
384 931 1488
|
||||
385 934 1486
|
||||
386 937 1485
|
||||
387 940 1483
|
||||
388 943 1482
|
||||
389 946 1481
|
||||
390 950 1479
|
||||
391 953 1478
|
||||
392 956 1477
|
||||
393 958 1474
|
||||
394 960 1470
|
||||
395 962 1467
|
||||
396 964 1465
|
||||
397 967 1463
|
||||
398 969 1460
|
||||
399 971 1457
|
||||
400 973 1454
|
||||
401 976 1452
|
||||
402 978 1449
|
||||
403 980 1446
|
||||
404 983 1444
|
||||
405 985 1441
|
||||
406 987 1438
|
||||
407 990 1437
|
||||
408 993 1436
|
||||
409 995 1433
|
||||
410 999 1432
|
||||
411 1002 1430
|
||||
412 1005 1429
|
||||
413 1007 1426
|
||||
414 1009 1423
|
||||
415 1011 1420
|
||||
416 1015 1419
|
||||
417 1017 1416
|
||||
418 1020 1414
|
||||
419 1022 1411
|
||||
420 1024 1408
|
||||
421 1025 1405
|
||||
422 1029 1403
|
||||
423 1031 1400
|
||||
424 1033 1397
|
||||
425 1036 1396
|
||||
426 1039 1394
|
||||
427 1042 1393
|
||||
428 1044 1390
|
||||
429 1047 1388
|
||||
430 1050 1386
|
||||
431 1053 1385
|
||||
432 1056 1383
|
||||
433 1059 1382
|
||||
434 1062 1380
|
||||
435 1065 1378
|
||||
436 1068 1376
|
||||
437 1070 1373
|
||||
438 1073 1372
|
||||
439 1076 1370
|
||||
440 1078 1367
|
||||
441 1080 1364
|
||||
442 1082 1361
|
||||
443 1084 1357
|
||||
444 1087 1356
|
||||
445 1090 1354
|
||||
446 1092 1351
|
||||
447 1095 1350
|
||||
448 1098 1348
|
||||
449 1101 1346
|
||||
450 1103 1343
|
||||
451 1106 1342
|
||||
452 1109 1339
|
||||
453 1110 1335
|
||||
454 1113 1333
|
||||
455 1116 1332
|
||||
456 1118 1329
|
||||
457 1121 1327
|
||||
458 1124 1325
|
||||
459 1126 1322
|
||||
460 1128 1319
|
||||
461 1131 1317
|
||||
462 1134 1315
|
||||
463 1137 1314
|
||||
464 1140 1312
|
||||
465 1143 1310
|
||||
466 1146 1309
|
||||
467 1149 1306
|
||||
468 1152 1304
|
||||
469 1154 1301
|
||||
470 1156 1298
|
||||
471 1157 1295
|
||||
472 1159 1291
|
||||
473 1161 1288
|
||||
474 1164 1286
|
||||
475 1166 1283
|
||||
476 1168 1281
|
||||
477 1171 1279
|
||||
478 1174 1277
|
||||
479 1177 1275
|
||||
480 1179 1273
|
||||
481 1182 1270
|
||||
482 1185 1268
|
||||
483 1187 1266
|
||||
484 1189 1262
|
||||
485 1191 1259
|
||||
486 1193 1257
|
||||
487 1195 1254
|
||||
488 1198 1252
|
||||
489 1202 1251
|
||||
490 1205 1249
|
||||
491 1208 1247
|
||||
492 1211 1245
|
||||
493 1213 1243
|
||||
494 1215 1239
|
||||
495 1217 1237
|
||||
496 1220 1235
|
||||
497 1223 1232
|
||||
498 1224 1229
|
||||
499 1226 1226
|
||||
500 1228 1223
|
||||
501 1230 1220
|
||||
502 1233 1218
|
||||
503 1235 1215
|
||||
504 1237 505 1505 1240 1210
|
||||
506 1243 1209
|
||||
507 1246 1207
|
||||
508 1249 1205
|
||||
509 1252 1203
|
||||
510 1254 1200
|
||||
511 1256 1197
|
||||
512 1259 1195
|
||||
513 1261 514 1514 1264 515 1515 1266 1188
|
||||
516 1268 517 1517 1270 518 1272 1179
|
||||
519 1275 1177
|
||||
520 1277 1174
|
||||
521 1279 1171
|
||||
522 1282 1169
|
||||
523 1285 1168
|
||||
524 1524 1288 525 1525 1290 526 1526 1292 527 1294 1157
|
||||
528 1528 1297 529 1529 1301 1153
|
||||
530 1303 531 1531 1304 532 1532 1307 533 1533 1311 534 1534 1314 535 1535 1316 536 1319 1137
|
||||
537 1322 1135
|
||||
538 1325 1133
|
||||
539 1328 1131
|
||||
540 1331 1129
|
||||
541 1334 1127
|
||||
542 1336 1125
|
||||
543 1339 1123
|
||||
544 1342 1121
|
||||
545 1345 1119
|
||||
546 1347 1116
|
||||
547 1350 1114
|
||||
548 1353 1112
|
||||
549 1355 1109
|
||||
550 1358 1106
|
||||
551 1360 1104
|
||||
552 1363 1102
|
||||
553 1365 1099
|
||||
554 1368 1096
|
||||
555 1371 1095
|
||||
556 1374 1093
|
||||
557 1376 1090
|
||||
558 1379 1088
|
||||
559 1381 1085
|
||||
560 1383 1082
|
||||
561 1385 1079
|
||||
562 1387 1076
|
||||
563 1389 1073
|
||||
564 1392 1071
|
||||
565 1395 1069
|
||||
566 1397 1067
|
||||
567 1400 1065
|
||||
568 1402 1062
|
||||
569 1406 1060
|
||||
570 1408 1058
|
||||
571 1411 1056
|
||||
572 1414 1054
|
||||
573 1416 1051
|
||||
574 1418 1048
|
||||
575 1420 1045
|
||||
576 1423 1043
|
||||
577 1426 1041
|
||||
578 1429 1039
|
||||
579 1431 1036
|
||||
580 1433 1033
|
||||
581 1435 1031
|
||||
582 1438 1028
|
||||
583 1441 1026
|
||||
584 1443 1023
|
||||
585 1445 1021
|
||||
586 1448 1018
|
||||
587 1451 1016
|
||||
588 1453 1014
|
||||
589 1457 1012
|
||||
590 1460 1010
|
||||
591 1463 1008
|
||||
592 1466 1006
|
||||
593 1468 1003
|
||||
594 1470 1001
|
||||
595 1472 998
|
||||
596 1474 995
|
||||
597 1477 993
|
||||
598 1479 990
|
||||
599 1481 987
|
||||
600 1483 984
|
||||
601 1485 982
|
||||
602 1487 979
|
||||
603 1489 976
|
||||
604 1491 973
|
||||
605 1492 970
|
||||
606 1494 967
|
||||
607 1496 965
|
||||
608 1498 962
|
||||
609 1500 959
|
||||
610 1502 956
|
||||
611 1505 954
|
||||
612 1507 952
|
||||
613 1510 949
|
||||
614 1513 947
|
||||
615615 1515 9616616 1518 9617617 1520 9618618 1522 9619619 1525 9620620 1527 9621621 1529 9622622 1532 9623623 1534 9624624 1537 9625625 1540 9626626 1543 918
|
||||
627 1545 915
|
||||
628 1548 913
|
||||
629 1551 911
|
||||
630 1555 909
|
||||
631 1557 906
|
||||
632 1559 9633633 1561 9634634 1563 8635635 1565 8636 1567 893
|
||||
637 1571 891
|
||||
638638 1573 8639 1576 886
|
||||
640 1579 884
|
||||
641 1581 881
|
||||
642 1583 879
|
||||
643 1586 876
|
||||
644 1589 874
|
||||
645 1592 872
|
||||
646 1594 870
|
||||
647 1596 867
|
||||
648 1598 864
|
||||
649 1601 862
|
||||
650 1604 860
|
||||
651 1606 857
|
||||
652 1609 855
|
||||
653 1611 852
|
||||
654 1613 849
|
||||
655 1616 847
|
||||
656 1620 845
|
||||
657 1622 843
|
||||
658 1625 841
|
||||
659 1628 838
|
||||
660 1631 836
|
||||
661 1633 834
|
||||
662 1635 831
|
||||
663 1638 829
|
||||
664 1641 827
|
||||
665 1644 824
|
||||
666 1647 822
|
||||
667 1649 819
|
||||
668 1652 817
|
||||
669 1654 815
|
||||
670 1656 812
|
||||
671 1659 810
|
||||
672 1662 808
|
||||
673 1664 805
|
||||
674 1667 803
|
||||
675 1669 800
|
||||
676 1672 797
|
||||
677 1674 795
|
||||
678 1676 792
|
||||
679 1678 789
|
||||
680 1680 787
|
||||
681 1682 784
|
||||
682 1684 781
|
||||
683 1687 779
|
||||
684 1690 777
|
||||
685 1693 775
|
||||
686 1695 772
|
||||
687 1698 770
|
||||
688 1700 767
|
||||
689 1703 765
|
||||
690 1705 762
|
||||
691 1707 759
|
||||
692 1709 757
|
||||
693 1712 755
|
||||
694 1715 752
|
||||
695 1718 750
|
||||
696 1721 748
|
||||
697 1724 746
|
||||
698 1727 743
|
||||
699 1730 741
|
||||
700 1732 738
|
||||
701 1734 736
|
||||
702 1736 733
|
||||
703 1739 731
|
||||
704704 1741 7705 1744 726
|
||||
706 1746 723
|
||||
707707 1749 7708 1752 719
|
||||
709 1754 716
|
||||
710 1756 713
|
||||
711 1757 711
|
||||
712 1761 708
|
||||
713 1763 706
|
||||
714714 1765 7715715 1768 7716716 1770 6717717 1773 6718718 1775 6719719 1777 6720720 1780 6721721 1782 6722722 1785 6723723 1789 6724724 1791 6725725 1795 6726726 1798 675
|
||||
727 1800 672
|
||||
728 1802 670
|
||||
729 1804 6730730 1807 6731731 1810 6732 1812 660
|
||||
733 1815 657
|
||||
734734 1818 6735735 1821 6736736 1823 6737737 1825 6738 1828 645
|
||||
739 1830 643
|
||||
740 1833 641
|
||||
741 1837 638
|
||||
742 1840 636
|
||||
743 1843 634
|
||||
744 1846 631
|
||||
745 1848 629
|
||||
746 1850 626
|
||||
747 1851 623
|
||||
748 1854 621
|
||||
749 1858 619
|
||||
750 1860 616
|
||||
751 1862 614
|
||||
752 1865 612
|
||||
753 1868 609
|
||||
754 1872 607
|
||||
755 1874 604
|
||||
756 1876 602
|
||||
757 1878 599
|
||||
758 1881 597
|
||||
759 1884 595
|
||||
760 1886 592
|
||||
761 1888 589
|
||||
762 1890 587
|
||||
763 1892 584
|
||||
764 1895 582
|
||||
765 1898 579
|
||||
766 1900 577
|
||||
767 1768 1900768 1769 1902769 1770 1905770 1771 1907771 1772 1910772 1773 1913773 1774 1916774 1775 1919775 1776 1921 551
|
||||
777 1923 548
|
||||
778 1925 546
|
||||
779 1928 544
|
||||
780 1932 541
|
||||
781 1934 539
|
||||
782 1937 536
|
||||
783 1939 534
|
||||
784 1942 531
|
||||
785 1945 529
|
||||
786 1947 527
|
||||
787 1949 524
|
||||
788 1951 521
|
||||
789 1953789 1790 1955790 1791 1958791 1792 1960792 1793 1963793 1794 1965794 1970 507
|
||||
795 1973 505
|
||||
796 1975 503
|
||||
797 1978 500
|
||||
798 1799 1978799 1800 1982800 1986 493
|
||||
801 1988 490
|
||||
802 1803 1989803 1993 486
|
||||
804 1996 483
|
||||
805 1998 481
|
||||
806 2001 478
|
||||
807 2003 476
|
||||
808 2006 473
|
||||
809 2009 471
|
||||
810 2012 468
|
||||
811 2015 466
|
||||
812 2017 464
|
||||
813 2019 461
|
||||
814 2022 459
|
||||
815 2024 456
|
||||
816 2027 454
|
||||
817 2029 451
|
||||
818 2032 449
|
||||
819 2034 446
|
||||
820 2037 444
|
||||
821 2039 441
|
||||
822 2042 439
|
||||
823 2045 436
|
||||
824 2049 434
|
||||
825 2051 432
|
||||
826 2053 429
|
||||
827 2054 426
|
||||
828 2056 424
|
||||
829 2059 421
|
||||
830 2062 419
|
||||
831 2064 416
|
||||
832 2067 414
|
||||
833 2069 411
|
||||
834 2072 409
|
||||
835 2075 407
|
||||
836 2077 404
|
||||
837 2079 402
|
||||
838 2081 399
|
||||
839 2083 396
|
||||
840 2085 394
|
||||
841 2087 391
|
||||
842 2090 389
|
||||
843 2093 386
|
||||
844 2095 384
|
||||
845 2098 381
|
||||
846 2101 379
|
||||
847 2104 377
|
||||
848 2108 374
|
||||
849 2110 372
|
||||
850 2112 369
|
||||
851 2114 367
|
||||
852 2116 364
|
||||
853 2119 362
|
||||
854 2122 359
|
||||
855 2125 357
|
||||
856 2128 355
|
||||
857 2130 352
|
||||
858 2133 350
|
||||
859 2136 347
|
||||
860 2138 345
|
||||
861 2140 342
|
||||
862 2143 340
|
||||
863 2147 337
|
||||
864 2150 335
|
||||
865 2153 333
|
||||
866 2155 330
|
||||
867 2158 328
|
||||
868 2161 325
|
||||
869 2164 323
|
||||
870 2166 320
|
||||
871 2169 318
|
||||
872 2171 315
|
||||
873 2174 313
|
||||
874 2176 310
|
||||
875 2178 308
|
||||
876 2179 305
|
||||
877 2181 303
|
||||
878 2185 300
|
||||
879 2187 298
|
||||
880 2189 295
|
||||
881 2191 293
|
||||
882 2194 290
|
||||
883 2196 288
|
||||
884 2197 285
|
||||
885 2200 283
|
||||
886886 2201 2887887 2204 2888888 2207 2889889 2211 2890890 2214 2891891 2217 2892892 2220 266
|
||||
893 2222 263
|
||||
894 2225 261
|
||||
895 2228 258
|
||||
896 2231 256
|
||||
897 2234 253
|
||||
898 2236 2899899 2238 2900 2241 246
|
||||
901 2244 243
|
||||
902 2247 241
|
||||
903 2251 239
|
||||
904 2254 236
|
||||
905 2256 234
|
||||
906 2258 231
|
||||
907 2261 229
|
||||
908 2264 226
|
||||
909 2266 224
|
||||
910 2268 221
|
||||
911 2271 219
|
||||
912 2274 216
|
||||
913 2277 214
|
||||
914 2279 211
|
||||
915 2282 209
|
||||
916 2285 206
|
||||
917 2288 204
|
||||
918 2291 202
|
||||
919 2295 199
|
||||
920 2298 197
|
||||
921 2300 194
|
||||
922 2302 192
|
||||
923 2304 189
|
||||
924 2306 187
|
||||
925 2308 184
|
||||
926 2311 181
|
||||
927 2314 179
|
||||
928 2317 177
|
||||
929 2319 174
|
||||
930 2321 172
|
||||
932 2315 166
|
||||
933 2318 163
|
||||
933 2328 164
|
||||
935 2322 158
|
||||
936 2326 156
|
||||
937 2329 153
|
||||
938 2332 151
|
||||
939 2335 149
|
||||
940 2337 146
|
||||
941 2339 144
|
||||
942 2341 141
|
||||
943 2343 138
|
||||
944 2346 136
|
||||
945 2348 134
|
||||
946 2351 131
|
||||
946 2360 132
|
||||
947 2363 129
|
||||
948 2366 127
|
||||
949 2369 124
|
||||
950 2371 122
|
||||
951 2374 119
|
||||
952 2377 117
|
||||
953 2380 114
|
||||
954 2384 112
|
||||
955 2386 109
|
||||
956 2388 107
|
||||
957 2390 104
|
||||
958 2391 102
|
||||
959 2395 99
|
||||
960 2398 97
|
||||
961 2400 94
|
||||
962 2403 92
|
||||
963 2408 89
|
||||
964 2410 87
|
||||
965 2414 84
|
||||
966 2416 82
|
||||
967 2418 79
|
||||
968 2420 77
|
||||
969 2422 74
|
||||
970 2424 72
|
||||
971 2425 699972 2428 67
|
||||
973 2431 64
|
||||
974 2434 62
|
||||
975 2436 59
|
||||
976 2439 57
|
||||
977 2442 54
|
||||
978978 2443 979979 2446 980980 2449 47
|
||||
981 2451 44
|
||||
982 2455 42
|
||||
983 2458 39
|
||||
984 2461 37
|
||||
985 2463 34
|
||||
986 2466 32
|
||||
987 2470 30
|
||||
988 2472 27
|
||||
989 2474 990990 2477 991991 2479 992992 2482 993993 2484 994994 2487 995 2491 10
|
||||
996996 2494997997 2497998998 2501999999 2503 0
|
||||
|
@@ -0,0 +1,82 @@
|
||||
"y","X1","X2"
|
||||
"A",6,2.5
|
||||
"A",5.1,1.9
|
||||
"A",5.9,2.1
|
||||
"A",5.6,1.8
|
||||
"A",5.8,2.2
|
||||
"A",6.6,2.1
|
||||
"A",4.5,1.7
|
||||
"A",6.3,1.8
|
||||
"A",5.8,1.8
|
||||
"A",6.1,2.5
|
||||
"A",5.1,2
|
||||
"A",5.3,1.9
|
||||
"A",5.5,2.1
|
||||
"A",5,2
|
||||
"A",5.1,2.4
|
||||
"A",5.3,2.3
|
||||
"A",5.5,1.8
|
||||
"A",6.7,2.2
|
||||
"A",6.9,2.3
|
||||
"A",5,1.5
|
||||
"A",5.7,2.3
|
||||
"A",4.9,2
|
||||
"A",6.7,2
|
||||
"A",4.9,1.8
|
||||
"A",5.7,2.1
|
||||
"A",6,1.8
|
||||
"A",4.8,1.8
|
||||
"A",5.6,2.1
|
||||
"A",5.8,1.6
|
||||
"A",6.1,1.9
|
||||
"A",6.4,2
|
||||
"A",5.6,2.2
|
||||
"A",5.6,1.4
|
||||
"A",6.1,2.3
|
||||
"A",5.6,2.4
|
||||
"A",4.8,1.9
|
||||
"A",5.4,2.1
|
||||
"A",5.1,2.3
|
||||
"A",5.9,2.3
|
||||
"A",5.7,2.5
|
||||
"A",5.2,2.3
|
||||
"A",5,1.9
|
||||
"A",5.2,2
|
||||
"A",5.4,2.3
|
||||
"A",5.1,1.8
|
||||
"B",4.7,1.4
|
||||
"B",4.5,1.5
|
||||
"B",4.9,1.5
|
||||
"B",4,1.3
|
||||
"B",4.6,1.5
|
||||
"B",4.5,1.3
|
||||
"B",4.7,1.6
|
||||
"B",3.3,1
|
||||
"B",4.6,1.3
|
||||
"B",3.9,1.4
|
||||
"B",3.5,1
|
||||
"B",4.2,1.5
|
||||
"B",4,1
|
||||
"B",3.6,1.3
|
||||
"B",4.4,1.4
|
||||
"B",4.1,1
|
||||
"B",3.9,1.1
|
||||
"B",4.8,1.7
|
||||
"B",4.7,1.2
|
||||
"B",4.3,1.3
|
||||
"B",4.8,1.4
|
||||
"B",5,1.7
|
||||
"B",3.8,1.1
|
||||
"B",3.7,1
|
||||
"B",3.9,1.2
|
||||
"B",5.1,1.6
|
||||
"B",4.5,1.6
|
||||
"B",4.7,1.5
|
||||
"B",4.4,1.3
|
||||
"B",4.1,1.3
|
||||
"B",4.4,1.2
|
||||
"B",4.6,1.4
|
||||
"B",4,1.2
|
||||
"B",4.2,1.3
|
||||
"B",4.2,1.2
|
||||
"B",3,1.1
|
||||
|
@@ -0,0 +1,82 @@
|
||||
"X","y"
|
||||
6,2.5
|
||||
5.1,1.9
|
||||
5.9,2.1
|
||||
5.6,1.8
|
||||
5.8,2.2
|
||||
6.6,2.1
|
||||
4.5,1.7
|
||||
6.3,1.8
|
||||
5.8,1.8
|
||||
6.1,2.5
|
||||
5.1,2
|
||||
5.3,1.9
|
||||
5.5,2.1
|
||||
5,2
|
||||
5.1,2.4
|
||||
5.3,2.3
|
||||
5.5,1.8
|
||||
6.7,2.2
|
||||
6.9,2.3
|
||||
5,1.5
|
||||
5.7,2.3
|
||||
4.9,2
|
||||
6.7,2
|
||||
4.9,1.8
|
||||
5.7,2.1
|
||||
6,1.8
|
||||
4.8,1.8
|
||||
5.6,2.1
|
||||
5.8,1.6
|
||||
6.1,1.9
|
||||
6.4,2
|
||||
5.6,2.2
|
||||
5.6,1.4
|
||||
6.1,2.3
|
||||
5.6,2.4
|
||||
4.8,1.9
|
||||
5.4,2.1
|
||||
5.1,2.3
|
||||
5.9,2.3
|
||||
5.7,2.5
|
||||
5.2,2.3
|
||||
5,1.9
|
||||
5.2,2
|
||||
5.4,2.3
|
||||
5.1,1.8
|
||||
4.7,1.4
|
||||
4.5,1.5
|
||||
4.9,1.5
|
||||
4,1.3
|
||||
4.6,1.5
|
||||
4.5,1.3
|
||||
4.7,1.6
|
||||
3.3,1
|
||||
4.6,1.3
|
||||
3.9,1.4
|
||||
3.5,1
|
||||
4.2,1.5
|
||||
4,1
|
||||
3.6,1.3
|
||||
4.4,1.4
|
||||
4.1,1
|
||||
3.9,1.1
|
||||
4.8,1.7
|
||||
4.7,1.2
|
||||
4.3,1.3
|
||||
4.8,1.4
|
||||
5,1.7
|
||||
3.8,1.1
|
||||
3.7,1
|
||||
3.9,1.2
|
||||
5.1,1.6
|
||||
4.5,1.6
|
||||
4.7,1.5
|
||||
4.4,1.3
|
||||
4.1,1.3
|
||||
4.4,1.2
|
||||
4.6,1.4
|
||||
4,1.2
|
||||
4.2,1.3
|
||||
4.2,1.2
|
||||
3,1.1
|
||||
|
@@ -0,0 +1,99 @@
|
||||
[2025-06-21 22:20:44] (timestamp)
|
||||
|
||||
features with NA's
|
||||
=======================
|
||||
age 123
|
||||
job 73
|
||||
marital 19
|
||||
education 463
|
||||
duration 51
|
||||
poutcome 7814
|
||||
emp.var.rate 247
|
||||
cons.price.idx 247
|
||||
cons.conf.idx 247
|
||||
|
||||
categorical cols levels
|
||||
=======================
|
||||
job
|
||||
job
|
||||
admin. 2630
|
||||
blue collar 1852
|
||||
entrepreneur 294
|
||||
housemaid 267
|
||||
management 688
|
||||
retired 621
|
||||
self-employed 336
|
||||
services 856
|
||||
student 354
|
||||
technician 1626
|
||||
unemployed 271
|
||||
|
||||
marital
|
||||
marital
|
||||
divorced 1076
|
||||
married 5747
|
||||
single 3026
|
||||
|
||||
education
|
||||
education
|
||||
basic.4y 972
|
||||
basic.6y 503
|
||||
basic.9y 1251
|
||||
high.school 2230
|
||||
illiterate 6
|
||||
professional.course 1307
|
||||
university.degree 3136
|
||||
|
||||
default
|
||||
default
|
||||
no 8268
|
||||
unknown 1600
|
||||
|
||||
housing
|
||||
housing
|
||||
no 4413
|
||||
unknown 244
|
||||
yes 5211
|
||||
|
||||
loan
|
||||
loan
|
||||
no 8196
|
||||
unknown 244
|
||||
yes 1428
|
||||
|
||||
contact
|
||||
contact
|
||||
cellular 6993
|
||||
telephone 2875
|
||||
|
||||
month
|
||||
month
|
||||
apr 834
|
||||
aug 1451
|
||||
dec 103
|
||||
jul 1582
|
||||
jun 1239
|
||||
mar 314
|
||||
may 2745
|
||||
nov 925
|
||||
oct 363
|
||||
sep 312
|
||||
|
||||
day_of_week
|
||||
day_of_week
|
||||
fri 1823
|
||||
mon 1960
|
||||
thu 2152
|
||||
tue 1947
|
||||
wed 1986
|
||||
|
||||
poutcome
|
||||
poutcome
|
||||
failure 1101
|
||||
success 953
|
||||
|
||||
y
|
||||
y
|
||||
no 5223
|
||||
yes 4645
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user