hist.POSIXt
位于 graphics
包(package)。 说明
hist
的方法应用于日期(类 "Date"
)或日期时间(类 "POSIXt"
)对象。
用法
## S3 method for class 'POSIXt'
hist(x, breaks, ...,
xlab = deparse1(substitute(x)),
plot = TRUE, freq = FALSE,
start.on.monday = TRUE, format, right = TRUE)
## S3 method for class 'Date'
hist(x, breaks, ...,
xlab = deparse1(substitute(x)),
plot = TRUE, freq = FALSE,
start.on.monday = TRUE, format, right = TRUE)
参数
x |
|
breaks |
切点向量或数字,给出 |
... |
graphical parameters ,或 |
xlab |
给出 x 轴标签的字符串(如果绘制)。 |
plot |
合乎逻辑的。如果 |
freq |
逻辑性;如果 |
start.on.monday |
合乎逻辑的。如果 |
format |
对于 x 轴标签。请参阅 |
right |
逻辑性;如果 |
细节
请注意,与默认方法不同,breaks
是必需参数。
使用 breaks = "quarters"
将创建 3 个日历月的间隔,间隔从 1 月 1 日、4 月 1 日、7 月 1 日或 10 月 1 日开始,具体基于 min(x)
。
使用默认值 right = TRUE
时,当 breaks
为 "months"
、 "quarters"
或 "years"
时,休息时间将设置在上一周期的最后一天。使用 right = FALSE
将它们设置为每个条中显示的间隔的第一天。
值
类 "histogram"
的对象:参见 hist
。
例子
hist(.leap.seconds, "years", freq = TRUE)
brks <- seq(ISOdate(1970, 1, 1), ISOdate(2030, 1, 1), "5 years")
hist(.leap.seconds, brks)
rug(.leap.seconds, lwd=2)
## show that 'include.lowest' "works"
stopifnot(identical(c(2L, rep(1L,11)),
hist(brks, brks, plot=FALSE, include.lowest=TRUE )$counts))
tools::assertError(verbose=TRUE, ##--> 'breaks' do not span range of 'x'
hist(brks, brks, plot=FALSE, include.lowest=FALSE))
## The default fuzz in hist.default() "kills" this, with a "wrong" message:
try ( hist(brks[-13] + 1, brks, include.lowest = FALSE) )
## and decreasing 'fuzz' solves the issue:
hb <- hist(brks[-13] + 1, brks, include.lowest = FALSE, fuzz = 1e-10)
stopifnot(hb$counts == 1)
## 100 random dates in a 10-week period
random.dates <- as.Date("2001/1/1") + 70*stats::runif(100)
hist(random.dates, "weeks", format = "%d %b")
也可以看看
相关用法
- R hist 直方图
- R legend 将图例添加到绘图中
- R barplot 条形图
- R plot.histogram 绘制直方图
- R points 向绘图添加点
- R stem 茎叶图
- R mtext 将文本写入绘图的边距
- R arrows 将箭头添加到绘图中
- R contour 显示轮廓
- R pairs 散点图矩阵
- R stars 星图(蜘蛛图/雷达图)和线段图
- R box 在地块周围画一个方框
- R coplot 调节图
- R smoothScatter 具有平滑密度颜色表示的散点图
- R mosaicplot 马赛克图
- R bxp 从摘要中绘制箱线图
- R plot.raster 绘制光栅图像
- R axTicks 计算轴刻度线位置
- R curve 绘制函数图
- R plot.factor 绘制因子变量
- R sunflowerplot 制作向日葵散点图
- R plot.table 表对象的绘图方法
- R units 图形单位
- R identify 识别散点图中的点
- R layout 指定复杂的绘图安排
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Histogram of a Date or Date-Time Object。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。