1

我目前正在研究 R 的一个问题。我对 R 很陌生,所以我缺乏经验,在一个(我猜)简单的问题上。我在缩放与我拥有的某些数据相关的图像时遇到问题。图片是平面图。我的数据是手动记录的。

数据如下所示: 数据

我的代码如下所示:

theData <-data.frame(EntryNr = c(0001,0002,0003,0004,0005,0006,0007), 
                 TimeSet = c('2017-01-15','2017-01-17','2017-01-18','2017-01-19','2017-01-20','2017-01-21','2017-01-22'),
                 SomeID = c('Mario','Mario','Mario','Luigi','Luigi','Luigi','Bowser'),
                 Room = c('Room1','Room1', 'Room1', 'Room1', 'Room1', 'Room1','Room1'),
                 theX = c(12.011, 11.767, 11.715, 11.827, 11.773,11.846,11.781), 
                 theY = c(6.733, 6.698, 6.871, 6.799, 6.887, 6.327,6.577),
                 theZ = c(3, 2.958, 2.983, 2.981, 2.992,2.952,2.945))

thePicture <- readPNG("FloorPlan.png")

ggimage(thePicture, fullpage = FALSE) +
  geom_point(aes(x = theX, y = theY, colour = SomeID), 
             data = theData, size = I(5), fill = NA) +
  labs(x='X axis', y='Y axis')

我的情节最终看起来像这样(背景图像是一个简单的平面图): 来自 RStudio 的绘图图像

所以我现在的问题是,X 和 Y 轴的比例非常高。Y 超过 600,X 超过 400。但根据数据,应该在“Room1”(右下)而不是左下角的图中看到点。

有没有办法重新缩放图片?

就像是:

X 轴范围从 0 到 15

Y 轴范围从 0 到 25

这样做的总体目标是从我拥有的更多数据中绘制热图,并显示哪个 ID 在哪个“房间”中的时间最长。

编辑: 如果我像这样使用 ggimage:

ggimage(thePicture, fullpage = FALSE, scale_axes = TRUE) +
  geom_point(aes(x = theX, y = theY,  colour = SomeID), 
             data = theData, size = I(5), fill = NA) +
  labs(x='X axis', y='Y axis') 

scale_axes = TRUE,我的整个图像缩小到左下角,比例从 X = 0 到 12,Y = 0 到 7。所以它仍然不是我想要的方式。

4

1 回答 1

0

您需要的是每个轴的比例因子!比如你说x轴的范围是0到15,y轴的范围是0到25,结果应该是这样的……

library(png)
library(ggmap)

thePicture <- readPNG('~/Desktop/Screen Shot 2016-12-01 at 13.03.23.png')
y_factor <- dim(thePicture)[1] / 25
x_factor <- dim(thePicture)[2] / 15

theData <-data.frame(EntryNr = c(0001,0002,0003,0004,0005,0006,0007), 
                     TimeSet = c('2017-01-15','2017-01-17','2017-01-18','2017-01-19','2017-01-20','2017-01-21','2017-01-22'),
                     SomeID = c('Mario','Mario','Mario','Luigi','Luigi','Luigi','Bowser'),
                     Room = c('Room1','Room1', 'Room1', 'Room1', 'Room1', 'Room1','Room1'),
                     theX = c(12.011, 11.767, 11.715, 11.827, 11.773,11.846,11.781), 
                     theY = c(6.733, 6.698, 6.871, 6.799, 6.887, 6.327,6.577),
                     theZ = c(3, 2.958, 2.983, 2.981, 2.992,2.952,2.945))

ggimage(thePicture, fullpage = FALSE) +
  geom_point(aes(x = theX * x_factor , y = theY * y_factor, colour = SomeID), 
             data = theData, size = I(5), fill = NA) +
  labs(x='X axis', y='Y axis')

只需用于dim获取 png 图像的尺寸。第一个数字是 y 轴,第二个是 x 轴。我不知道第三个数字是什么...使用您为每个轴提到的范围,这应该可以解决问题。

于 2017-02-08T07:04:29.277 回答