Skip to content

Commit 5ed1a78

Browse files
committed
decrease frequency of certain messages and warnings - fixes #72
1 parent 2dd914c commit 5ed1a78

10 files changed

+63
-17
lines changed

R/geom-axis.r

+7-2
Original file line numberDiff line numberDiff line change
@@ -250,8 +250,13 @@ GeomAxis <- ggproto(
250250

251251
data <- ensure_cartesian_polar(data)
252252

253-
if (! coord$is_linear())
254-
warning("Axes are not yet tailored to non-linear coordinates.")
253+
if (! coord$is_linear()) {
254+
rlang::warn(
255+
"Axes are not yet tailored to non-linear coordinates.",
256+
.frequency = "regularly",
257+
.frequency_id = "GeomAxis$draw_panel-is_linear"
258+
)
259+
}
255260

256261
# extract value ranges
257262
ranges <- coord$range(panel_params)

R/geom-interpolation.r

+5
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,11 @@ GeomInterpolation <- ggproto(
152152

153153
if (! coord$is_linear()) {
154154
warning("Interpolation is not yet tailored to non-linear coordinates.")
155+
rlang::warn(
156+
"Interpolation is not yet tailored to non-linear coordinates.",
157+
.frequency = "regularly",
158+
.frequency_id = "GeomInterpolation$draw_panel-is_linear"
159+
)
155160
}
156161
type <- match.arg(type, c("centroid", "sequence"))
157162
# reverse ends of `arrow`

R/geom-isoline.r

+4-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,10 @@ GeomIsoline <- ggproto(
108108

109109
# allow only `by` or `num`, not both
110110
if (! is.null(params[["by"]]) && ! is.null(params[["num"]])) {
111-
warning("Both `by` and `num` provided; ignoring `num`.")
111+
rlang::warn(
112+
"Both `by` and `num` provided; ignoring `num`.",
113+
.frequency = "once", .frequency_id = "GeomIsoline$setup_params-by-num"
114+
)
112115
params$num <- NULL
113116
} else if (is.null(params[["by"]]) && is.null(params[["num"]])) {
114117
params$num <- 6L

R/geom-rule.r

+7-2
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,13 @@ GeomRule <- ggproto(
175175
na.rm = FALSE
176176
) {
177177

178-
if (! coord$is_linear())
179-
warning("Axes are not yet tailored to non-linear coordinates.")
178+
if (! coord$is_linear()) {
179+
rlang::warn(
180+
"Rulers are not yet tailored to non-linear coordinates.",
181+
.frequency = "regularly",
182+
.frequency_id = "GeomRule$draw_panel-is_linear"
183+
)
184+
}
180185

181186
# extract value ranges
182187
ranges <- coord$range(panel_params)

R/geom-text-radiate.r

+4-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,10 @@ GeomTextRadiate <- ggproto(
7575
na.rm = FALSE,
7676
check_overlap = FALSE
7777
) {
78-
warning("`GeomTextRadiate` is deprecated; use `GeomVector` instead.")
78+
rlang::warn(
79+
"`GeomTextRadiate` is deprecated; use `GeomVector` instead.",
80+
.frequency = "regularly", .frequency_id = "GeomTextRadiate$draw_panel"
81+
)
7982

8083
if (is.character(data$hjust)) {
8184
data$hjust <- compute_just(data$hjust, data$x)

R/geom-vector.r

+5-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,11 @@ GeomVector <- ggproto(
124124
) {
125125

126126
if (! coord$is_linear()) {
127-
warning("Vectors are not yet tailored to non-linear coordinates.")
127+
rlang::warn(
128+
"Vectors are not yet tailored to non-linear coordinates.",
129+
.frequency = "regularly",
130+
.frequency_id = "GeomVector$draw_panel-is_linear"
131+
)
128132
}
129133

130134
# initialize grob list

R/stat-center.r

+9-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,11 @@ StatCenter <- ggproto(
7070
# deprecate `fun.center`
7171
if (! is.null(params$fun.center)) {
7272
if (is.null(params$fun)) {
73-
warning("`fun.center` is deprecated; use `fun` instead.")
73+
rlang::warn(
74+
"`fun.center` is deprecated; use `fun` instead.",
75+
.frequency = "regularly",
76+
.frequency_id = "StatCenter$setup_params-fun"
77+
)
7478
params$fun <- params$fun.center
7579
} else {
7680
warning("`fun` will be used instead of `fun.center`.")
@@ -230,7 +234,10 @@ make_center_fun <- function(
230234

231235
} else {
232236

233-
message("No center (limit) function(s) supplied; defaulting to `mean_se()`")
237+
rlang::inform(
238+
"No center function supplied; defaulting to `mean_se()`",
239+
.frequency = "once", .frequency_id = "make_center_fun-fun"
240+
)
234241
function(df) {
235242
x_data <- mean_se(df$x)
236243
names(x_data) <- c("x", "xmin", "xmax")

R/stat-scale.r

+4-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@ StatScale <- ggproto(
4747
required_aes = c("x", "y"),
4848

4949
compute_group = function(data, scales, mult = 1) {
50-
warning("`StatScale` is deprecated and will be removed next release.")
50+
rlang::warn(
51+
"`StatScale` is deprecated and will be removed next release.",
52+
.frequency = "regularly", .frequency_id = "StatScale$compute_group"
53+
)
5154
data[, c("x", "y")] <- data[, c("x", "y")] * mult
5255
data
5356
}

R/stat-spantree.r

+12-4
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,12 @@ StatSpantree <- ggproto(
9292
stop("No spantree engine installed; requires one of the following:\n",
9393
"{", paste(mst_engines, collapse = "}, {"), "}")
9494
} else {
95-
warning("Package {", engine, "} not installed; ",
96-
"using {", engine_alt[[1L]], "} instead.")
95+
rlang::warn(
96+
paste("Package {", engine, "} not installed; ",
97+
"using {", engine_alt[[1L]], "} instead."),
98+
.frequency = "regularly",
99+
.frequency_id = "StatSpantree$compute_group-engine"
100+
)
97101
engine <- engine_alt[[1L]]
98102
}
99103
}
@@ -103,8 +107,12 @@ StatSpantree <- ggproto(
103107
engine,
104108
mlpack = {
105109
if (method != "euclidean") {
106-
warning("{", engine, "} engine uses the euclidean distance; ",
107-
"`method` will be ignored.")
110+
rlang::warn(
111+
paste("{", engine, "} engine uses the euclidean distance; ",
112+
"`method` will be ignored."),
113+
.frequency = "regularly",
114+
.frequency_id = "StatSpantree$compute_group-links"
115+
)
108116
}
109117
# minimum spanning tree (euclidean distance)
110118
data_emst <- mlpack::emst(data_ord)

R/utils.r

+6-3
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,12 @@ setup_elts_data <- function(data, params) {
8585

8686
# print note if both `elements` and `subset` are passed
8787
if (! is.null(params$subset)) {
88-
message(
89-
"`subset` will be applied after data are restricted to ",
90-
params$elements, " elements."
88+
rlang::inform(
89+
paste0(
90+
"`subset` will be applied after data are restricted to ",
91+
params$elements, " elements."
92+
),
93+
.frequency = "once", .frequency_id = "setup_elts_data-subset"
9194
)
9295
}
9396

0 commit comments

Comments
 (0)