{ "info": { "author": "Eric Herwin", "author_email": "herwineric@gmail.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Topic :: Text Editors :: Text Processing" ], "description": "# TTCPy - Text To Columns Python\n\nThis is the Python version of the original TTC package in R. The purpose of the package is to filter strings of non-frequent words and transform it to columns with the frequency of the common words.\n\nThe package is not big, the three things to remember, for the moment, is:\n\n- - -\n\n 1. The initial process of the class. Give it paramters such as minimum support between a value of 0 and 1. Remember, the lower the `minSup` is, the more time it will take to compute.\n\n```\ninit = TTC(data, minSup)\n```\nThe parameters:\n\n- `data`: Is the list of strings that you want to transform.\n- `minSup`: If the frequency of the word is below this value, then it is filtered out. A value between 0 and 1.\n\n- - -\n\n 2. Later you can call the compute function that will compute it with the given data. The output will be a `numpy` array with the frequencies of the words.\n\n```\ninit.compute()\n```\n- - -\n\n 3. You can also call the words that is the most frequent. These words are in the same order as the output from step 2. The output will be a `numpy` array with the frequent words.\n\n```\ninit.header\n```\n\n\n\n\n\n--- Updates for package TTCPy ---\n\n\n- 19/07/2018 - Version 0.2.0\nIntroduced the `numba` module for some functions. Also took away the dependency of the module `re`.\n\n- 11/07/2018 - Version 0.1.0\nImplemented the TTC version from R to Python (TTCPy). There is not option for filtering out specific words as in the R package.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/herwineric/Portfolio", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "TTCPy", "package_url": "https://pypi.org/project/TTCPy/", "platform": "", "project_url": "https://pypi.org/project/TTCPy/", "project_urls": { "Homepage": "https://github.com/herwineric/Portfolio" }, "release_url": "https://pypi.org/project/TTCPy/0.2.0/", "requires_dist": [ "numpy", "numba" ], "requires_python": ">=3", "summary": "Make a list of strings to frequency of words", "version": "0.2.0" }, "last_serial": 4085253, "releases": { "0.2.0": [ { "comment_text": "", "digests": { "md5": "244ca06df1b68205b344024177ce6b3d", "sha256": "3b8f2337b44969dedf1c02b394d6020aeff56cab10b9a3cdb3ccf922f7b55576" }, "downloads": -1, "filename": "TTCPy-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "244ca06df1b68205b344024177ce6b3d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 3332, "upload_time": "2018-07-20T10:20:21", "url": "https://files.pythonhosted.org/packages/f1/4c/a4d77f687cddafadc4bd41424999b746df289311d23e6bd3989d7632c11f/TTCPy-0.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9747d15d09f1e52bb5b81159f3bbbbb8", "sha256": "f3733cac2cd07e6c27cabc79c3ab4ee219579f28c01fcf26c3c76a58f7b6cc07" }, "downloads": -1, "filename": "TTCPy-0.2.0.tar.gz", "has_sig": false, "md5_digest": "9747d15d09f1e52bb5b81159f3bbbbb8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 1806, "upload_time": "2018-07-20T10:20:22", "url": "https://files.pythonhosted.org/packages/c9/16/c8b820856eeb283113f1be1bbe1512e4a41268dde2efe22d0a93daa9c8c2/TTCPy-0.2.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "244ca06df1b68205b344024177ce6b3d", "sha256": "3b8f2337b44969dedf1c02b394d6020aeff56cab10b9a3cdb3ccf922f7b55576" }, "downloads": -1, "filename": "TTCPy-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "244ca06df1b68205b344024177ce6b3d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 3332, "upload_time": "2018-07-20T10:20:21", "url": "https://files.pythonhosted.org/packages/f1/4c/a4d77f687cddafadc4bd41424999b746df289311d23e6bd3989d7632c11f/TTCPy-0.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9747d15d09f1e52bb5b81159f3bbbbb8", "sha256": "f3733cac2cd07e6c27cabc79c3ab4ee219579f28c01fcf26c3c76a58f7b6cc07" }, "downloads": -1, "filename": "TTCPy-0.2.0.tar.gz", "has_sig": false, "md5_digest": "9747d15d09f1e52bb5b81159f3bbbbb8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 1806, "upload_time": "2018-07-20T10:20:22", "url": "https://files.pythonhosted.org/packages/c9/16/c8b820856eeb283113f1be1bbe1512e4a41268dde2efe22d0a93daa9c8c2/TTCPy-0.2.0.tar.gz" } ] }