Skip to content

Commit

Permalink
Prepare for resubmission (#126)
Browse files Browse the repository at this point in the history
* Fix typos in urls

* Fix codecov link

* Declare global variables

* Kick version
  • Loading branch information
PabRod authored Nov 5, 2024
1 parent 1c18358 commit bea2e2d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]", role = c("aut", "cre")),
person("Barbara", "Vreede", email = "[email protected]", role = "aut"),
Expand Down
6 changes: 6 additions & 0 deletions R/globals.R
Original file line number Diff line number Diff line change
@@ -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", ":="))
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

<!-- badges: start -->
[![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)
<!-- badges: end -->
Expand Down
2 changes: 1 addition & 1 deletion vignettes/workflows.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down

0 comments on commit bea2e2d

Please sign in to comment.