actverse
🏃♀️ A Tidyverse-Style Toolbox for Actigraphy Data Analysis
Science Score: 57.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 3 DOI reference(s) in README -
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (18.4%) to scientific vocabulary
Keywords
Repository
🏃♀️ A Tidyverse-Style Toolbox for Actigraphy Data Analysis
Basic Info
- Host: GitHub
- Owner: danielvartan
- License: other
- Language: R
- Default Branch: main
- Homepage: https://danielvartan.github.io/actverse/
- Size: 11.6 MB
Statistics
- Stars: 11
- Watchers: 3
- Forks: 0
- Open Issues: 17
- Releases: 1
Topics
Metadata Files
README.md
actverse 
Overview
actverse is an R package that offers a comprehensive toolkit for
processing, analyzing, and visualizing
actigraphy data. It is
designed to support sleep and chronobiology researchers by streamlining
workflows and enhancing reproducibility in actigraphy research.
The package is built on tidyverse principles and integrates seamlessly with the tidyverse ecosystem, ensuring a consistent and user-friendly experience for data manipulation and analysis.
If you find this project useful, please consider giving it a star!
Installation
You can install actverse using the
remotes package:
r
remotes::install_github("danielvartan/actverse")
Usage
The R ecosystem offers a wide
variety of time series
standards, and selecting the right one was an important decision in
developing actverse. A consistent standard for time objects is
essential, as time can be represented in many
ways and may be based on different
numerical systems. For packages that follow tidyverse
principles, we
believe the tsibble
package provides the best time series standard. As its name suggests,
tsibble extends the tidyverse
tibble object for time series data.
Most actverse functions require your data to be in the
tsibble format. Converting
your data is straightforward and can significantly improve your
experience working with time series in R. Please refer to the
tsibble documentation for
guidance on adapting your data.
Read/Write
read_acttrust(): Read, tidy, and validate an ActTrust file.write_acttrust(): Write atsibbleto a readable ActTrust file.
Example:
r
file <- get_from_zenodo(
doi = "10.5281/zenodo.4898822",
dir = tempdir(),
file = "processed.txt"
)
r
data <- file |> read_acttrust(tz = "America/Sao_Paulo")
``` r library(dplyr)
data |> glimpse()
> Rows: 51,806
> Columns: 17
> $ timestamp 2021-04-24 04:14:00, 2021-04-24 04:15:00, 202…
> $ pim 7815, 2661, 3402, 4580, 2624, 3929, 5812, 3182…
> $ tat 608, 160, 243, 317, 255, 246, 369, 270, 373, 1…
> $ zcm 228, 64, 80, 125, 33, 105, 171, 54, 189, 64, 6…
> $ orientation 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0…
> $ wrist_temperature 26.87, 27.18, 27.68, 27.86, 28.04, 28.13, 28.2…
> $ external_temperature 24.62, 25.06, 25.50, 25.75, 25.94, 26.06, 26.3…
> $ light 3.58, 5.23, 3.93, 4.14, 3.16, 3.63, 11.53, 2.4…
> $ ambient_light 1.45, 2.12, 1.59, 1.68, 1.28, 1.47, 4.67, 0.97…
> $ red_light 0.57, 0.86, 0.64, 0.67, 0.51, 0.56, 3.22, 0.37…
> $ green_light 0.66, 0.95, 0.71, 0.75, 0.57, 0.68, 3.49, 0.44…
> $ blue_light 0.24, 0.36, 0.26, 0.28, 0.21, 0.30, 1.48, 0.20…
> $ ir_light 0.17, 0.25, 0.20, 0.20, 0.16, 0.18, 1.00, 0.13…
> $ uva_light 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0…
> $ uvb_light 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0…
> $ event 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0…
> $ state 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0…
```
Sleep Statistics
sri(): Compute Phillips et al. Sleep Regularity Index (SRI).state_prop(): Compute the proportion of time spent in a specific state (e.g., Sleeping, Awake).
Example:
Compare the results with the actogram plot shown in the following sections.
``` r sri_data <- data |> sri()
sri_data
> # A tsibble: 1,440 x 5 [1m]
> time state previous_state agreement sri
>
> 1 00'00" 77.1
> 2 01'00" 77.1
> 3 02'00" 77.1
> 4 03'00" 77.1
> 5 04'00" 77.1
> 6 05'00" 77.1
> # ℹ 1,434 more rows
```
``` r library(rutils) # github.com/danielvartan/rutils
sridata |> rutils:::statssummary("sri", threshold = NULL) |> print(n = Inf)
> # A tibble: 15 × 2
> name value
>
> 1 n 1440
> 2 nrmna 1440
> 3 n_na 0
> 4 mean 58.7795701029482
> 5 var 785.141504008496
> 6 sd 28.0203765857723
> 7 min -25
> 8 q_1 37.1428571428571
> 9 median 63.6363636363637
> 10 q_3 86.6666666666667
> 11 max 100
> 12 iqr 49.5238095238095
> 13 range 125
> 14 skewness -0.401815749365758
> 15 kurtosis 2.10073487543524
```
``` r library(ggplot2) library(scales)
sridata |> ggplot(ggplot2::aes(x = time, y = sri)) + geomsmooth(color = "#FC2913") + labs( x = "Time of day (Hour)", y = "Sleep Regularity Index (SRI)" ) + scalextime( breaks = breakswidth("6 hours"), labels = labeltime("%-H") # Use "%#H" for Windows ) + scaleycontinuous(limits = c(0, NA)) + actverse:::getactversetheme() ```

