Skip to content

Commit

Permalink
version 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
KittJonathan authored and cran-robot committed Aug 30, 2023
1 parent 5bb6b37 commit d86e170
Show file tree
Hide file tree
Showing 15 changed files with 233 additions and 236 deletions.
10 changes: 5 additions & 5 deletions DESCRIPTION
@@ -1,20 +1,20 @@
Package: datardis
Title: Data from the Doctor Who Series
Version: 0.0.3
Version: 0.0.4
Authors@R:
person("Jonathan", "Kitt", , "jonathan.kitt@protonmail.com", role = c("aut", "cre"))
Description: Explore data related to the Doctor Who TV series.
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.2.0
Imports: dplyr, magrittr
RoxygenNote: 7.2.3
Imports: dplyr
Suggests: testthat (>= 3.0.0)
Config/testthat/edition: 3
Depends: R (>= 2.10)
NeedsCompilation: no
Packaged: 2022-07-21 13:53:31 UTC; jkitt
Packaged: 2023-08-30 08:29:52 UTC; jkitt
Author: Jonathan Kitt [aut, cre]
Maintainer: Jonathan Kitt <jonathan.kitt@protonmail.com>
Repository: CRAN
Date/Publication: 2022-07-21 14:20:02 UTC
Date/Publication: 2023-08-30 09:10:10 UTC
28 changes: 14 additions & 14 deletions MD5
@@ -1,20 +1,20 @@
c3c2f7602461cade47c8d0cf9abbf0ea *DESCRIPTION
e1b72f61c95e82c8002fdfa70561703d *DESCRIPTION
3f68a3392426277e0b061480399eb77b *LICENSE
ad68064108cc065f953809138e3e873c *NAMESPACE
5dcc974b20ba6fe05b68a88a16a7929f *NEWS.md
6c34a6d05ea1a1b46249ce0a090bcfe2 *R/datasets.R
9ba1fe01f68c84c505a4261a41147a69 *NAMESPACE
c7fa56fd3fc0b8fe122ed21393fade65 *NEWS.md
ea481388616245b38994fd59ced5c29c *R/datasets.R
e104797be748997d133560e86e305a52 *README.md
f487a58b2483f44a3c61485bf59bfc5d *data/drwho_directors.rda
86bf255833b80df1e7309175fea2ad8b *data/drwho_episodes.rda
ddfc383bc8215f02b4d85bf4a8c1d395 *data/drwho_writers.rda
c8e44efd4ef694f4ce7190de7b08cb18 *data/drwho_directors.rda
19712a8690c3ec7823f52f887ebd58d4 *data/drwho_episodes.rda
d553867a2dbb2f3d6cab67305b94d7cc *data/drwho_writers.rda
00b388bd5e4323a93e138b014a1e277a *data/torchwood_directors.rda
7f5199b7674bf7ddc61255cdc68f90ae *data/torchwood_episodes.rda
5d43d2e94eacec11a6a9085f21e7e9bb *data/torchwood_writers.rda
27641e30ffe0ff094fb0489f7b2c408e *man/drwho_directors.Rd
9ed056a26eabd65c05ee10811c16e588 *man/drwho_episodes.Rd
3e8590c620e6f468b65f82b07feecd0a *man/drwho_writers.Rd
596bdccc55a2ac791b6123ee72121eea *man/torchwood_directors.Rd
a46b0b16760a524287d86a322c48b95e *man/torchwood_episodes.Rd
13b27892983765abd24fe9acfd280f77 *man/torchwood_writers.Rd
522752939238efa5759465916f98abac *man/drwho_directors.Rd
361bf5eb4a8eb15075e87d42e33b165e *man/drwho_episodes.Rd
26c2e2127fee1d5846bab68f9708d670 *man/drwho_writers.Rd
a60e74cfe505133e456f92bb73906df8 *man/torchwood_directors.Rd
61aed136ce3c85b53906af7619ca8ef0 *man/torchwood_episodes.Rd
e8f14ff89aa38d3b97d5bc118ae8070e *man/torchwood_writers.Rd
1779a2f0262ac604b75f2b9eb1aba6d5 *tests/testthat.R
c3f45445fbcdfaf06664927f8155aec0 *tests/testthat/test-episodes.R
7ae52c74fdf56a0fbca075fc52e1f85a *tests/testthat/test-episodes.R
1 change: 0 additions & 1 deletion NAMESPACE
@@ -1,4 +1,3 @@
# Generated by roxygen2: do not edit by hand

import(dplyr)
import(magrittr)
6 changes: 6 additions & 0 deletions NEWS.md
@@ -1,3 +1,9 @@
# datardis 0.0.4

* Added last Doctor Who episodes
* Replaced %>% pipe with |>
* Removed {magrittr} dependancy

# datardis 0.0.3

* Added latest Doctor Who episodes
Expand Down
27 changes: 11 additions & 16 deletions R/datasets.R
Expand Up @@ -19,13 +19,12 @@
#' }
#'
#' @import dplyr
#' @import magrittr
#'
#' @source \url{https://en.wikipedia.org/wiki/List_of_Doctor_Who_episodes_(2005-present)}
#'
#' @examples
#' library(dplyr)
#' drwho_episodes %>%
#' drwho_episodes |>
#' filter(type == "special")
"drwho_episodes"

Expand All @@ -45,9 +44,8 @@
#'
#' @examples
#' library(dplyr)
#' drwho_directors %>%
#' count(director) %>%
#' arrange(desc(n)) %>%
#' drwho_directors |>
#' count(director, sort = TRUE) |>
#' head(5)
"drwho_directors"

Expand All @@ -67,9 +65,8 @@
#'
#' @examples
#' library(dplyr)
#' drwho_writers %>%
#' count(writer) %>%
#' arrange(desc(n)) %>%
#' drwho_writers |>
#' count(writer, sort = TRUE) |>
#' head(5)
"drwho_writers"

Expand All @@ -91,13 +88,12 @@
#' }
#'
#' @import dplyr
#' @import magrittr
#'
#' @source \url{https://en.wikipedia.org/wiki/List_of_Torchwood_episodes}
#'
#' @examples
#' library(dplyr)
#' torchwood_episodes %>%
#' torchwood_episodes |>
#' filter(uk_viewers >= 5)
"torchwood_episodes"

Expand All @@ -117,9 +113,9 @@
#'
#' @examples
#' library(dplyr)
#' torchwood_directors %>%
#' count(director) %>%
#' arrange(desc(n)) %>%
#' torchwood_directors |>
#' count(director) |>
#' arrange(desc(n)) |>
#' head(5)
"torchwood_directors"

Expand All @@ -139,8 +135,7 @@
#'
#' @examples
#' library(dplyr)
#' torchwood_writers %>%
#' count(writer) %>%
#' arrange(desc(n)) %>%
#' torchwood_writers |>
#' count(writer, sort = TRUE) |>
#' head(5)
"torchwood_writers"
Binary file modified data/drwho_directors.rda
Binary file not shown.
Binary file modified data/drwho_episodes.rda
Binary file not shown.
Binary file modified data/drwho_writers.rda
Binary file not shown.
59 changes: 29 additions & 30 deletions man/drwho_directors.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

76 changes: 38 additions & 38 deletions man/drwho_episodes.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

59 changes: 29 additions & 30 deletions man/drwho_writers.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d86e170

Please sign in to comment.