We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Develop the transformation to select data from ontime_data, join it to carrier_code, and perform projection. New table is ontime_carrier.
ontime_data
carrier_code
ontime_carrier
Transformations:.
carrier
description
carrier_desc
arrived_flag
Y
N
NULL
arr_delay
year
month
day_of_month
flight_number
origin
destination
Acceptance Criteria:
UNKNOWN
The text was updated successfully, but these errors were encountered:
donaldsawyer
Successfully merging a pull request may close this issue.
Develop the transformation 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:
ontime_carrier
arr_delay
isNULL
. Feature referenceUNKNOWN
forcarrier_desc
ontime_carrier
writtenThe text was updated successfully, but these errors were encountered: