-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathREADME.Rmd
More file actions
123 lines (82 loc) · 2.88 KB
/
README.Rmd
File metadata and controls
123 lines (82 loc) · 2.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
---
output: github_document
editor_options:
chunk_output_type: console
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
echo = TRUE,
message = TRUE,
warning = FALSE,
error = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
library(tibble)
```
# <b>provider</b> <a href="https://andrewallenbruce.github.io/provider/"><img src="man/figures/logo.svg" align="right" height="139" alt="provider website" /></a>
<br>
> Tidy Healthcare Provider API Interface
<br>
<!-- badges: start -->

[](https://choosealicense.com/licenses/mit/)
[](https://github.com/andrewallenbruce/provider)
[](https://github.com/andrewallenbruce/provider/commits/main)
[](https://app.codecov.io/gh/andrewallenbruce/provider?branch=main)
[](https://www.codefactor.io/repository/github/andrewallenbruce/provider)
<!-- badges: end -->
## :package: Installation
You can install `provider` from [GitHub](https://github.com/) with:
```r
# install.packages("pak")
pak::pak("andrewallenbruce/provider")
```
## :beginner: Usage
```{r echo=TRUE, message=TRUE, warning=FALSE}
library(provider)
```
#### Facility Affiliations
```{r}
affiliations(facility_ccn = 370781)
```
#### National Provider Catalog
```{r}
clinicians(npi = 1932365699)
```
#### Hospitals
```{r}
hospitals(npi = 1720098791)
```
#### CLIA Laboratories
```{r}
clia(ccn = "11D0265516")
```
#### Opt-Out Affidavits
```{r}
opt_out(npi = 1043522824)
```
#### Ordering & Referral
```{r}
order_refer(npi = 1043522824)
```
#### Provider Enrollment
```{r}
providers(enid = "O20040610001257")
```
#### Reassignments
```{r}
reassignments(org_pac = 7719037548)
```
#### Revocations
```{r}
revocations(state = "GA")
```
------------------------------------------------------------------------------
## :balance_scale: Code of Conduct
Please note that the `provider` project is released with a [Contributor Code of Conduct](https://andrewallenbruce.github.io/provider/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.
## :classical_building: Governance
This project is primarily maintained by [Andrew Bruce](https://github.com/andrewallenbruce). Other authors may occasionally assist with some of these duties.