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 7865517
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T00:06:45+00:00 2026-06-03T00:06:45+00:00

I build Corpus = collections.namedtuple(‘Corpus’, ‘a, b, c, d’) Read all the files in

  • 0

I build

Corpus = collections.namedtuple('Corpus', 'a, b, c, d')

Read all the files in the corpus and save the data,

def compute(counters, tokens, catergory)
    ...
    counters.stats[tokens][catergory] = Corpus(a, b, c, d)

Both tokens and catergory are collection.Counter(). After reading all the information in a, b, c, d in counters.stats, I do some calculation in another function and get ‘e’ for each token. How can I add e into counters.stats in this function?

  • 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-06-03T00:06:46+00:00Added an answer on June 3, 2026 at 12:06 am

    If you are talking about adding ‘e’ to the Corpus namedtuple of counter.stats[tokens][category]then that is not possible as namedtuples are immutable. You may have to create a new namedtuple with the a b c d e values and assign it to counter.stats[tokens][category]. The code below is an example:

    >>> from collections import namedtuple
    >>> two_d = namedtuple('twoDPoint', ['x', 'y'])
    >>> x = two_d(1, 2)
    >>> x = two_d(1, 2)
    >>> three_d = namedtuple('threeDPoint', ['x', 'y', 'z'])
    >>> x
    twoDPoint(x=1, y=2)
    >>> y = three_d(*x, z=3)
    >>> y
    threeDPoint(x=1, y=2, z=3)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

build the counter: class Counters: def __init__(self,cats) self.form = collections.defaultdict(collections.Counter) I get the length
I build a website, that: reads data from a website by HttpWebRequest Sort all
Using PyClips, I'm trying to build rules in Clips that dynamically retrieve data from
I build a script that combines all css on a page together to use
I need to perform my script (a search) on all the files of a
%build # Build all apps { for app in * ; do pushd $app
i build that class using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI.WebControls;
Thinking about a Windows-hosted build process that will periodically drop files to disk to
My build server suddenly stopped working. After I examined log files I found monster
We build complicated console-based tools that produce a lot of commentary on the console.

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.