Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6062739
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T09:05:11+00:00 2026-05-23T09:05:11+00:00

ch = LOAD ‘ch.txt’; ch_all = GROUP ch ALL; ch_count = FOREACH ch_all GENERATE

  • 0
ch = LOAD 'ch.txt';
ch_all = GROUP ch ALL;
ch_count = FOREACH ch_all GENERATE COUNT(ch);

ca = LOAD 'ca.txt';
ca_all = GROUP ca ALL;
ca_count = FOREACH ca_all GENERATE COUNT(ca);

I have the above pig script code, which computes two counts.
Now I want to divide ch_count by ca_count and store it in a file.
How do I do that?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T09:05:11+00:00Added an answer on May 23, 2026 at 9:05 am

    There is no convenient way to do this in Pig but a JOIN could help you:

    Pig:

    ch = LOAD 'ch.txt';
    ch_all = GROUP ch ALL;
    ch_count = FOREACH ch_all GENERATE 'same' AS key, (DOUBLE) COUNT(ch) AS ct;
    
    ca = LOAD 'ca.txt';
    ca_all = GROUP ca ALL;
    ca_count = FOREACH ca_all GENERATE 'same' AS key, (DOUBLE) COUNT(ca) AS ct;
    
    ca_ch = JOIN ch_count BY key, ca_count BY key;
    
    ca_ch_div = FOREACH ca_ch GENERATE ch_count::ct / ca_count::ct;
    
    DUMP ca_ch_div;
    

    Output:

    (0.6666666666666666)

    Input:

    cat ch.txt 
    1
    2
    cat ca.txt 
    1
    2
    3
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I load a single instance of a window on php-gtk, I have a button
I load content via Ajax and then I'll have element like $('.my_content_class') and I
To load XML files with arbitrary encoding I have the following code: Encoding encoding;
I load a swf into a movie clip and have several problems with it:
I load everything on my page. At the end, I have this script. <script
// Load all the links ArtworkingDataContext dc = new ArtworkingDataContext(); var q = (from
Load mask not working, I set property loadMask: true and I still have the
I load in HTML pages via Ajax. These files have no <title><head><body> tags, etc.
load() just returns a proxy by default and database won’t be hit until the
I load data into my grid using a WCF service. When a user clicks

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.