1
0
Fork 0
mirror of https://github.com/sensebox/opensensmapr synced 2025-02-20 20:23:58 +01:00

as.tibble deprectated -> change to as_tibble

This commit is contained in:
jan 2023-02-02 17:08:40 +01:00
parent 4a81cab11c
commit 0292779ca5

View file

@ -18,7 +18,7 @@ print.osem_measurements = function (x, ...) {
#' Should have at least a `value` and `createdAt` column.
#' @export
osem_as_measurements = function(x) {
ret = tibble::as.tibble(x)
ret = tibble::as_tibble(x)
class(ret) = c('osem_measurements', class(ret))
ret
}