The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
This package is a (naive) tokeniser of phonetic transcriptions in the International Phonetic Alphabet (IPA).
With phonetisr, you can parse texts and word lists transcribed in IPA and tokenise them into phones so that you can perform quantitative analyses.
You can install the development version from GitHub with:
# install.packages("remotes")
::install_github("stefanocoretta/phonetisr") remotes
library(phonetisr)
# IPA strings to be tokenised
<- c("pʰãkʰ", "tʰum̥", "ɛkʰɯ")
ipa
# List of character sequences to be considered single phones
<- c("pʰ", "tʰ", "kʰ", "ã", "m̥")
ph
# Tokenise strings
phonetise(ipa, multi = ph)
#> [[1]]
#> [1] "pʰ" "ã" "kʰ"
#>
#> [[2]]
#> [1] "tʰ" "u" "m̥"
#>
#> [[3]]
#> [1] "ɛ" "kʰ" "ɯ"
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.