diff --git a/DESCRIPTION b/DESCRIPTION index 9e35f82..d009d4a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: talkr Type: Package Title: Plotting Conversation Data -Version: 0.1.1 +Version: 0.1.2 Authors@R: c( person("Mark", "Dingemanse", email = "mark.dingemanse@ru.nl", role = c("aut", "cre")), person("Barbara", "Vreede", email = "b.vreede@gmail.com", role = "aut"), diff --git a/R/globals.R b/R/globals.R new file mode 100644 index 0000000..cb73e0f --- /dev/null +++ b/R/globals.R @@ -0,0 +1,6 @@ +# Declare global variables +# +# This avoids notes during check +# Somehow surprisingly, this is CRAN's recommendation: +# https://stackoverflow.com/a/12429344 +globalVariables(c(".data", ":=")) diff --git a/README.md b/README.md index bc1454c..c52d482 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,8 @@ [![CRAN status](https://www.r-pkg.org/badges/version/talkr)](https://cran.r-project.org/package=talkr) -[![github license badge](https://img.shields.io/github/license/elpaco-escience/talkr)](git@github.com:elpaco-escience/talkr) -[![R-CMD-check](https://github.com/elpaco-escience/talkr/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/elpaco-escience/talkr/actions/workflows/R-CMD-check.yaml) [![codecov](https://codecov.io/github/elpaco-escience/talkr/graph/badge.svg?token=MTA2S1LLGH)](https://codecov.io/github/elpaco-escience/talkr) +[![github license badge](https://img.shields.io/github/license/elpaco-escience/talkr)](https://github.com/elpaco-escience/talkr) +[![R-CMD-check](https://github.com/elpaco-escience/talkr/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/elpaco-escience/talkr/actions/workflows/R-CMD-check.yaml) [![codecov](https://codecov.io/github/elpaco-escience/talkr/graph/badge.svg?token=MTA2S1LLGH)](https://app.codecov.io/github/elpaco-escience/talkr) [![documentation badge](https://img.shields.io/badge/pkgdown-documentation-khaki)](https://elpaco-escience.github.io/talkr/) [![lifecycle](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://lifecycle.r-lib.org/articles/stages.html#maturing) diff --git a/vignettes/workflows.Rmd b/vignettes/workflows.Rmd index 9fdc22a..994949a 100644 --- a/vignettes/workflows.Rmd +++ b/vignettes/workflows.Rmd @@ -26,7 +26,7 @@ library(talkr) ## Loading some data -We will be using the IFADV corpus as example data for the workflow of `talkr`. This is a corpus consisting of 20 dyadic conversations in Dutch, published by the Nederlandse Taalunie in 2007 ([source](https://wwww.fon.hum.uva.nl/IFA-SpokenLanguageCorpora/IFADVcorpus/)) +We will be using the IFADV corpus as example data for the workflow of `talkr`. This is a corpus consisting of 20 dyadic conversations in Dutch, published by the Nederlandse Taalunie in 2007 ([source](https://www.fon.hum.uva.nl/IFA-SpokenLanguageCorpora/IFADVcorpus/)) The snippet below initializes the talkr dataset using the ifadv data. For more information about the IFADV dataset, see the [repository link](https://github.com/elpaco-escience/ifadv).