Feature Engineering with PySpark
John Hogue
Lead Data Scientist, General Mills
Předpověď prodejní ceny domu
SALESCLOSEPRICE
DataFrame.count() pro počet řádkůdf.count()
5000
DataFrame.columns pro seznam sloupcůdf.columns
['No.', 'MLSID', 'StreetNumberNumeric', ... ]
DataFrame.columns pro počet sloupcůlen(df.columns)
74
DataFrame.dtypes
df.dtypes
[('No.', 'integer'), ('MLSID', 'string'), ... ]
Feature Engineering with PySpark