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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。