Period Functions
periodogram(): Compute Sokolove & Bushell’s $\chi^{2}$ periodogram.spectrogram(): Create a spectrogram plot based on Sokolove & Bushell’s $\chi^{2}$ periodogram.
Example:
r
data |> periodogram("pim")

r
data |> spectrogram("pim")

Data Visualization
We strongly recommend using the ragg
package as your backend graphics device for complex data visualizations.
It is faster and produces higher quality images than R default graphics
device.
actogram(): Create an actogram plot from actigraphy data.
r
data |>
actogram(
col = "pim",
days = -1,
latitude = -23.55065,
longitude = -46.63338,
double_plot = TRUE
)

Data Interpolation
na_approx()na_locf()na_overall_mean()na_overall_median()na_overall_mode()na_spline()na_weekly_mean()na_zero()na_plot(): Interpolate missing values in a numeric vector.
Example:
``` r x <- c(NA, 1, 5, 10, NA, 5, 10, 1, NA, 10, 1, 5, NA, NA) index <- seq(as.Date("2020-01-01"), as.Date("2020-01-14"), by = "day")
naapprox(x, index, fillna_tips = TRUE)
> [1] 1.0 1.0 5.0 10.0 7.5 5.0 10.0 1.0 5.5 10.0 1.0 5.0 5.0 5.0
```
r
na_plot(x, index, na_approx(x, index, fill_na_tips = TRUE))

