1
我有長度爲3的data.frame - sku_data
: 的數據的樣品是:從data.frame刪除元素與列表的列表
sku_data <- data.frame(
sku = c(1200337,1200518,1200586,1200590),
units_current = I(list(c(1),1:3,1:4,2:4)),
units_end = I(list(1:3,1,2:4,1:3))
)
# sku units_current units_end
#1 1200337 1 1, 2, 3
#2 1200518 1, 2, 3 1
#3 1200586 1, 2, 3, 4 2, 3, 4
#4 1200590 2, 3, 4 1, 2, 3
我想刪除那些元素,其中長度units_current
或units_end
是<=1
。它們都是列表清單。
感謝
請提供'dput (head(sku_data))' – 2014-11-20 22:46:18
編輯以使示例更小更簡單。沒有真正需要200個項目列表來顯示數據。 – thelatemail 2014-11-20 23:57:06