{ "info": { "author": "Mindstrong Health Data Science", "author_email": "datascience@mindstronghealth.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Affero General Public License v3", "Programming Language :: Python :: 3" ], "description": "=================================================\nMindstrong Health Digital Biomarker Model Fitting\n=================================================\n\nThis package uses Supervised Kernel Principal Components Analysis with cross validation to fit digital biomarker data to target measurements. The software was written by members of the Mindstrong Health Data Science team:\n\n * Paul Dagum, MD, PhD\n * Greg Ryslik, PhD, FCAS, MAAA\n * Bob Dougherty, PhD\n * Patrick Staples, PhD\n\nPlease contact us at `datascience@mindstronghealth.com `_.\n\nNOTE: If you use this software in your work, please cite the following `paper `_:\n\n Dagum, P. (2018) Digital biomarkers of cognitive function. npj Digital Medicine, issue 1, article 10. DOI: 10.1038/s41746-018-0018-4.\n\nInstallation\n------------\n\nThe easiest way to install the package is via ``easy_install`` or ``pip``::\n\n $ pip install mindstrong_biomarker_modelfit\n\nThis should also take care of the dependencies (numpy, scipy, pandas, and sklearn).\n\nUsage\n-----\n\nSimulated digital biomarker and target measure data are included with the project. To fit a model to these example data::\n\n import numpy as np\n import pandas as pd\n import os\n from mindstrong import mindstrong_modelfit as mindstrong\n\n target_file = mindstrong.get_example_data('example_targets.csv')\n feature_file = mindstrong.get_example_data('example_features.csv')\n target_colname = 'target1'\n\n # Load target data\n target_df = pd.read_csv(target_file)\n target_df.set_index('device_id', inplace=True)\n\n # Load Feature Data\n feature_df = pd.read_csv(feature_file).set_index(['device_id', 'targetDOY'])\n\n # Cross Validated supervised kernel PCA model-fitting\n cvdf, best_model = mindstrong.calculateCrossValidatedCorrelation(target_df,\n feature_df,\n target_colname,\n fold_type='n',\n n_folds=5,\n kernel_training='linear',\n kernel_training_param=1,\n kernel_target='linear',\n kernel_target_param=1,\n regularization=0.1)\n\n # Print the final results\n print(best_model)\n\n\n\nCopyright & License\n-------------------\n\nCopyright (c) 2018, `Mindstrong Health `_. GNU Affero General Public License.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://mindstronghealth.com", "keywords": "digital biomarkers,supervised kernel PCA,machine learning,cross-validation", "license": "", "maintainer": "", "maintainer_email": "", "name": "mindstrong", "package_url": "https://pypi.org/project/mindstrong/", "platform": "", "project_url": "https://pypi.org/project/mindstrong/", "project_urls": { "Homepage": "http://mindstronghealth.com" }, "release_url": "https://pypi.org/project/mindstrong/1.0/", "requires_dist": null, "requires_python": "", "summary": "Mindstrong Digital Biomarker Model Fitting", "version": "1.0" }, "last_serial": 4201779, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "01f7769f58e646598e6a153fe4cdfe7a", "sha256": "09abb3d605bde6875c3dabffc07effeac01b8c7c10860ef39fe62d7d23da32b3" }, "downloads": -1, "filename": "mindstrong-1.0.tar.gz", "has_sig": false, "md5_digest": "01f7769f58e646598e6a153fe4cdfe7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 883940, "upload_time": "2018-04-23T18:18:45", "url": "https://files.pythonhosted.org/packages/11/90/2a6171749e2c2be9c26d505b04c629c8a145d4c6445431eb5e23bc8fb03c/mindstrong-1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "01f7769f58e646598e6a153fe4cdfe7a", "sha256": "09abb3d605bde6875c3dabffc07effeac01b8c7c10860ef39fe62d7d23da32b3" }, "downloads": -1, "filename": "mindstrong-1.0.tar.gz", "has_sig": false, "md5_digest": "01f7769f58e646598e6a153fe4cdfe7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 883940, "upload_time": "2018-04-23T18:18:45", "url": "https://files.pythonhosted.org/packages/11/90/2a6171749e2c2be9c26d505b04c629c8a145d4c6445431eb5e23bc8fb03c/mindstrong-1.0.tar.gz" } ] }