wordchoice: Get word counts and distributions

[ bsd3, library, program, web ] [ Propose Tags ]

A command line tool to compute the word distribution from various types of document, converting to text with pandoc.


[Skip to Readme]

Modules

[Last Documentation]

  • Data
    • Text
      • Data.Text.WordCount
        • Data.Text.WordCount.Exec

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.0.1, 0.1.0.2, 0.1.0.3, 0.1.0.4, 0.1.0.5, 0.1.1.0, 0.1.1.1, 0.1.2.0, 0.1.2.1, 0.1.2.2, 0.1.2.3, 0.1.2.4, 0.1.2.5, 0.1.2.6, 0.1.2.7, 0.1.2.8, 0.1.2.9
Dependencies base (>=4.7 && <5), bytestring, Chart, Chart-diagrams, containers, lens, optparse-applicative, pandoc (<2.0), system-filepath, text, wordchoice [details]
License BSD-3-Clause
Copyright 2017 Author name here
Author Author name here
Maintainer example@example.com
Revised Revision 1 made by vmchale at 2018-03-30T19:32:59Z
Category Web
Home page https://github.com/githubuser/wordchoice#readme
Source repo head: git clone https://github.com/githubuser/wordchoice
Uploaded by vmchale at 2017-04-26T04:29:27Z
Distributions NixOS:0.1.2.9
Executables wrd
Downloads 9287 total (51 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2017-04-26 [all 3 reports]

Readme for wordchoice-0.1.0.1

[back to package description]

Wordchoice Command-Line Tool

Build Status

Usage

The following will print the 10 most used words.

 $ wordchoice test/ulysses.txt -n10 -o distribution.html
 13609: the
 8134: of
 6550: and
 5841: a
 4788: to
 4619: in
 3034: his
 2712: he
 2431: I
 2391: with

To print the 10 most used words and write a bar graph:

 $ wordchoice test/ulysses.txt -n10 -o distribution.html

Installation

Manual

Download the binaries from the release page for 64-bit Linux, ARM Linux, and 64-bit Windows.

Nix

Install nix, then type:

nix-env -i wordchoice

to download the package for Mac or Linux.

Stack

Install stack, following instructions here. Then:

 $ stack install wordchoice

You might need to do a stack setup first.

Build

This repo should build with cabal, stack, and nix-build.