|
1 |
| -# Getting started with healthcare.ai |
| 1 | +# Getting Started With Healthcare.ai |
2 | 2 |
|
3 |
| -## What can you do with these tools? |
| 3 | +## What Can You Do With These Tools? |
4 | 4 |
|
5 | 5 | - Fill in missing data via imputation
|
6 | 6 | - Train and compare models based on your data
|
@@ -67,38 +67,17 @@ To verify that *healthcareai* installed correctly:
|
67 | 67 |
|
68 | 68 | If you did get an error, or run into other installation issues, please [let us know](http://healthcare.ai/contact.html) or better yet post on [Stack Overflow](http://stackoverflow.com/questions/tagged/healthcare-ai) (with the healthcare-ai tag) so we can help others along this process.
|
69 | 69 |
|
70 |
| -## Getting started |
71 |
| - |
72 |
| -- Read through the docs on this site |
73 |
| -- Starting with |
74 |
| -- Modify the queries and parameters to match your data |
75 |
| -- If you plan on deploying a model to a MSSQL server (ie, pushing predictions to SQL Server), run this in SSMS beforehand: |
76 |
| - |
77 |
| -```sql |
78 |
| -CREATE TABLE [SAM].[dbo].[HCAIPredictionClassificationBASE] ( |
79 |
| - [BindingID] [int] , |
80 |
| - [BindingNM] [varchar] (255), |
81 |
| - [LastLoadDTS] [datetime2] (7), |
82 |
| - [PatientEncounterID] [decimal] (38, 0), --< change to your grain col |
83 |
| - [PredictedProbNBR] [decimal] (38, 2), |
84 |
| - [Factor1TXT] [varchar] (255), |
85 |
| - [Factor2TXT] [varchar] (255), |
86 |
| - [Factor3TXT] [varchar] (255)) |
87 |
| - |
88 |
| -CREATE TABLE [SAM].[dbo].[HCAIPredictionRegressionBASE] ( |
89 |
| - [BindingID] [int], |
90 |
| - [BindingNM] [varchar] (255), |
91 |
| - [LastLoadDTS] [datetime2] (7), |
92 |
| - [PatientEncounterID] [decimal] (38, 0), --< change to your grain col |
93 |
| - [PredictedValueNBR] [decimal] (38, 2), |
94 |
| - [Factor1TXT] [varchar] (255), |
95 |
| - [Factor2TXT] [varchar] (255), |
96 |
| - [Factor3TXT] [varchar] (255)) |
97 |
| -``` |
98 |
| - |
99 |
| -- Note that there are examples that write to other databases (MySQL, SQLite) |
100 |
| - |
101 |
| -## For Issues |
| 70 | +## Getting Started |
| 71 | + |
| 72 | +1. Read through the docs on this site. |
| 73 | +2. Start with either `example_regression_1.py` or `example_classification_1.py` |
| 74 | +3. Modify the queries and parameters to match your data. |
| 75 | +4. Decide on what kind of prediction output you want. |
| 76 | +5. Set up your database tables to match the output schema. See the [prediction types](prediction_types.md) document for details. |
| 77 | + - If you are working in a Health Catalyst EDW ecosystem (primarily MSSQL), please see the [Catalyst EDW Instructions](catalyst_edw_instructions) for SAM setup. |
| 78 | + - Please see the [databases docs](databases.md) for details about writing to different databases (MSSQL, MySQL, SQLite, CSV) |
| 79 | + |
| 80 | +## Where to Get Help |
102 | 81 |
|
103 | 82 | - Double check that the code follows the examples in these documents.
|
104 | 83 | - If you're still seeing an error, file an issue on [Stack Overflow](http://stackoverflow.com/) using the healthcare-ai tag. Please provide
|
|
0 commit comments