1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-08 07:51:57 +02:00

(v1.1.0.9004) lose dependencies

This commit is contained in:
2020-05-16 13:05:47 +02:00
parent 9fce546901
commit 7f3da74b17
111 changed files with 3211 additions and 2345 deletions

View File

@ -92,7 +92,6 @@ all_valid_disks <- function(x) {
#' @rdname as.disk
#' @export
#' @importFrom dplyr %>%
is.disk <- function(x) {
inherits(x, "disk")
}
@ -123,7 +122,7 @@ print.disk <- function(x, ...) {
#' @export
pillar_shaft.disk <- function(x, ...) {
out <- trimws(format(x))
out[is.na(x)] <- pillar::style_na(NA)
out[is.na(x)] <- font_red(NA)
pillar::new_pillar_shaft_simple(out, align = "right", min_width = 3)
}