Skip to content

Commit 778d1c9

Browse files
Merge pull request #3 from ukhsa-collaboration/dev
Dev - complete functions merging to main R cmd checks were done locally
2 parents 137efe4 + 117c5f7 commit 778d1c9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+5078
-887
lines changed

.Rbuildignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
^_pkgdown\.yml$
1010
^\.github$
1111
docs
12-
dev/
12+
dev

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
.httr-oauth
55
.DS_Store
66
.quarto
7-
dev/
7+
dev/

DESCRIPTION

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: epiviz
2-
Title: data visualisation functions for epidemiological data science products
3-
Version: 0.0.0.9006
2+
Title: Data Visualisation Functions for Epidemiological Data Science Products
3+
Version: 0.1.0
44
Authors@R:
55
c(person(given="Harshana", family="Liyanage", email="harshana.liyanage@ukhsa.gov.uk", role = c("aut","cre"),
66
comment = c(ORCID = "0000-0001-9738-6349")),
@@ -12,16 +12,20 @@ Authors@R:
1212
person(given="Jordan", family="Worth", email="jordan.worth@ukhsa.gov.uk", role = c("aut")),
1313
person(given="James", family="Duke", email="james.duke@ukhsa.gov.uk", role = c("aut")),
1414
person(given="Emma", family="Parker", email="emma.k.parker@ukhsa.gov.uk", role = c("aut")))
15-
Description: The epiviz package provides a set of functions to produce frequently used static and interactive graphs in epidemiological data science products.
15+
Description: The 'epiviz' package provides a set of functions to produce frequently used static and interactive graphs in epidemiological data science products.
1616
License: MIT + file LICENSE
1717
Encoding: UTF-8
1818
Roxygen: list(markdown = TRUE)
1919
RoxygenNote: 7.3.2
2020
LazyData: true
2121
Suggests:
22-
testthat (>= 3.0.0)
22+
testthat (>= 3.0.0),
23+
mockery,
24+
withr,
25+
yarrr
2326
Config/testthat/edition: 3
2427
Imports:
28+
grDevices,
2529
assertthat,
2630
classInt,
2731
dplyr,
@@ -34,7 +38,13 @@ Imports:
3438
stringr,
3539
scales,
3640
tidyr,
37-
yarrr,
38-
lubridate
41+
lubridate,
42+
ISOweek,
43+
forcats,
44+
slider,
45+
rlang,
46+
ellmer,
47+
jsonlite,
48+
lifecycle
3949
Depends:
40-
R (>= 2.10)
50+
R (>= 4.1.0)

NAMESPACE

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
# Generated by roxygen2: do not edit by hand
22

3-
export(agesex_pyramid_grouped)
4-
export(agesex_pyramid_linelist)
3+
export(age_sex_pyramid)
54
export(col_chart)
5+
export(epi_curve)
66
export(epi_map)
77
export(line_chart)
8+
export(llm_interpret)
89
export(point_chart)
10+
import(ISOweek)
911
import(RColorBrewer)
1012
import(assertthat)
1113
import(classInt)
1214
import(dplyr)
15+
import(ellmer)
16+
import(forcats)
1317
import(ggplot2)
1418
import(grDevices)
1519
import(htmltools)
@@ -19,6 +23,13 @@ import(plotly, except = last_plot)
1923

2024
import(scales)
2125
import(sf)
26+
import(slider)
2227
import(stringr)
2328
import(tidyr)
24-
import(yarrr)
29+
importFrom(dplyr,group_by)
30+
importFrom(dplyr,summarise)
31+
importFrom(graphics,box)
32+
importFrom(jsonlite,toJSON)
33+
importFrom(lifecycle,badge)
34+
importFrom(lifecycle,signal_stage)
35+
importFrom(rlang,.data)

0 commit comments

Comments
 (0)