Find the most frequent elements

Find the most frequent elements 1.1

Find the most frequent elements 1.1 Download Summary

  • Language: Python
  • Platform: Windows / Linux / Mac OS / BSD / Solaris
  • License: Other Free / Open Source License - Python License
  • Databases: N/A
  • Downloads: 260
  • Released: Jun 7, 2007

Find the most frequent elements 1.1 Description

This script returns a sorted list of the most common to least common elements and their counts. If n is specified, return only the n most common elements.

Find the most frequent elements 1.1 Keywords

Find the most frequent elements Bookmark

Hyperlink code:
Hyperlink for Forum code:

Find the most frequent elements 1.1 Script Download Notice

Top 4 Download periodically updates information of Find the most frequent elements 1.1 script from the developer, but some information may be slightly out-of-date.

Our script download links are directly from our mirrors or publisher's website. Find the most frequent elements 1.1 torrent files or shared files from free file sharing and free upload services, including Rapidshare, MegaUpload, YouSendIt, MailBigFile, DropSend, HellShare, HotFile, FileServe, MediaMax, zUpload, MyOtherDrive, SendSpace, DepositFiles, Letitbit, LeapFile, DivShare or MediaFire, are not allowed!

Tuples with Named Elements via Spawning

Instead of requiring the named attributes list for each instantiation of the tuple, this implementation 'Spawns' a derived tuple class that is taylored to the named attributes specified. And it is this Spawned ... then used to instantiate tuples. This approach effectively separates the definition of the attribute names from the data specification. And in ...
Python

Loop over and descend into sequences

... function to iterate over a container and its elements that checks for recursive traps. The condition for descending into elements is highly configurable (a list of type() results, or a callable). ...
Python

Splicing of lists

This script splices any number of nonempty lists as one list. Each input list may be of different length.Elements of shorter lists may be recycled when the keyword argument recycle is set to True. Any error result in an empty output list.
Python

Null Object Design Pattern

This script is a sample implementation of the 'Null Object' design pattern. Roughly, the goal with Null objects is to provide an 'intelligent' replacement for the often used primitive data type None in Python ... languages. These are used for many purposes including the important case where one member of some group of otherwise similar elements is special for whatever reason. Most often this ...
Python

Implementation of sets using sorted lists

This script implements set operations using sorted lists as the underlying data structure. Advantages: - Space savings -- lists are much more compact than a dictionary based implementation. - Flexibility -- elements do not need to be hashable, only __cmp__ is required. - Fast operations depending on the underlying data patterns. - Non-overlapping sets get ...
Python