jmgirard / circumplex

Compare 1508117 ... +1 ... 8cc2b03

No flags found

Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.

e.g., #unittest #integration

#production #enterprise

#frontend #backend

Learn more about Codecov Flags here.

Showing 1 of 1 files from the diff.

@@ -313,6 +313,13 @@
Loading
313 313
    # Expand the axes multiplicatively to fit labels
314 314
    ggplot2::scale_x_continuous(expand = c(0.25, 0)) +
315 315
    ggplot2::scale_y_continuous(expand = c(0.10, 0)) +
316 +
    # Draw lowest circle
317 +
    ggforce::geom_circle(
318 +
      ggplot2::aes(x0 = 0, y0 = 0, r = 5),
319 +
      color = "gray50",
320 +
      fill = "white",
321 +
      size = 1.5
322 +
    ) +
316 323
    # Draw segments corresponding to displacement scale
317 324
    ggplot2::geom_segment(
318 325
      ggplot2::aes(
@@ -330,11 +337,6 @@
Loading
330 337
      color = "gray60",
331 338
      size = 0.5
332 339
    ) +
333 -
    ggforce::geom_circle(
334 -
      ggplot2::aes(x0 = 0, y0 = 0, r = 5),
335 -
      color = "gray50",
336 -
      size = 1.5
337 -
    ) +
338 340
    # Draw labels for amplitude scale
339 341
    ggplot2::geom_label(
340 342
      ggplot2::aes(
@@ -357,6 +359,7 @@
Loading
357 359
        label = labels
358 360
      ),
359 361
      color = "gray20",
362 +
      fill = "transparent",
360 363
      label.size = NA,
361 364
      hjust = "outward",
362 365
      vjust = "outward",

Everything is accounted for!

No changes detected that need to be reviewed.
What changes does Codecov check for?
Lines, not adjusted in diff, that have changed coverage data.
Files that introduced coverage data that had none before.
Files that have missing coverage data that once were tracked.
Files Coverage
R -0.18% 70.49%
src 100.00%
Project Totals (11 files) 74.68%
Loading