API Clients
get_from_zenodo(): Get data from a Zenodo record.get_sun_stats(): Get sun related statistics from different APIs.
Example:
``` r library(rutils) # github.com/danielvartan/rutils
getsunstats( latitude = -23.5489, longitude = -46.6388, tz = "America/SaoPaulo" ) |> rutils:::listas_tibble() |> print(n = Inf)
> # A tibble: 18 × 2
> name value
>
> 1 date 2025-06-05
> 2 latitude -23.5489
> 3 longitude -46.6388
> 4 tz America/Sao_Paulo
> 5 sunrise_start 06:44:16
> 6 sunrise_end 06:46:50
> 7 goldenhourend 07:17:28
> 8 solar_noon 12:06:31
> 9 goldenhourstart 16:55:34
> 10 sunset_start 17:26:13
> 11 sunset_end 17:28:46
> 12 dusk 17:53:17
> 13 nautical_dusk 18:21:18
> 14 night_start 18:48:54
> 15 nadir 00:06:31
> 16 night_end 05:24:08
> 17 nautical_dawn 05:51:44
> 18 dawn 06:19:45
```
Other Features
actverse also comes with many utility functions and provides
actigraphy datasets for testing and learning purposes.
All functions are thoroughly documented, with detailed explanations of the underlying methodologies and computational guidelines. For a complete list of available functions and their documentation, click here.
Example:
``` r file |> readacttrust(regularize = FALSE) |> findepoch()
> $best_match
> [1] 60
>
> $prevalence
> # A tibble: 4 × 2
> epoch proportion
>
> 1 60 1.00
> 2 86 0.0000193
> 3 94 0.0000193
> 4 101 0.0000193
```
How to Cite
``` r citation("actverse")
> To cite {actverse} in publications use:
>
> Vartanian, D., Matias, V. A., Serrano, C. A. M., & Benedito-Silva,
> A. A. (2025). {actverse}: A Tidyverse-style toolbox for actigraphy
> data analysis [Computer software, R package].
> https://danielvartan.github.io/actverse/
>
> A BibTeX entry for LaTeX users is
>
> @Misc{,
> title = {{actverse}: A Tidyverse-style toolbox for actigraphy data analysis},
> author = {Daniel Vartanian and Vinicius Alves Matias and Cassio Almeida Mattos Serrano and Ana Amélia Benedito-Silva},
> year = {2025},
> url = {https://danielvartan.github.io/actverse/},
> note = {R package},
> }
```
License
actverse code is released under the MIT
license. This means you can use,
modify, and distribute the code freely, as long as you include the
original license and copyright notice in any copies or substantial
portions of the software.
Contributing
Contributions are welcome, including bug reports. Take a moment to review our Guidelines for Contributing.
You can also support the development of actverse by becoming a
sponsor. Click here to make
a donation. Please mention actverse in your donation message.
Owner
- Name: Daniel Vartanian
- Login: danielvartan
- Kind: user
- Location: São Paulo, Brazil
- Company: @sustentarea
- Website: danielvartan.com
- Repositories: 84
- Profile: https://github.com/danielvartan
Academic. Passionate about #opendata and #openscience.
Citation (CITATION.cff)
# --------------------------------------------
# CITATION file created with {cffr} R package
# See also: https://docs.ropensci.org/cffr/
# --------------------------------------------
cff-version: 1.2.0
message: 'To cite package "actverse" in publications use:'
type: software
license: MIT
title: 'actverse: A Tidyverse-Style Toolbox for Actigraphy Data Analysis'
version: 0.1.0.9000
identifiers:
- type: url
value: https://github.com/danielvartan/actverse/
abstract: A comprehensive toolkit to process, analyze and visualize actigraphy data.
authors:
- family-names: Vartanian
given-names: Daniel
email: danvartan@gmail.com
orcid: https://orcid.org/0000-0001-7782-759X
- family-names: Matias
given-names: Vinicius Alves
email: viniciusmatias@usp.br
orcid: https://orcid.org/0000-0002-2047-5420
- family-names: Almeida Mattos Serrano
given-names: Cassio
email: cassio.serrano@usp.br
orcid: https://orcid.org/0000-0001-7149-1829
- family-names: Benedito-Silva
given-names: Ana Amélia
email: aamelia@usp.br
orcid: https://orcid.org/0000-0003-0667-9504
preferred-citation:
type: generic
title: 'actverse: A Tidyverse-style toolbox for actigraphy data analysis'
authors:
- family-names: Vartanian
given-names: Daniel
email: danvartan@gmail.com
orcid: https://orcid.org/0000-0001-7782-759X
- family-names: Matias
given-names: Vinicius Alves
email: viniciusmatias@usp.br
orcid: https://orcid.org/0000-0002-2047-5420
- family-names: Serrano
given-names: Cassio Almeida Mattos
email: cassio.serrano@usp.br
orcid: https://orcid.org/0000-0001-7149-1829
- family-names: Benedito-Silva
given-names: Ana Amélia
email: aamelia@usp.br
orcid: https://orcid.org/0000-0003-0667-9504
year: '2025'
url: https://danielvartan.github.io/actverse/
notes: R package
repository: https://bioconductor.org/
repository-code: https://github.com/danielvartan/actverse/issues/
url: https://danielvartan.github.io/actverse/
contact:
- family-names: Vartanian
given-names: Daniel
email: danvartan@gmail.com
orcid: https://orcid.org/0000-0001-7782-759X
references:
- type: software
title: 'R: A Language and Environment for Statistical Computing'
notes: Depends
url: https://www.R-project.org/
authors:
- name: R Core Team
institution:
name: R Foundation for Statistical Computing
address: Vienna, Austria
year: '2025'
version: '>= 4.4'
- type: software
title: anonymizer
abstract: 'anonymizer: Anonymize Data Containing Personally Identifiable Information'
notes: Imports
url: https://github.com/paulhendricks/anonymizer
authors:
- family-names: Hendricks
given-names: Paul
email: paul.hendricks.2013@owu.edu
year: '2025'
- type: software
title: checkmate
abstract: 'checkmate: Fast and Versatile Argument Checks'
notes: Imports
url: https://mllg.github.io/checkmate/
repository: https://CRAN.R-project.org/package=checkmate
authors:
- family-names: Lang
given-names: Michel
email: michellang@gmail.com
orcid: https://orcid.org/0000-0001-9754-0393
year: '2025'
doi: 10.32614/CRAN.package.checkmate
version: '>= 2.3.2'
- type: software
title: cli
abstract: 'cli: Helpers for Developing Command Line Interfaces'
notes: Imports
url: https://cli.r-lib.org
repository: https://CRAN.R-project.org/package=cli
authors:
- family-names: Csárdi
given-names: Gábor
email: gabor@posit.co
year: '2025'
doi: 10.32614/CRAN.package.cli
version: '>= 3.6.5'
- type: software
title: clipr
abstract: 'clipr: Read and Write from the System Clipboard'
notes: Imports
url: http://matthewlincoln.net/clipr/
repository: https://CRAN.R-project.org/package=clipr
authors:
- family-names: Lincoln
given-names: Matthew
email: matthew.d.lincoln@gmail.com
orcid: https://orcid.org/0000-0002-4387-3384
year: '2025'
doi: 10.32614/CRAN.package.clipr
version: '>= 0.8.0'
- type: software
title: curl
abstract: 'curl: A Modern and Flexible Web Client for R'
notes: Imports
url: https://jeroen.r-universe.dev/curl
repository: https://CRAN.R-project.org/package=curl
authors:
- family-names: Ooms
given-names: Jeroen
email: jeroenooms@gmail.com
orcid: https://orcid.org/0000-0002-4035-0289
year: '2025'
doi: 10.32614/CRAN.package.curl
version: '>= 6.2.3'
- type: software
title: dplyr
abstract: 'dplyr: A Grammar of Data Manipulation'
notes: Imports
url: https://dplyr.tidyverse.org
repository: https://CRAN.R-project.org/package=dplyr
authors:
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
orcid: https://orcid.org/0000-0003-4757-117X
- family-names: François
given-names: Romain
orcid: https://orcid.org/0000-0002-2444-4226
- family-names: Henry
given-names: Lionel
- family-names: Müller
given-names: Kirill
orcid: https://orcid.org/0000-0002-1416-3412
- family-names: Vaughan
given-names: Davis
email: davis@posit.co
orcid: https://orcid.org/0000-0003-4777-038X
year: '2025'
doi: 10.32614/CRAN.package.dplyr
version: '>= 1.1.4'
- type: software
title: fs
abstract: 'fs: Cross-Platform File System Operations Based on ''libuv'''
notes: Imports
url: https://fs.r-lib.org
repository: https://CRAN.R-project.org/package=fs
authors:
- family-names: Hester
given-names: Jim
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
- family-names: Csárdi
given-names: Gábor
email: csardi.gabor@gmail.com
year: '2025'
doi: 10.32614/CRAN.package.fs
version: '>= 1.6.6'
- type: software
title: ggplot2
abstract: 'ggplot2: Create Elegant Data Visualisations Using the Grammar of Graphics'
notes: Imports
url: https://ggplot2.tidyverse.org
repository: https://CRAN.R-project.org/package=ggplot2
authors:
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
orcid: https://orcid.org/0000-0003-4757-117X
- family-names: Chang
given-names: Winston
orcid: https://orcid.org/0000-0002-1576-2126
- family-names: Henry
given-names: Lionel
- family-names: Pedersen
given-names: Thomas Lin
email: thomas.pedersen@posit.co
orcid: https://orcid.org/0000-0002-5147-4711
- family-names: Takahashi
given-names: Kohske
- family-names: Wilke
given-names: Claus
orcid: https://orcid.org/0000-0002-7470-9261
- family-names: Woo
given-names: Kara
orcid: https://orcid.org/0000-0002-5125-4188
- family-names: Yutani
given-names: Hiroaki
orcid: https://orcid.org/0000-0002-3385-7233
- family-names: Dunnington
given-names: Dewey
orcid: https://orcid.org/0000-0002-9415-4582
- family-names: Brand
given-names: Teun
name-particle: van den
orcid: https://orcid.org/0000-0002-9335-7468
year: '2025'
doi: 10.32614/CRAN.package.ggplot2
version: '>= 3.5.2'
- type: software
title: glue
abstract: 'glue: Interpreted String Literals'
notes: Imports
url: https://glue.tidyverse.org/
repository: https://CRAN.R-project.org/package=glue
authors:
- family-names: Hester
given-names: Jim
orcid: https://orcid.org/0000-0002-2739-7082
- family-names: Bryan
given-names: Jennifer
email: jenny@posit.co
orcid: https://orcid.org/0000-0002-6983-2759
year: '2025'
doi: 10.32614/CRAN.package.glue
version: '>= 1.8.0'
- type: software
title: hms
abstract: 'hms: Pretty Time of Day'
notes: Imports
url: https://hms.tidyverse.org/
repository: https://CRAN.R-project.org/package=hms
authors:
- family-names: Müller
given-names: Kirill
email: kirill@cynkra.com
orcid: https://orcid.org/0000-0002-1416-3412
year: '2025'
doi: 10.32614/CRAN.package.hms
version: '>= 1.1.3'
- type: software
title: jsonlite
abstract: 'jsonlite: A Simple and Robust JSON Parser and Generator for R'
notes: Imports
url: https://jeroen.r-universe.dev/jsonlite
repository: https://CRAN.R-project.org/package=jsonlite
authors:
- family-names: Ooms
given-names: Jeroen
email: jeroenooms@gmail.com
orcid: https://orcid.org/0000-0002-4035-0289
year: '2025'
doi: 10.32614/CRAN.package.jsonlite
version: '>= 2.0.0'
- type: software
title: lifecycle
abstract: 'lifecycle: Manage the Life Cycle of your Package Functions'
notes: Imports
url: https://lifecycle.r-lib.org/
repository: https://CRAN.R-project.org/package=lifecycle
authors:
- family-names: Henry
given-names: Lionel
email: lionel@posit.co
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
orcid: https://orcid.org/0000-0003-4757-117X
year: '2025'
doi: 10.32614/CRAN.package.lifecycle
version: '>= 1.0.4'
- type: software
title: lubridate
abstract: 'lubridate: Make Dealing with Dates a Little Easier'
notes: Imports
url: https://lubridate.tidyverse.org
repository: https://CRAN.R-project.org/package=lubridate
authors:
- family-names: Spinu
given-names: Vitalie
email: spinuvit@gmail.com
- family-names: Grolemund
given-names: Garrett
- family-names: Wickham
given-names: Hadley
year: '2025'
doi: 10.32614/CRAN.package.lubridate
version: '>= 1.9.4'
- type: software
title: magrittr
abstract: 'magrittr: A Forward-Pipe Operator for R'
notes: Imports
url: https://magrittr.tidyverse.org
repository: https://CRAN.R-project.org/package=magrittr
authors:
- family-names: Bache
given-names: Stefan Milton
email: stefan@stefanbache.dk
- family-names: Wickham
given-names: Hadley
email: hadley@rstudio.com
year: '2025'
doi: 10.32614/CRAN.package.magrittr
version: '>= 2.0.3'
- type: software
title: parallel
abstract: 'R: A Language and Environment for Statistical Computing'
notes: Imports
authors:
- name: R Core Team
institution:
name: R Foundation for Statistical Computing
address: Vienna, Austria
year: '2025'
version: '>= 4.4'
- type: software
title: prettycheck
abstract: 'prettycheck: Pretty assertive programming'
notes: Imports
url: https://danielvartan.github.io/prettycheck/
authors:
- family-names: Vartanian
given-names: Daniel
email: danvartan@gmail.com
orcid: https://orcid.org/0000-0001-7782-759X
year: '2025'
- type: software
title: purrr
abstract: 'purrr: Functional Programming Tools'
notes: Imports
url: https://purrr.tidyverse.org/
repository: https://CRAN.R-project.org/package=purrr
authors:
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
orcid: https://orcid.org/0000-0003-4757-117X
- family-names: Henry
given-names: Lionel
email: lionel@posit.co
year: '2025'
doi: 10.32614/CRAN.package.purrr
version: '>= 1.0.4'
- type: software
title: readr
abstract: 'readr: Read Rectangular Text Data'
notes: Imports
url: https://readr.tidyverse.org
repository: https://CRAN.R-project.org/package=readr
authors:
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
- family-names: Hester
given-names: Jim
- family-names: Bryan
given-names: Jennifer
email: jenny@posit.co
orcid: https://orcid.org/0000-0002-6983-2759
year: '2025'
doi: 10.32614/CRAN.package.readr
version: '>= 2.1.5'
- type: software
title: rlang
abstract: 'rlang: Functions for Base Types and Core R and ''Tidyverse'' Features'
notes: Imports
url: https://rlang.r-lib.org
repository: https://CRAN.R-project.org/package=rlang
authors:
- family-names: Henry
given-names: Lionel
email: lionel@posit.co
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
year: '2025'
doi: 10.32614/CRAN.package.rlang
version: '>= 1.1.6'
- type: software
title: scales
abstract: 'scales: Scale Functions for Visualization'
notes: Imports
url: https://scales.r-lib.org
repository: https://CRAN.R-project.org/package=scales
authors:
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
- family-names: Pedersen
given-names: Thomas Lin
email: thomas.pedersen@posit.co
orcid: https://orcid.org/0000-0002-5147-4711
- family-names: Seidel
given-names: Dana
year: '2025'
doi: 10.32614/CRAN.package.scales
version: '>= 1.4.0'
- type: software
title: stats
abstract: 'R: A Language and Environment for Statistical Computing'
notes: Imports
authors:
- name: R Core Team
institution:
name: R Foundation for Statistical Computing
address: Vienna, Austria
year: '2025'
version: '>= 4.4'
- type: software
title: stringr
abstract: 'stringr: Simple, Consistent Wrappers for Common String Operations'
notes: Imports
url: https://stringr.tidyverse.org
repository: https://CRAN.R-project.org/package=stringr
authors:
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
year: '2025'
doi: 10.32614/CRAN.package.stringr
version: '>= 1.5.1'
- type: software
title: suncalc
abstract: 'suncalc: Compute Sun Position, Sunlight Phases, Moon Position and Lunar
Phase'
notes: Imports
url: https://github.com/datastorm-open/suncalc
repository: https://CRAN.R-project.org/package=suncalc
authors:
- family-names: Thieurmel
given-names: Benoit
email: bthieurmel@gmail.com
- family-names: Elmarhraoui
given-names: Achraf
email: achraf.elmar@gmail.com
year: '2025'
doi: 10.32614/CRAN.package.suncalc
version: '>= 0.5.1'
- type: software
title: tools
abstract: 'R: A Language and Environment for Statistical Computing'
notes: Imports
authors:
- name: R Core Team
institution:
name: R Foundation for Statistical Computing
address: Vienna, Austria
year: '2025'
version: '>= 4.4'
- type: software
title: tsibble
abstract: 'tsibble: Tidy Temporal Data Frames and Tools'
notes: Imports
url: https://tsibble.tidyverts.org
repository: https://CRAN.R-project.org/package=tsibble
authors:
- family-names: Wang
given-names: Earo
email: earo.wang@gmail.com
orcid: https://orcid.org/0000-0001-6448-5260
- family-names: Cook
given-names: Di
orcid: https://orcid.org/0000-0002-3813-7155
- family-names: Hyndman
given-names: Rob
orcid: https://orcid.org/0000-0002-2140-5352
- family-names: O'Hara-Wild
given-names: Mitchell
orcid: https://orcid.org/0000-0001-6729-7695
year: '2025'
doi: 10.32614/CRAN.package.tsibble
version: '>= 1.1.6'
- type: software
title: utils
abstract: 'R: A Language and Environment for Statistical Computing'
notes: Imports
authors:
- name: R Core Team
institution:
name: R Foundation for Statistical Computing
address: Vienna, Austria
year: '2025'
version: '>= 4.4'
- type: software
title: viridis
abstract: 'viridis: Colorblind-Friendly Color Maps for R'
notes: Imports
url: https://sjmgarnier.github.io/viridis/
repository: https://CRAN.R-project.org/package=viridis
authors:
- family-names: Garnier
given-names: Simon
email: garnier@njit.edu
year: '2025'
doi: 10.32614/CRAN.package.viridis
version: '>= 0.6.5'
- type: software
title: withr
abstract: 'withr: Run Code ''With'' Temporarily Modified Global State'
notes: Imports
url: https://withr.r-lib.org
repository: https://CRAN.R-project.org/package=withr
authors:
- family-names: Hester
given-names: Jim
- family-names: Henry
given-names: Lionel
email: lionel@posit.co
- family-names: Müller
given-names: Kirill
email: krlmlr+r@mailbox.org
- family-names: Ushey
given-names: Kevin
email: kevinushey@gmail.com
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
- family-names: Chang
given-names: Winston
year: '2025'
doi: 10.32614/CRAN.package.withr
version: '>= 3.0.2'
- type: software
title: zoo
abstract: 'zoo: S3 Infrastructure for Regular and Irregular Time Series (Z''s Ordered
Observations)'
notes: Imports
url: https://zoo.R-Forge.R-project.org/
repository: https://CRAN.R-project.org/package=zoo
authors:
- family-names: Zeileis
given-names: Achim
email: Achim.Zeileis@R-project.org
orcid: https://orcid.org/0000-0003-0918-3766
- family-names: Grothendieck
given-names: Gabor
email: ggrothendieck@gmail.com
- family-names: Ryan
given-names: Jeffrey A.
email: jeff.a.ryan@gmail.com
year: '2025'
doi: 10.32614/CRAN.package.zoo
version: '>= 1.8.14'
- type: software
title: covr
abstract: 'covr: Test Coverage for Packages'
notes: Suggests
url: https://covr.r-lib.org
repository: https://CRAN.R-project.org/package=covr
authors:
- family-names: Hester
given-names: Jim
email: james.f.hester@gmail.com
year: '2025'
doi: 10.32614/CRAN.package.covr
version: '>= 3.6.4'
- type: software
title: knitr
abstract: 'knitr: A General-Purpose Package for Dynamic Report Generation in R'
notes: Suggests
url: https://yihui.org/knitr/
repository: https://CRAN.R-project.org/package=knitr
authors:
- family-names: Xie
given-names: Yihui
email: xie@yihui.name
orcid: https://orcid.org/0000-0003-0645-5666
year: '2025'
doi: 10.32614/CRAN.package.knitr
version: '>= 1.50'
- type: software
title: rmarkdown
abstract: 'rmarkdown: Dynamic Documents for R'
notes: Suggests
url: https://pkgs.rstudio.com/rmarkdown/
repository: https://CRAN.R-project.org/package=rmarkdown
authors:
- family-names: Allaire
given-names: JJ
email: jj@posit.co
- family-names: Xie
given-names: Yihui
email: xie@yihui.name
orcid: https://orcid.org/0000-0003-0645-5666
- family-names: Dervieux
given-names: Christophe
email: cderv@posit.co
orcid: https://orcid.org/0000-0003-4474-2498
- family-names: McPherson
given-names: Jonathan
email: jonathan@posit.co
- family-names: Luraschi
given-names: Javier
- family-names: Ushey
given-names: Kevin
email: kevin@posit.co
- family-names: Atkins
given-names: Aron
email: aron@posit.co
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
- family-names: Cheng
given-names: Joe
email: joe@posit.co
- family-names: Chang
given-names: Winston
email: winston@posit.co
- family-names: Iannone
given-names: Richard
email: rich@posit.co
orcid: https://orcid.org/0000-0003-3925-190X
year: '2025'
doi: 10.32614/CRAN.package.rmarkdown
version: '>= 2.29'
- type: software
title: spelling
abstract: 'spelling: Tools for Spell Checking in R'
notes: Suggests
url: https://ropensci.r-universe.dev/spelling
repository: https://CRAN.R-project.org/package=spelling
authors:
- family-names: Ooms
given-names: Jeroen
email: jeroenooms@gmail.com
orcid: https://orcid.org/0000-0002-4035-0289
- family-names: Hester
given-names: Jim
email: james.hester@rstudio.com
year: '2025'
doi: 10.32614/CRAN.package.spelling
version: '>= 2.3.1'
- type: software
title: testthat
abstract: 'testthat: Unit Testing for R'
notes: Suggests
url: https://testthat.r-lib.org
repository: https://CRAN.R-project.org/package=testthat
authors:
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
year: '2025'
doi: 10.32614/CRAN.package.testthat
version: '>= 3.2.3'
- type: software
title: tibble
abstract: 'tibble: Simple Data Frames'
notes: Suggests
url: https://tibble.tidyverse.org/
repository: https://CRAN.R-project.org/package=tibble
authors:
- family-names: Müller
given-names: Kirill
email: kirill@cynkra.com
orcid: https://orcid.org/0000-0002-1416-3412
- family-names: Wickham
given-names: Hadley
email: hadley@rstudio.com
year: '2025'
doi: 10.32614/CRAN.package.tibble
version: '>= 3.2.1'
CodeMeta (codemeta.json)
{
"@context": "https://doi.org/10.5063/schema/codemeta-2.0",
"@type": "SoftwareSourceCode",
"identifier": "actverse",
"description": "A comprehensive toolkit to process, analyze and visualize actigraphy data.",
"name": "actverse: A Tidyverse-Style Toolbox for Actigraphy Data Analysis",
"relatedLink": "https://danielvartan.github.io/actverse/",
"codeRepository": "https://github.com/danielvartan/actverse/",
"issueTracker": "https://github.com/danielvartan/actverse/issues/",
"license": "https://spdx.org/licenses/MIT",
"version": "0.1.0.9000",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
"url": "https://r-project.org"
},
"runtimePlatform": "R version 4.5.0 (2025-04-11)",
"author": [
{
"@type": "Person",
"givenName": "Daniel",
"familyName": "Vartanian",
"email": "danvartan@gmail.com",
"@id": "https://orcid.org/0000-0001-7782-759X"
},
{
"@type": "Person",
"givenName": "Vinicius Alves",
"familyName": "Matias",
"email": "viniciusmatias@usp.br",
"@id": "https://orcid.org/0000-0002-2047-5420"
},
{
"@type": "Person",
"givenName": "Cassio",
"familyName": "Almeida Mattos Serrano",
"email": "cassio.serrano@usp.br",
"@id": "https://orcid.org/0000-0001-7149-1829"
},
{
"@type": "Person",
"givenName": "Ana Amlia",
"familyName": "Benedito-Silva",
"email": "aamelia@usp.br",
"@id": "https://orcid.org/0000-0003-0667-9504"
}
],
"contributor": [
{
"@type": "Person",
"givenName": "Bruno",
"familyName": "Ramalho Furlan",
"email": "brfrlan@gmail.com",
"@id": "https://orcid.org/0000-0003-1654-0899"
}
],
"copyrightHolder": [
{
"@type": "Person",
"givenName": "Daniel",
"familyName": "Vartanian",
"email": "danvartan@gmail.com",
"@id": "https://orcid.org/0000-0001-7782-759X"
}
],
"maintainer": [
{
"@type": "Person",
"givenName": "Daniel",
"familyName": "Vartanian",
"email": "danvartan@gmail.com",
"@id": "https://orcid.org/0000-0001-7782-759X"
}
],
"softwareSuggestions": [
{
"@type": "SoftwareApplication",
"identifier": "covr",
"name": "covr",
"version": ">= 3.6.4",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=covr"
},
{
"@type": "SoftwareApplication",
"identifier": "knitr",
"name": "knitr",
"version": ">= 1.50",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=knitr"
},
{
"@type": "SoftwareApplication",
"identifier": "rmarkdown",
"name": "rmarkdown",
"version": ">= 2.29",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=rmarkdown"
},
{
"@type": "SoftwareApplication",
"identifier": "spelling",
"name": "spelling",
"version": ">= 2.3.1",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=spelling"
},
{
"@type": "SoftwareApplication",
"identifier": "testthat",
"name": "testthat",
"version": ">= 3.2.3",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=testthat"
},
{
"@type": "SoftwareApplication",
"identifier": "tibble",
"name": "tibble",
"version": ">= 3.2.1",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=tibble"
}
],
"softwareRequirements": {
"1": {
"@type": "SoftwareApplication",
"identifier": "R",
"name": "R",
"version": ">= 4.4"
},
"2": {
"@type": "SoftwareApplication",
"identifier": "anonymizer",
"name": "anonymizer",
"sameAs": "https://github.com/paulhendricks/anonymizer"
},
"3": {
"@type": "SoftwareApplication",
"identifier": "checkmate",
"name": "checkmate",
"version": ">= 2.3.2",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=checkmate"
},
"4": {
"@type": "SoftwareApplication",
"identifier": "cli",
"name": "cli",
"version": ">= 3.6.5",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=cli"
},
"5": {
"@type": "SoftwareApplication",
"identifier": "clipr",
"name": "clipr",
"version": ">= 0.8.0",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=clipr"
},
"6": {
"@type": "SoftwareApplication",
"identifier": "curl",
"name": "curl",
"version": ">= 6.2.3",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=curl"
},
"7": {
"@type": "SoftwareApplication",
"identifier": "dplyr",
"name": "dplyr",
"version": ">= 1.1.4",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=dplyr"
},
"8": {
"@type": "SoftwareApplication",
"identifier": "fs",
"name": "fs",
"version": ">= 1.6.6",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=fs"
},
"9": {
"@type": "SoftwareApplication",
"identifier": "ggplot2",
"name": "ggplot2",
"version": ">= 3.5.2",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=ggplot2"
},
"10": {
"@type": "SoftwareApplication",
"identifier": "glue",
"name": "glue",
"version": ">= 1.8.0",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=glue"
},
"11": {
"@type": "SoftwareApplication",
"identifier": "hms",
"name": "hms",
"version": ">= 1.1.3",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=hms"
},
"12": {
"@type": "SoftwareApplication",
"identifier": "jsonlite",
"name": "jsonlite",
"version": ">= 2.0.0",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=jsonlite"
},
"13": {
"@type": "SoftwareApplication",
"identifier": "lifecycle",
"name": "lifecycle",
"version": ">= 1.0.4",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=lifecycle"
},
"14": {
"@type": "SoftwareApplication",
"identifier": "lubridate",
"name": "lubridate",
"version": ">= 1.9.4",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=lubridate"
},
"15": {
"@type": "SoftwareApplication",
"identifier": "magrittr",
"name": "magrittr",
"version": ">= 2.0.3",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=magrittr"
},
"16": {
"@type": "SoftwareApplication",
"identifier": "parallel",
"name": "parallel",
"version": ">= 4.4"
},
"17": {
"@type": "SoftwareApplication",
"identifier": "prettycheck",
"name": "prettycheck",
"sameAs": "https://github.com/danielvartan/prettycheck"
},
"18": {
"@type": "SoftwareApplication",
"identifier": "purrr",
"name": "purrr",
"version": ">= 1.0.4",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=purrr"
},
"19": {
"@type": "SoftwareApplication",
"identifier": "readr",
"name": "readr",
"version": ">= 2.1.5",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=readr"
},
"20": {
"@type": "SoftwareApplication",
"identifier": "rlang",
"name": "rlang",
"version": ">= 1.1.6",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=rlang"
},
"21": {
"@type": "SoftwareApplication",
"identifier": "scales",
"name": "scales",
"version": ">= 1.4.0",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=scales"
},
"22": {
"@type": "SoftwareApplication",
"identifier": "stats",
"name": "stats",
"version": ">= 4.4"
},
"23": {
"@type": "SoftwareApplication",
"identifier": "stringr",
"name": "stringr",
"version": ">= 1.5.1",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=stringr"
},
"24": {
"@type": "SoftwareApplication",
"identifier": "suncalc",
"name": "suncalc",
"version": ">= 0.5.1",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=suncalc"
},
"25": {
"@type": "SoftwareApplication",
"identifier": "tools",
"name": "tools",
"version": ">= 4.4"
},
"26": {
"@type": "SoftwareApplication",
"identifier": "tsibble",
"name": "tsibble",
"version": ">= 1.1.6",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=tsibble"
},
"27": {
"@type": "SoftwareApplication",
"identifier": "utils",
"name": "utils",
"version": ">= 4.4"
},
"28": {
"@type": "SoftwareApplication",
"identifier": "viridis",
"name": "viridis",
"version": ">= 0.6.5",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=viridis"
},
"29": {
"@type": "SoftwareApplication",
"identifier": "withr",
"name": "withr",
"version": ">= 3.0.2",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=withr"
},
"30": {
"@type": "SoftwareApplication",
"identifier": "zoo",
"name": "zoo",
"version": ">= 1.8.14",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=zoo"
},
"SystemRequirements": null
},
"fileSize": "2001.231KB",
"citation": [
{
"@type": "CreativeWork",
"datePublished": "2025",
"author": [
{
"@type": "Person",
"givenName": "Daniel",
"familyName": "Vartanian",
"email": "danvartan@gmail.com",
"@id": "https://orcid.org/0000-0001-7782-759X"
},
{
"@type": "Person",
"givenName": "Vinicius Alves",
"familyName": "Matias",
"email": "viniciusmatias@usp.br",
"@id": "https://orcid.org/0000-0002-2047-5420"
},
{
"@type": "Person",
"givenName": "Cassio Almeida Mattos",
"familyName": "Serrano",
"email": "cassio.serrano@usp.br",
"@id": "https://orcid.org/0000-0001-7149-1829"
},
{
"@type": "Person",
"givenName": "Ana Amlia",
"familyName": "Benedito-Silva",
"email": "aamelia@usp.br",
"@id": "https://orcid.org/0000-0003-0667-9504"
}
],
"name": "{actverse}: A Tidyverse-style toolbox for actigraphy data analysis",
"url": "https://danielvartan.github.io/actverse/",
"description": "R package"
}
],
"releaseNotes": "https://github.com/danielvartan/actverse/blob/master/NEWS.md",
"readme": "https://github.com/danielvartan/actverse/blob/main/README.md",
"contIntegration": [
"https://github.com/danielvartan/actverse/actions/workflows/check-standard.yaml",
"https://app.codecov.io/gh/danielvartan/actverse?branch=main"
],
"developmentStatus": "https://www.repostatus.org/#active",
"keywords": [
"actigraphy",
"sleep",
"chronobiology",
"r",
"rstats",
"physiology",
"actogram",
"data-interpolation",
"periodograms",
"spectograms",
"time-series",
"time-series-analysis",
"accelerometry",
"biomedical-data-science",
"health-data",
"r-packages",
"sensor-data",
"wearables",
"physiological-monitoring",
"actimetry"
]
}
GitHub Events
Total
- Create event: 1
- Release event: 1
- Issues event: 2
- Watch event: 1
- Push event: 20
Last Year
- Create event: 1
- Release event: 1
- Issues event: 2
- Watch event: 1
- Push event: 20
Issues and Pull Requests
Last synced: over 1 year ago
All Time
- Total issues: 37
- Total pull requests: 7
- Average time to close issues: 7 months
- Average time to close pull requests: 6 months
- Total issue authors: 1
- Total pull request authors: 2
- Average comments per issue: 0.08
- Average comments per pull request: 0.0
- Merged pull requests: 2
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- danielvartan (24)
Pull Request Authors
- matiasvinicius (3)
- danielvartan (1)
Top Labels
Issue Labels
Pull Request Labels
Dependencies
- R >= 4.0 depends
- checkmate >= 2.0.0 imports
- cli >= 3.2.0 imports
- dplyr >= 1.0.8 imports
- ggplot2 >= 3.3.5 imports
- hms >= 1.1.1 imports
- lifecycle >= 1.0.1 imports
- lubridate >= 1.8.0 imports
- magrittr >= 2.0.3 imports
- purrr >= 0.3.4 imports
- rlang >= 1.0.2 imports
- stats >= 4.0.0 imports
- tsibble >= 1.1.1 imports
- viridis >= 0.6.2 imports
- withr >= 2.5.0 imports
- covr >= 3.5.1 suggests
- curl >= 4.3.2 suggests
- jsonlite >= 1.8.0 suggests
- knitr >= 1.37 suggests
- mockr >= 0.1 suggests
- parallel >= 4.0.0 suggests
- plotly >= 4.10.0 suggests
- readr >= 2.1.2 suggests
- rmarkdown >= 2.13 suggests
- spelling >= 2.2 suggests
- suncalc >= 0.5.0 suggests
- testthat >= 3.1.2 suggests
- tibble >= 3.1.6 suggests
- tools >= 4.0.0 suggests
- utils >= 4.0.0 suggests
- zoo >= 1.8 suggests
- actions/checkout v3 composite
- r-lib/actions/check-r-package v2 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
- actions/checkout v2 composite
- r-lib/actions/setup-pandoc v1 composite
- r-lib/actions/setup-r v1 composite
- r-lib/actions/setup-r-dependencies v1 composite
- actions/checkout v3 composite
- actions/upload-artifact v3 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite