All Projects → HealthCatalyst → Healthcareai R

HealthCatalyst / Healthcareai R

Licence: other
R tools for healthcare machine learning

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Healthcareai R

Erpnext
Free and Open Source Enterprise Resource Planning (ERP)
Stars: ✭ 10,220 (+5010%)
Mutual labels:  healthcare
Sytora
A sophisticated smart symptom search engine
Stars: ✭ 111 (-44.5%)
Mutual labels:  healthcare
Simple Android
An Android app for recording hypertension-related data.
Stars: ✭ 159 (-20.5%)
Mutual labels:  healthcare
Fhir.resources
FHIR Resources https://www.hl7.org/fhir/resourcelist.html
Stars: ✭ 73 (-63.5%)
Mutual labels:  healthcare
Mne Cpp
MNE-CPP: A Framework for Electrophysiology
Stars: ✭ 104 (-48%)
Mutual labels:  healthcare
Openemr
The most popular open source electronic health records and medical practice management solution.
Stars: ✭ 1,762 (+781%)
Mutual labels:  healthcare
Hcc Python
An implementation of the HCC Risk Adjustment Algorithm in Python
Stars: ✭ 47 (-76.5%)
Mutual labels:  healthcare
Iciar2018
Our solution for ICIAR 2018 Grand Challenge
Stars: ✭ 163 (-18.5%)
Mutual labels:  healthcare
All In One
👔 Health care application for reminding health-todo lists and making healthy habits every day.
Stars: ✭ 109 (-45.5%)
Mutual labels:  healthcare
Survival Analysis Using Deep Learning
This repository contains morden baysian statistics and deep learning based research articles , software for survival analysis
Stars: ✭ 139 (-30.5%)
Mutual labels:  healthcare
Hapi Fhir
🔥 HAPI FHIR - Java API for HL7 FHIR Clients and Servers
Stars: ✭ 1,197 (+498.5%)
Mutual labels:  healthcare
Dicom Server
OSS Implementation of DICOMweb standard
Stars: ✭ 101 (-49.5%)
Mutual labels:  healthcare
Fhir Works On Aws Deployment
A serverless implementation of the FHIR standard that enables users to focus more on their business needs/uniqueness rather than the FHIR specification
Stars: ✭ 131 (-34.5%)
Mutual labels:  healthcare
Mri Analysis Pytorch
MRI analysis using PyTorch and MedicalTorch
Stars: ✭ 55 (-72.5%)
Mutual labels:  healthcare
Eicu Code
Code and website related to the eICU Collaborative Research Database
Stars: ✭ 159 (-20.5%)
Mutual labels:  healthcare
Keera Posture
Alleviate your back pain using Haskell and a webcam
Stars: ✭ 48 (-76%)
Mutual labels:  healthcare
2019 Ncov
Use Google Maps Timeline data to compare with COVID-19 patient history location.
Stars: ✭ 116 (-42%)
Mutual labels:  healthcare
Computationalhealthcare
A platform for analysis & development of machine learning models using large de-identified healthcare datasets.
Stars: ✭ 180 (-10%)
Mutual labels:  healthcare
Bhima
A hospital information management application for rural Congolese hospitals
Stars: ✭ 160 (-20%)
Mutual labels:  healthcare
Medcat
Medical Concept Annotation Tool
Stars: ✭ 133 (-33.5%)
Mutual labels:  healthcare

healthcareai

Travis-CI Build Status codecov badge CRAN_Status_Badge CRAN downloads badge License: MIT DOI

Overview

The aim of healthcareai is to make machine learning in healthcare as easy as possible. It does that by providing functions to:

  • Develop customized, reliable, high-performance machine learning models with minimal code
  • Easily make and evaluate predictions and push them to a database
  • Understand how a model makes its predictions
  • Make data cleaning, manipulation, imputation, and visualization as simple as possible

Usage

healthcareai can take you from messy data to an optimized model in one line of code:

models <- machine_learn(pima_diabetes, patient_id, outcome = diabetes)
models
# > Algorithms Trained: Random Forest, eXtreme Gradient Boosting, and glmnet
# > Model Name: diabetes
# > Target: diabetes
# > Class: Classification
# > Performance Metric: AUROC
# > Number of Observations: 768
# > Number of Features: 12
# > Models Trained: 2018-09-01 18:19:44 
# > 
# > Models tuned via 5-fold cross validation over 10 combinations of hyperparameter values.
# > Best model: Random Forest
# > AUPR = 0.71, AUROC = 0.84
# > Optimal hyperparameter values:
# >   mtry = 2
# >   splitrule = extratrees
# >   min.node.size = 12

Make predictions and examine predictive performance:

predictions <- predict(models, outcome_groups = TRUE)
plot(predictions)

Learn More

For details on what’s happening under the hood and for options to customize data preparation and model training, see Getting Started with healthcareai as well as the helpfiles for individual functions such as ?machine_learn, ?predict.model_list, and ?explore.

Documentation of all functions as well as vignettes on various uses of the package are available at the package website: https://docs.healthcare.ai/.

Also, be sure to read our blog and watch our broadcasts to learn more about what’s new in healthcare machine learning and how we are using this toolkit to put machine learning to work in real healthcare systems.

Get Involved

We have a Slack community that is a great place to introduce yourself, share what you’re doing with the package, ask questions, and troubleshoot your code.

Contributing

If you are interested in contributing the package (great!), please read the contributing guide, and look for issues with the “help wanted” tag. Feel free to tackle any issue that interests you; those are a few issues that we feel would make a good place to start.

Feedback

Your feedback is hugely appreciated. It is makes the package work well and helps us make it more useful to the community. Both feature requests and bug reports should be submitted as Github issues.

Bug reports should be filed with a minimal reproducable example. The reprex package is extraordinarily helpful for this. Please also include the output of sessionInfo() or better yet, devtools::session_info().

Legacy

Version 1 of healthcareai has been retired. You can continue to use it, but its compatibility with changes in the R ecosystem are not guaranteed. You should always be able to install it from github with: install.packages("remotes"); remotes::install_github("HealthCatalyst/[email protected]").

For an example of how to adapt v1 models to the v2 API, check out the Transitioning vignettes.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].