Datasets:

Modalities:
Image
Text
Formats:
parquet
ArXiv:
Libraries:
Datasets
pandas
License:
SvenKlaassen commited on
Commit
33d27eb
·
verified ·
1 Parent(s): b7ddf34

tabular feature description

Browse files
Files changed (1) hide show
  1. README.md +30 -4
README.md CHANGED
@@ -103,9 +103,9 @@ The dataset is based on the three commonly used datasets:
103
 
104
  The versions to create this dataset can be found on Kaggle:
105
 
106
- - [Diamonds dataset](https://www.kaggle.com/datasets/shivam2503/diamonds)
107
- - [IMDB dataset](https://www.kaggle.com/datasets/lakshmi25npathi/imdb-dataset-of-50k-movie-reviews?select=IMDB+Dataset.csv)
108
- - [CIFAR-10 dataset](https://www.kaggle.com/datasets/swaroopkml/cifar10-pngs-in-folders)
109
 
110
  The original citations can be found below.
111
 
@@ -142,7 +142,33 @@ The data fields can be devided into several categories:
142
  - `label` (`int64`): Corresponding label from `0` to `9`
143
 
144
  - **Tabular Features**
145
- - `price` (`float64`):
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
146
 
147
  - **Oracle Features**
148
  - `cond_exp_y` (`float64`): Expected value of `Y` conditional on `D_1`, `sentiment`, `label` and `price`
 
103
 
104
  The versions to create this dataset can be found on Kaggle:
105
 
106
+ - [Diamonds dataset (Kaggle)](https://www.kaggle.com/datasets/shivam2503/diamonds)
107
+ - [IMDB dataset (Kaggle)](https://www.kaggle.com/datasets/lakshmi25npathi/imdb-dataset-of-50k-movie-reviews?select=IMDB+Dataset.csv)
108
+ - [CIFAR-10 dataset (Kaggle)](https://www.kaggle.com/datasets/swaroopkml/cifar10-pngs-in-folders)
109
 
110
  The original citations can be found below.
111
 
 
142
  - `label` (`int64`): Corresponding label from `0` to `9`
143
 
144
  - **Tabular Features**
145
+ - `price` (`float64`): Logarithm of the price in US dollars
146
+ - `carat` (`float64`): Logarithm of the weight of the diamond
147
+ - `x` (`float64`): Length in mm
148
+ - `y` (`float64`): Width in mm
149
+ - `z` (`float64`): Depth in mm
150
+ - `depth` (`float64`): Total depth percentage
151
+ - `table` (`float64`): Width of top of diamond relative to widest point
152
+ - **Cut**: Quality of the cut (`Fair`, `Good`, `Very Good`, `Premium`, `Ideal`) (dummy coded with `Fair` as baseline)
153
+ - `cut_Good` (`bool`)
154
+ - `cut_Very Good` (`bool`)
155
+ - `cut_Premium` (`bool`)
156
+ - `cut_Ideal` (`bool`)
157
+ - **Color**: Diamond color, from `J`(worst) to `D`(best) (dummy coded with `D` as baseline)
158
+ - `color_E` (`bool`)
159
+ - `color_F` (`bool`)
160
+ - `color_G` (`bool`)
161
+ - `color_H` (`bool`)
162
+ - `color_I` (`bool`)
163
+ - `color_J` (`bool`)
164
+ - **Clarity**: Measurement of diamond clarity (`I1` (worst), `SI2`, `SI1`, `VS2`, `VS1`, `VVS2`, `VVS1`, `IF` (best)) (dummy coded with `I1` as baseline)
165
+ - `clarity_SI2` (`bool`)
166
+ - `clarity_SI1` (`bool`)
167
+ - `clarity_VS2` (`bool`)
168
+ - `clarity_VS1` (`bool`)
169
+ - `clarity_VVS2` (`bool`)
170
+ - `clarity_VVS1` (`bool`)
171
+ - `clarity_IF` (`bool`)
172
 
173
  - **Oracle Features**
174
  - `cond_exp_y` (`float64`): Expected value of `Y` conditional on `D_1`, `sentiment`, `label` and `price`