ayethuzar commited on
Commit
553a1a8
·
unverified ·
1 Parent(s): 8aafa5b

encoding for the categorical feature sliders

Browse files
Files changed (1) hide show
  1. docs.md +110 -0
docs.md ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Encoding for the categorical features
2
+
3
+ ********************
4
+
5
+ 'What is the Overall material and finish quality?',
6
+ 'What is the Quality of the basement finished area?',
7
+ 'Where are the physical locations within Ames city limits?',
8
+ 'Where is the location of the Garage?',
9
+ 'What is the condition of the sale?',
10
+ 'Does the house have walkout or garden-level basement walls?'
11
+
12
+ ********************
13
+
14
+ OverallQual: Rates the overall material and finish of the house
15
+
16
+ 10 Very Excellent
17
+ 9 Excellent
18
+ 8 Very Good
19
+ 7 Good
20
+ 6 Above Average
21
+ 5 Average
22
+ 4 Below Average
23
+ 3 Fair
24
+ 2 Poor
25
+ 1 Very Poor
26
+ ********************
27
+
28
+ BsmtFinType1: Rating of basement finished area
29
+
30
+ (These will be encoded with 1 to 7 in the slider of the APP)
31
+
32
+ GLQ Good Living Quarters
33
+ ALQ Average Living Quarters
34
+ BLQ Below Average Living Quarters
35
+ Rec Average Rec Room
36
+ LwQ Low Quality
37
+ Unf Unfinshed
38
+ NA No Basement
39
+
40
+ ********************
41
+
42
+ Neighborhood: Physical locations within Ames city limits
43
+
44
+ (These will be encoded with 1 to 25 in the slider of the APP)
45
+
46
+ Blmngtn Bloomington Heights
47
+ Blueste Bluestem
48
+ BrDale Briardale
49
+ BrkSide Brookside
50
+ ClearCr Clear Creek
51
+ CollgCr College Creek
52
+ Crawfor Crawford
53
+ Edwards Edwards
54
+ Gilbert Gilbert
55
+ IDOTRR Iowa DOT and Rail Road
56
+ MeadowV Meadow Village
57
+ Mitchel Mitchell
58
+ Names North Ames
59
+ NoRidge Northridge
60
+ NPkVill Northpark Villa
61
+ NridgHt Northridge Heights
62
+ NWAmes Northwest Ames
63
+ OldTown Old Town
64
+ SWISU South & West of Iowa State University
65
+ Sawyer Sawyer
66
+ SawyerW Sawyer West
67
+ Somerst Somerset
68
+ StoneBr Stone Brook
69
+ Timber Timberland
70
+ Veenker Veenker
71
+
72
+ ********************
73
+
74
+ GarageType: Garage location
75
+
76
+ (These will be encoded with 1 to 7 in the slider of the APP)
77
+
78
+ 2Types More than one type of garage
79
+ Attchd Attached to home
80
+ Basment Basement Garage
81
+ BuiltIn Built-In (Garage part of house - typically has room above garage)
82
+ CarPort Car Port
83
+ Detchd Detached from home
84
+ NA No Garage
85
+
86
+ ********************
87
+
88
+ SaleCondition: Condition of sale
89
+
90
+ (These will be encoded with 1 to 6 in the slider of the APP)
91
+
92
+ Normal Normal Sale
93
+ Abnorml Abnormal Sale - trade, foreclosure, short sale
94
+ AdjLand Adjoining Land Purchase
95
+ Alloca Allocation - two linked properties with separate deeds, typically condo with a garage unit
96
+ Family Sale between family members
97
+ Partial Home was not completed when last assessed (associated with New Homes)
98
+
99
+ ********************
100
+
101
+ BsmtExposure: Refers to walkout or garden level walls
102
+
103
+ (These will be encoded with 1 to 5 in the slider of the APP)
104
+
105
+ Gd Good Exposure
106
+ Av Average Exposure (split levels or foyers typically score average or above)
107
+ Mn Mimimum Exposure
108
+ No No Exposure
109
+ NA No Basement
110
+