PySpark ile Özellik Mühendisliği
John Hogue
Lead Data Scientist, General Mills
Bir evin satış fiyatını tahmin et
SALESCLOSEPRICE
DataFrame.count()df.count()
5000
DataFrame.columnsdf.columns
['No.', 'MLSID', 'StreetNumberNumeric', ... ]
DataFrame.columns uzunluğulen(df.columns)
74
DataFrame.dtypes
df.dtypes
[('No.', 'integer'), ('MLSID', 'string'), ... ]
PySpark ile Özellik Mühendisliği