Derived variables for a weather dataset in forecasting ml model
Hello guys! I’m going to analyse a dataset which will be applied in my weather forecasting machine learning model. The variables the dataset holding are below. Is there any other derived variables i could add in, to help the dataset more meteorologic professional. And i suppose if i stuff the decent variables into my model, it would perform better. Any advice?
variables=[
'temperature_2m',
'relative_humidity_2m',
'dew_point_2m',
'apparent_temperature',
'pressure_msl',
'cloud_cover',
'cloud_cover_low',
'cloud_cover_mid',
'cloud_cover_high',
'wind_speed_10m',
'wind_direction_10m',
'wind_gusts_10m',
'shortwave_radiation',
'direct_radiation',
'diffuse_radiation',
'global_tilted_irradiance',
'vapour_pressure_deficit',
'cape',
'evapotranspiration',
'et0_fao_evapotranspiration',
'precipitation',
'snowfall',
'rain',
'showers',
'visibility',
'is_day',
]