Metadata-Version: 2.4
Name: google_ngrams
Version: 0.2.0
Summary: Fetch and analyze Google Ngram data for specified word forms.
Author-email: David Brown <dwb2@andrew.cmu.edu>
Maintainer-email: David Brown <dwb2@andrew.cmu.edu>
License-Expression: MIT
Project-URL: Documentation, https://browndw.github.io/google_ngrams
Project-URL: Homepage, https://github.com/browndw/google_ngrams
Keywords: nlp,language
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Text Processing :: Linguistic
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: numpy>=1.22
Requires-Dist: matplotlib>=3.5
Requires-Dist: polars>=1.17
Provides-Extra: test
Requires-Dist: pytest>=7.0; extra == "test"
Requires-Dist: pytest-cov>=4.0; extra == "test"
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"
Requires-Dist: build>=1.0.0; extra == "dev"
Requires-Dist: twine>=5.0.0; extra == "dev"
Dynamic: license-file


google_ngrams
=======================================================================================================
|pypi| |pypi_downloads| |tests|

This package has functions for processing `Google’s Ngram repositories <http://storage.googleapis.com/books/ngrams/books/datasetsv2.html>`_ without having to download them locally. These repositories vary in their size, but the larger ones (like th one for the letter *s* or common bigrams) contain multiple gigabytes.

The main function uses `scan_csv from the polars <https://docs.pola.rs/api/python/dev/reference/api/polars.scan_csv.html>`_ package to reduce memory load. Still, depending on the specific word forms being searched, loading and processing the data tables can sometimes take a few minutes if they are large.

vnc
---

To analyze the returned data, the package also contains functions based on the work of Gries and Hilpert (2012) for `Variability-Based Neighbor Clustering <https://www.oxfordhandbooks.com/view/10.1093/oxfordhb/9780199922765.001.0001/oxfordhb-9780199922765-e-14>`_.

The idea is to use hierarchical clustering to aid "bottom up" periodization of language change. The python functions are built on `their original R code <http://global.oup.com/us/companion.websites/fdscontent/uscompanion/us/static/companion.websites/nevalainen/Gries-Hilpert_web_final/vnc.individual.html>`_.

Distances, therefore, are calculated in sums of standard deviations and coefficients of variation, according to their stated method.

Dendrograms are plotted using matplotlib, with custom implementations for hierarchical clustering that maintain the plotting order of the leaves according to the requirements of the method.

The package also has a custom implementation of dendrogram truncation that consolidates leaves under a specified number of time periods (or clusters) while also maintaining the leaf order to facilitate the reading and interpretation of large dendrograms.

Lightweight Implementation
--------------------------

Starting with version 0.2.0, google_ngrams uses lightweight, custom implementations for statistical computations instead of heavy dependencies like scipy and statsmodels. This design choice reduces installation overhead while maintaining full functionality for the core VNC methodology and smoothing operations.


Installation
------------

You can install the released version of google_ngrams from `PyPI <https://pypi.org/project/google_ngrams/>`_:

.. code-block:: install-google_ngrams

    pip install google-ngrams


Usage
-----

To use the google_ngrams package, import :code:`google_ngram` to fetch data and :code:`TimeSeries` for analysis.

.. code-block:: import

    from google_ngrams import google_ngram, TimeSeries 


Fetching n-gram data
^^^^^^^^^^^^^^^^^^^^

The :code:`google_ngram` function supports different varieties of English (e.g., British, American) and allows aggregation by year or decade. Word forms (even a single word form) must be formatted as a list:

The following would return counts for the word *x-ray* in US English by year:

.. code-block:: by_year

    xray_year = google_ngram(word_forms = ["x-ray"], variety = "us", by = "year")

Alternatively, the following would return counts of the combined forms *xray* and *xrays* in British English by decade:

.. code-block:: by_decade

    xray_decade = google_ngram(word_forms = ["x-ray", "x-rays"], variety = "gb", by = "decade")

The function returns a polars DataFrame with either a time interval column (either :code:`Year` or :code:`Decade`) and columns for :code:`Token`, :code:`AF` (absolute frequency) and :code:`RF` (relative frequency).

The returned DataFrame, then, can be manipulated using the polars API:

.. code-block:: filtering

    import polars as pl
    
    xray_filtered = xray_decade.filter(pl.col("Decade") >= 1900)


Analyzing time series data
^^^^^^^^^^^^^^^^^^^^^^^^^^

To analyze the data, use :code:`TimeSeries`, specifying a column of time intervals and a column of relative frequencies:

.. code-block:: time_series

    xray_ts = TimeSeries(xray_filtered, time_col="Decade", values_col="RF")
    
VNC dendrograms can then be plotted with a variety of options:

.. code-block:: dendrogram

    xray_ts.timeviz_vnc()

For additional information, consult the `documentation <https://browndw.github.io/google_ngrams/>`_.


License
-------

Code licensed under `MIT License <https://opensource.org/licenses/MIT>`_.
See `LICENSE <https://github.com/browndw/google_ngrams/blob/main/LICENSE>`_ file.

.. |pypi| image:: https://badge.fury.io/py/google_ngrams.svg
    :target: https://badge.fury.io/py/google_ngrams
    :alt: PyPI Version

.. |pypi_downloads| image:: https://img.shields.io/pypi/dm/google_ngrams
    :target: https://pypi.org/project/google_ngrams/
    :alt: Downloads from PyPI

.. |tests| image:: https://github.com/browndw/google_ngrams/actions/workflows/test.yml/badge.svg
    :target: https://github.com/browndw/google_ngrams/actions/workflows/test.yml
    :alt: Test Status
