in Education by
I have this set of data: dump data; This is a sample output: (this dataset is almost a million rows long). ("0",60,0,1,"Fri") ("1",47,0,1,"Mon") ("1",23,1,0,"Tue") ("1",60,0,0,"Sat") ("1",50,1,1,"Fri") I want to replace the values: Sat, Fri, Mon to numbers of week, I know how to use REPLACE for change just 1 value at a time, but I have to repeat it multiple times in order to change all days of the week: data_day_of_week = FOREACH data GENERATE $0,$1,$2,$3,REPLACE($4, 'Mon', '1'); Is there any way to do this in only one statement? JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
You should use a CASE WHEN THEN statement data_day_of_week = FOREACH data GENERATE CASE WHEN $4 == 'Mon' THEN '1' WHEN $4 == 'Tue' THEN '2' ... WHEN $4 == 'Sun' THEN '7' END AS day_number; You should also name your relations so not to use $1, $2 etc. If you name $4 as day_number then when you declare the variable as day_number from the CASE statement it'll "overwrite" your prior data.

Related questions

0 votes
    What is the difference between Hadoop, HBase, Hive and Pig? I know the basic Definitions of all these terms, But ... can these be used? Select the correct answer from above options...
asked Jan 20, 2022 in Education by JackTerrance
0 votes
    I have just started with Hadoop. Using Cloudera's Hadoop VM, I worked with Hive, Pig and Hadoop. As I worked, ... we need them both? Select the correct answer from above options...
asked Jan 20, 2022 in Education by JackTerrance
0 votes
    What different data types in Pig Latin?...
asked May 19, 2021 in Technology by JackTerrance
0 votes
    The Hadoop list includes the HBase database, the Apache Mahout ________ system, and matrix operations. ... recognition 3. Statistical classification 4. Artificial intelligence...
asked Dec 7, 2022 in Education by JackTerrance
0 votes
    To access the services of the operating system, the interface is provided by the ___________ 1. Library 2. System calls 3. Assembly instructions 4. API...
asked Dec 7, 2022 in Education by JackTerrance
0 votes
    In OS which of the following is/are CPU scheduling algorithms? 1. Priority 2. Round Robin 3. Shortest Job First 4. All of the mentioned...
asked Dec 7, 2022 in Education by JackTerrance
0 votes
    What is the main function of the command interpreter? 1. to provide the interface between the API and application ... the next user-specified command 4. none of the mentioned...
asked Dec 7, 2022 in Education by JackTerrance
0 votes
    In Operating System CPU scheduling is the basis of ___________ 1. multiprogramming operating systems 2. larger memory sized ... 3. multiprocessor systems 4. none of the mentioned...
asked Dec 7, 2022 in Education by JackTerrance
0 votes
    Sun also has the Hadoop Live CD ________ project, which allows running a fully functional Hadoop cluster using a live CD. 1. OpenOffice.org 2. OpenSolaris 3. GNU 4. Linux...
asked Dec 6, 2022 in Education by JackTerrance
0 votes
    I have data regarding gender of people under 8 columns: mem1;mem2;mem3;mem4;mem5;mem6;mem7;mem8 MALE; ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 14, 2022 in Education by JackTerrance
0 votes
    When I am running a Hadoop .jar file from the command prompt, it throws an exception saying no such method ... (Child.java:264) Select the correct answer from above options...
asked Feb 2, 2022 in Education by JackTerrance
0 votes
    So, I've been looking at Hadoop with keen interest, and to be honest I'm fascinated, things don't get much ... anyone know of one? Select the correct answer from above options...
asked Feb 2, 2022 in Education by JackTerrance
0 votes
    Definition says: RDD is immutable distributed collection of objects I don't quite understand what does it mean. Is ... one please help. Select the correct answer from above options...
asked Jan 30, 2022 in Education by JackTerrance
0 votes
    I am new to Hadoop/ZooKeeper. I cannot understand the purpose of using ZooKeeper with Hadoop, is ZooKeeper writing ... with Hadoop? Select the correct answer from above options...
asked Jan 30, 2022 in Education by JackTerrance
0 votes
    I have an image with horizontal and vertical lines. In fact, this image is the BBC website converted to ... rectangle. Thanks! Select the correct answer from above options...
asked Jan 29, 2022 in Education by JackTerrance
...