Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

HDPCP Practical Exam problem

avatar
New Member

Hi,

I was going through the practical exam for HDPCD in AWS. There is a question in pig as

"Remove all rows in the flightdelays data where the DepTime column equals the string "NA".

The answer provided for this question says:

b = filter a by (chararray) $4 != 'NA' or (chararray) $11 != 'NA';

I do not understand why It checks 2 fields here. Is it correct or am I missing something ? Because of this I find differences in the actual output and my answer.

Please help me to understand if anyone has idea about it.

1 ACCEPTED SOLUTION

avatar

There is a typo in the solution.

The correct line in the solution should be

b = filter a by (chararray) $4 != 'NA';

Thanks

View solution in original post

2 REPLIES 2

avatar

There is a typo in the solution.

The correct line in the solution should be

b = filter a by (chararray) $4 != 'NA';

Thanks

avatar
New Member

Thank you!