在 ggplot 中反转日期时间(POSIXct 数据)轴 [英] Reverse datetime (POSIXct data) axis in ggplot

查看:22
本文介绍了在 ggplot 中反转日期时间(POSIXct 数据)轴的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用 ggplot 创建 POSIXct 时间图,并想反转轴,但我正在努力使其工作.我一直在使用 scale_y_datetime,因为在我的实际应用中,重要的是我可以控制这个轴上的中断.

这是我的问题的一个示例,首先是正常排序,然后是我尝试反转轴.

# 一些要绘制的随机日期和值我的数据 <-结构(列表(日期 = 结构(c(1492979809.99827,1492602845.68722,1493093428.90318、1492605578.0691、1492961342.65056、1492771976.83545、1493020588.88485、1493057018.85104、1492852011.23873、1492855996.55059), class = c("POSIXct", "POSIXt")), Value = c(4.52885504579172,6.0024610790424, 8.96430060034618, 7.06435370026156, 5.08460514713079,3.47828012891114, 6.29844291834161, 0.898315710946918, 1.44857675535604,5.74641009094194)), .Names = c("Date", "Value"), row.names = c(NA,-10L), class = "data.frame")图书馆(ggplot2)图书馆(秤)ggplot(MyData, aes(x=Value, y=Date)) +geom_point() +scale_y_datetime(limits=c(min(MyData$Date),max(MyData$Date)))

产生这个:

如果我尝试反转 Y 轴,通过反转限制,我会丢失所有中断和数据,如下所示:

ggplot(MyData, aes(x=Value, y=Date)) +geom_point() +scale_y_datetime(limits=c(max(MyData$Date),min(MyData$Date)))

有没有简单的方法可以反转日期时间轴?

解决方案

借助此

I'm trying to create a plot of POSIXct times using ggplot, and would like to reverse the axis, but am struggling to make it work. I've been using scale_y_datetime, because in my real application, it's important that I have control of the breaks on this axis.

Here's an example of my problem, first with normal ordering, and then my attempt to reverse the axis.

# Some random dates and values to plot
MyData <-
  structure(list(Date = structure(c(1492979809.99827, 1492602845.68722, 
  1493093428.90318, 1492605578.0691, 1492961342.65056, 1492771976.83545, 
  1493020588.88485, 1493057018.85104, 1492852011.23873, 1492855996.55059
  ), class = c("POSIXct", "POSIXt")), Value = c(4.52885504579172, 
  6.0024610790424, 8.96430060034618, 7.06435370026156, 5.08460514713079, 
  3.47828012891114, 6.29844291834161, 0.898315710946918, 1.44857675535604, 
  5.74641009094194)), .Names = c("Date", "Value"), row.names = c(NA, 
  -10L), class = "data.frame")

library(ggplot2)
library(scales)
ggplot(MyData, aes(x=Value, y=Date)) +
  geom_point() + 
  scale_y_datetime(limits=c(min(MyData$Date),max(MyData$Date)))

which produces this:

If I attempt to reverse the Y axis, by reversing limits, I lose all breaks and data, like this:

ggplot(MyData, aes(x=Value, y=Date)) +
  geom_point() +
  scale_y_datetime(limits=c(max(MyData$Date),min(MyData$Date)))

Is there a simple way to reverse the datetime axis?

解决方案

With the help from this post from Hadley Wickham here is how you can get a reverse datetime scale:

c_trans <- function(a, b, breaks = b$breaks, format = b$format) {
  a <- as.trans(a)
  b <- as.trans(b)

  name <- paste(a$name, b$name, sep = "-")

  trans <- function(x) a$trans(b$trans(x))
  inv <- function(x) b$inverse(a$inverse(x))

  trans_new(name, trans, inverse = inv, breaks = breaks, format=format)

}

rev_date <- c_trans("reverse", "time")

ggplot(MyData, aes(x=Value, y=Date)) +
  geom_point() + 
  scale_y_continuous(trans = rev_date)

Here is the plot:

这篇关于在 ggplot 中反转日期时间(POSIXct 数据)轴的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