-
Notifications
You must be signed in to change notification settings - Fork 2
/
README.Rmd
52 lines (39 loc) · 1.39 KB
/
README.Rmd
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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# rticulate: Ultrasound Tongue Imaging in R <img src='man/figures/logo.png' style="float: right;" height="120" />
<!-- badges: start -->
`r badger::badge_cran_release("rticulate", "blue")`
`r badger::badge_cran_checks("rticulate")`
`r badger::badge_github_actions()`
`r badger::badge_devel(color = "orange")`
`r badger::badge_doi(doi = "10.5281/zenodo.1469038", color = "blue")`
<!-- badges: end -->
This is the repository of the R package `rticulate`. This package provides two functions for importing UTI data from Articulate Assistant Advanced and plotting UTI data from any source.
## Installation
The package is on CRAN, so you can install it from there with `install.packages("rticulate")`.
If you like living on edge, install a polished pre-release with:
```{r install-pre, eval=FALSE}
remotes::install_github(
"stefanocoretta/rticulate",
build_vignettes = TRUE
)
```
Or the development version with:
```{r install-dev, eval=FALSE}
remotes::install_github(
"stefanocoretta/rticulate@devel",
build_vignettes = TRUE
)
```
## Usage
To learn the basic use of the package, run `vignette("tongue-imaging", package = "rticulate")` after the installation.