Metadata-Version: 2.1
Name: fdata
Version: 0.2.0
Summary: FDA data cleaning and dataset creation tool
Home-page: https://github.com/G-Sprouts/FDA_sae
Author: Garrett Wankel
Author-email: g.wankel.1@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Healthcare Industry
Classifier: Intended Audience :: End Users/Desktop
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Description-Content-Type: text/markdown
Requires-Dist: pandas (>=1.1)

fdata

This tool is meant for the cleaning and creation of custom tables using FDA Adverse Event Reporting System (FAERS) data.

Download whichever quarterly files (ASCII format) you wish to analyze, and utilize these functions to expedite cleaning and organization for your project!


Installation

Run the following to install:

	pip install fdata

Note: if there are empty lists initialized before the definition, the final output of the function will be attached to these built-in lists. See example below.

Usage

	import fdata as fd

	drug_file = pd.read_csv(‘DRUG20Q1.txt’,  delimiter=‘$’)
	fd.sorter(drug_file) 

		…

		“Check ‘class_dfs’, ‘missing_dfs’, ‘new_files’, ‘positives’, and ‘inds’ for output”

    class_dfs = fd.class_dfs
    missing_dfs = fd.missing_dfs

    print(class_dfs)
    print(missing_dfs)


See function documentation for further details.

