Skip to content
This repository was archived by the owner on Feb 10, 2026. It is now read-only.

Commit b441066

Browse files
committed
Update links to d3/vega docs
1 parent a50c65e commit b441066

File tree

10 files changed

+14
-16
lines changed

10 files changed

+14
-16
lines changed

R/guide_axis.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
#' Should be an object created by \code{\link{axis_props}}, with properties
4747
#' for ticks, majorTicks, minorTicks, grid, labels, title, and axis.
4848
#' @seealso Vega axis documentation:
49-
#' \url{https://github.com/trifacta/vega/wiki/Axes}
49+
#' \url{https://vega.github.io/vega/docs/axes/}
5050
#' @export
5151
#' @examples
5252
#' mtcars %>% ggvis(x = ~wt, y = ~mpg, fill = ~cyl) %>%

R/mark.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#' Create a new "mark" object.
22
#'
33
#' A mark object is a close mapping to a vega mark object. Vega marks
4-
#' are documented in \url{https://github.com/trifacta/vega/wiki/Marks}.
4+
#' are documented in \url{https://vega.github.io/vega/docs/marks/}.
55
#'
66
#' This function is designed to be used by authors of new types of mark.
77
#'

R/scale_ggvis.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#' Create a new ggvis_scale object.
22
#'
33
#' A scale object is a close mapping to a vega mark object. Vega scales
4-
#' are documented in \url{https://github.com/trifacta/vega/wiki/Scales}.
4+
#' are documented in \url{https://vega.github.io/vega/docs/scales/}.
55
#'
66
#' This function is designed to be used by authors of new types of scale.
77
#' If you are a ggvis user, please use one of the more specific scale
@@ -42,7 +42,7 @@
4242
#' data. If \code{FALSE}, the \code{domain} will not behave this way. If
4343
#' left \code{NULL}, then it will be treated as \code{TRUE} whenever
4444
#' \code{domain} is non-NULL.
45-
#' @seealso \url{https://github.com/trifacta/vega/wiki/Scales}
45+
#' @seealso \url{https://vega.github.io/vega/docs/scales/}
4646
#' @export
4747
#' @keywords internal
4848
#' @examples

R/scales.R

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ NULL
9999
#' positional scales (x and y), \code{expand} will default to 0.05. For other
100100
#' scales, it will default to 0.
101101
#' @seealso \code{\link{scales}}, \code{\link{scale_ordinal}},
102-
#' \url{https://github.com/trifacta/vega/wiki/Scales#quantitative-scale-properties}
102+
#' \url{https://vega.github.io/vega/docs/scales/#quantitative}
103103
#' @family scales
104104
#' @export
105105
#' @examples
@@ -179,7 +179,7 @@ scale_numeric <- function(vis, property, domain = NULL, range = NULL,
179179
#' domain.
180180
#' @param utc if \code{TRUE}, uses UTC times. Default is \code{FALSE}.
181181
#' @seealso \code{\link{scales}}, \code{\link{scale_numeric}},
182-
#' \url{https://github.com/trifacta/vega/wiki/Scales#time-scale-properties}
182+
#' \url{https://vega.github.io/vega/docs/scales/#time}
183183
#' @family scales
184184
#' @export
185185
#' @examples
@@ -264,8 +264,7 @@ scale_datetime <- function(vis, property, domain = NULL, range = NULL,
264264
#' @param sort If \code{TRUE}, the values in the scale domain will be sorted
265265
#' according to their natural order. Default is \code{FALSE}.
266266
#' @seealso \code{\link{scales}}, \code{\link{scale_numeric}},
267-
#' \url{https://github.com/trifacta/vega/wiki/Scales#ordinal-scale-properties},
268-
#' \url{https://github.com/d3/d3/wiki/Ordinal-Scales}
267+
#' \url{https://vega.github.io/vega/docs/scales/#ordinal}.
269268
#' @family scales
270269
#' @export
271270
#' @examples

man/add_axis.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/ggvis_scale.Rd

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/mark.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/scale_datetime.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/scale_numeric.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/scale_ordinal.Rd

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)