Skip to main content

Package to extract interesting details about text.

Project description

textfeatureinfo

Documentation Status ci-cd codecov

Description

In Natural Language Processing, it is common for users to try and engineer their own features from a given text. It can be difficult to extract certain features from text without using additional Python tools. This python package includes functions that allows data scientists to extract information from text features which can be useful for feature engineering, or in other data science projects. Our package, textfeatureinfo, will help gather summary information from plain text such as the number of punctuations in the text, the average word lengths and the percentage of fully capitalised words which can be useful information for feature engineering. Additionally, our package can also manipulate text data by removing the stopwords for the ease of future processing steps.

Our package and functions are inspired from a lab in the course, DSCI 573 (Feature and model selection), of UBC MDS program, and are tailored based on our own experience and interest.

Function Details

  • count_punc: This function will count and return the number of punctuations within a given text.
  • avg_word_len: This function will calculate and return the average length of words within a given text.
  • perc_cap_words: This function will calculate the percentage of fully capitalised words in the text.
  • remove_stop_words: This function will find and remove the stop words in a text and will return the list of clean words.

Python Ecosystem

In the field of text feature engineering, we are cognisant that there are well established packages in the Python ecosystem - specifically nltk, SpaCy and genism. For punctuations, we are aware that the nltk.tokenize and nltk.probability: FreqDist package can be used to find the number of words and punctuations in a string. To calculate average word length, nltk.word_tokenize() is able to divide strings into lists of substrings. To count the number of fully capitalised words in a text, the above functions do provide a means to isolate these characters, but not to count them explicitly. In the case of stop words, there are several modules that identify stop words. For instance, genius.parsing.preprocessing module has the function remove_stopwords() which allows users to remove specific stop words, as listed in their docstring from a string. nltk.corpus has a module stopwords to remove stop words from the text_token list. The package SpaCy similarly has a list of stopwords stored in sp.Default.stop_words in English.

Based on our experience in our previous module, all the functions that we seek to use require several lines of code. For example, to calculate the average word length, we need to extract the punctuation, count total number of characters, then averaging out over the number of words present. As such, we seek to simplify these tasks into functions that users, including ourselves, can employ in one line of code.

Installation

$ pip install textfeatureinfo

Usage

In order to use the package please go through the following steps:

  1. Create a new conda environment:
conda create --name textfeatureinfo python=3.9 -y
  1. Activate the conda environment:
conda activate textfeatureinfo
  1. Install the package:
pip install textfeatureinfo
  1. Open Python:
python
  1. In the Python prompt type the following:
>>> from textfeatureinfo import textfeatureinfo
>>> from textfeatureinfo.textfeatureinfo import count_punc
>>> from textfeatureinfo.textfeatureinfo import avg_word_len
>>> from textfeatureinfo.textfeatureinfo import perc_cap_words
>>> from textfeatureinfo.textfeatureinfo import remove_stop_words

Now you can use the functions.

Contributing

Interested in contributing? Check out the contributing guidelines. Please note that this project is released with a Code of Conduct. By contributing to this project, you agree to abide by its terms.

License

textfeatureinfo was created by Kiran, Jacqueline, Paniz, Lynn. It is licensed under the terms of the MIT license.

Credits

textfeatureinfo was created with cookiecutter and the py-pkgs-cookiecutter template.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

textfeatureinfo-0.2.5.tar.gz (5.5 kB view details)

Uploaded Source

Built Distribution

textfeatureinfo-0.2.5-py3-none-any.whl (5.4 kB view details)

Uploaded Python 3

File details

Details for the file textfeatureinfo-0.2.5.tar.gz.

File metadata

  • Download URL: textfeatureinfo-0.2.5.tar.gz
  • Upload date:
  • Size: 5.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for textfeatureinfo-0.2.5.tar.gz
Algorithm Hash digest
SHA256 f5ff12f7160b51978e163b0dc6a87499524f12c3af2dcef1054284c20d1d1a7c
MD5 3c76db0f32d3af6e75d23eb860267106
BLAKE2b-256 4c9261fc36b59d6e9c41328f73f7b2b788e84269555bb05e2b9d48ce5ecd6f20

See more details on using hashes here.

File details

Details for the file textfeatureinfo-0.2.5-py3-none-any.whl.

File metadata

  • Download URL: textfeatureinfo-0.2.5-py3-none-any.whl
  • Upload date:
  • Size: 5.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for textfeatureinfo-0.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 b2b63dfba21d7f25e5cdaceac024f917fa9ddec0dbbd73f8e7d2adf39c1ce775
MD5 6e2fdb748d90a05b3f4e222946c634fd
BLAKE2b-256 566655f629401eab847e98cca904700bed29f0fd21e98e38c05ea228ee69ff1d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page