我想在ggplot2中繪製一個數字矢量與白天(%H:%M)的散點圖。在ggplot2中繪製白天(無日期)
我明白
as.POSIXct(dat$daytime, format = "%H:%M")
是格式化我timedata方面要走的路,但輸出矢量仍將會包含一個日期(今天的日期)。因此,軸標記將包括日期(3月22日)。
ggplot(dat, aes(x=as.POSIXct(dat$daytime, format = "%H:%M"), y=y, color=sex)) +
geom_point(shape=15,
position=position_jitter(width=0.5,height=0.5))
有擺脫之日起產品總數,尤其是在劇情軸的方法嗎? (所有的信息我已經在這個回答中似乎是指舊版本ggplot與現已解散DATE_FORMAT參數)
你嘗試使用'scale_x_continuous(標籤= NULL)'? –
'date_format()'現在在'scales'包中 – GGamba
我認爲'scale_x_continuous'在POSIXct向量上不起作用,因爲它會產生一個錯誤信息:'as.POSIXct.numeric(value)中的錯誤:'origin'muss angegeben werden' –