Skip to main content

Package to extract interesting details about text.

Project description

textfeatureinfo

Documentation Status ci-cd

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 (Not available yet)

$ pip install textfeatureinfo

Usage

In order to install the package at this point, please go through the following steps at your terminal:

  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 via Github:
pip install git+https://github.com/UBC-MDS/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.0.tar.gz (5.5 kB view details)

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

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

File metadata

  • Download URL: textfeatureinfo-0.2.0.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.0.tar.gz
Algorithm Hash digest
SHA256 86d8b7fcd71ea865ccec68e8e0fa1be00623606677f7fbfde3ebc5e258cb0783
MD5 d9550223b3c3c8ceaadf03d9f8134be1
BLAKE2b-256 501e300284c888424706f77d8a692579e12f712c925d25488df8f4bf3a168ae8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: textfeatureinfo-0.2.0-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.0-py3-none-any.whl
Algorithm Hash digest
SHA256 969bbab23c1cfee60a3c2531f7a2afca3c349f81e92e85ce23ad07d287071dda
MD5 b8cd0148a7fa2228bbc07365768a036b
BLAKE2b-256 f42d7579826d02191985a291e83bc4f55d9125137d1d0b703cd4a3e7259b7232

See more details on using hashes here.

Supported by

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