You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Develop the transformation using a stored procedure to select data from ontime_data, join it to carrier_code, and perform projection. New table is ontime_carrier.
Transformations:.
Join on carrier column
description renamed to carrier_desc
Calculate arrived_flag
Y when not cancelled or diverted
N when cancelled or diverted
NULL when not cancelled or diverted, but arr_delay is NULL
Develop the transformation using a stored procedure to select data from
ontime_data
, join it tocarrier_code
, and perform projection. New table isontime_carrier
.Transformations:.
carrier
columndescription
renamed tocarrier_desc
arrived_flag
Y
when not cancelled or divertedN
when cancelled or divertedNULL
when not cancelled or diverted, butarr_delay
isNULL
year
,month
,day_of_month
,carrier_code
,carrier_desc
,flight_number
,origin
,destination
,arrived_flag
Acceptance Criteria:
arr_delay
isNULL
. Feature referenceUNKNOWN
forcarrier_desc
The text was updated successfully, but these errors were encountered: