scale_x_week {phylepic} | R Documentation |
Date scale with breaks specified by week
Description
This produces a scale that is measured in days as with ggplot2::scale_x_date, however it will snap breaks and limits to week boundaries so that things work as intended when binning by week.
Usage
scale_x_week(
name = waiver(),
week_breaks = waiver(),
labels = waiver(),
date_labels = waiver(),
week_minor_breaks = waiver(),
oob = oob_infinite,
limits = NULL,
...,
week_start = getOption("phylepic.week_start")
)
Arguments
name , labels , date_labels , oob , limits , ... |
|
week_breaks , week_minor_breaks |
frequency of breaks in number of weeks (e.g. |
week_start |
Day the week begins (defaults to Monday).
Can be specified as a case-insensitive English weekday name such as "Monday"
or an integer. Since you generally won't want to mix definitions, it is
more convenient to control this globally with the |
Details
Any limits
specified are converted to the nearest week boundary that
includes the specified dates, i.e. the lower limit will be rounded down and
the upper limit rounded up so that the limits are week boundaries.
Value
a ggplot scale object.