我的数据here可用,如下所示:
sq_id total_forays_day age_at_loc date.x
<chr> <dbl> <dbl> <chr>
22897 1 41 17-06-18
22897 1 42 17-06-19
22897 2 43 17-06-20
22897 2 43 17-06-20
22897 1 44 17-06-21
22897 1 45 17-06-22
我想使用循环为89个唯一的plot(total_forays_day~age_at_loc)
制作一个sq_id
。
通过运行以下命令,我可以通过sq_id
获得唯一的图:
plot(total_forays_day~age_at_loc, data=(data%>%filter(sq_id=="22641")), type="l")
但这不是一种有效的方法,因为我需要可视化89个图。
我尝试过:
par(mfrow=c(10,10))
for(i in 1:1) { #loop over loop.vector
plot(total_forays_day~age_at_loc[,i], data=data)
}
这不起作用。我收到以下错误消息:
age_at_loc [,i]中的错误:维数不正确
我该如何解决for
循环代码?任何建议,将不胜感激!
答案 0 :(得分:0)
首先,尝试以下操作:
# remove [1:3] when you are comfortable with this and want to see all of them
for (d in split(data, data$sq_id)[1:3]) {
plot(total_forays_day ~ age_at_loc, data=d)
readline("next") # or locator(1)
}
您遇到的问题:
total_forays_day~age_at_loc[,i]
将age_at_loc
当作一个框架,但它是一个向量total_forays_day~age_at_loc[i]
(我错误地建议)正在将向量与单个数字进行比较,这不起作用,因为plot
期望所有向量的长度相同(age_at_loc[i]
为长度1 )您的问题是您没有以有效的方式拆分数据。如果您查看split(...)
的结果,将会看到类似
str(split(data, data$sq_id)[1:3])
# List of 3
# $ 22640:'data.frame': 102 obs. of 4 variables:
# ..$ sq_id : int [1:102] 22640 22640 22640 22640 22640 22640 22640 22640 22640 22640 ...
# ..$ total_forays_day: int [1:102] 1 1 1 1 1 1 1 1 1 1 ...
# ..$ age_at_loc : int [1:102] 49 49 51 51 52 52 53 53 54 54 ...
# ..$ date.x : Factor w/ 124 levels "17-06-07","17-06-08",..: 2 2 3 3 4 4 5 5 6 6 ...
# $ 22641:'data.frame': 52 obs. of 4 variables:
# ..$ sq_id : int [1:52] 22641 22641 22641 22641 22641 22641 22641 22641 22641 22641 ...
# ..$ total_forays_day: int [1:52] 1 1 1 1 1 1 1 1 2 2 ...
# ..$ age_at_loc : int [1:52] 49 51 52 53 54 55 59 60 61 61 ...
# ..$ date.x : Factor w/ 124 levels "17-06-07","17-06-08",..: 2 3 4 5 6 7 8 9 10 10 ...
# $ 22653:'data.frame': 35 obs. of 4 variables:
# ..$ sq_id : int [1:35] 22653 22653 22653 22653 22653 22653 22653 22653 22653 22653 ...
# ..$ total_forays_day: int [1:35] 2 2 2 2 1 2 2 1 2 2 ...
# ..$ age_at_loc : int [1:35] 58 58 59 59 60 61 61 62 63 63 ...
# ..$ date.x : Factor w/ 124 levels "17-06-07","17-06-08",..: 10 10 11 11 12 13 13 14 15 15 ...
请注意列表中的每个元素在其框架中如何具有相同的sq_id
。因此split(...)[[1]]
是一个102行的帧,所有sq_id
的{{1}}。通过用"22640"
进行遍历,循环中的每个遍次都被分配了for (d in split(data, data$id))
这些单个{d
帧之一。
将sq_id
与readlines("next")
结合使用纯粹是主观的且具有用户体验。如果您想按Enter键,请选择第一个;如果您想单击图像,请选择第二个。
知道,如果要对拆分数据进行其他操作,则拆分一次并多次使用可能会很有好处,丙
locator(1)