svd(ctr)中的错误:'x'中的无限或缺失值

时间:2015-01-28 19:53:43

标签: r statistics

我正在尝试在某些数据上运行svd而我收到错误。我看到another post表示当一个或多个列都为0时可能会发生这种情况,但这不是这种情况。有人可以解释一下发生了什么以及如何解决这个问题?请注意,这是更大的数据集的子集。谢谢。

year <- c(2015, 2015, 2015, 2015, 2015, 2015)
week <- c(1, 1, 1, 1, 1, 1)
flight_type_name <- c("Commercial", "Filler", "Label", "Commercial", "Filler", "Filler")
userdata_country <- c("NO", "SG", "NI", "None", "CA", "GT")
platform <- c("iphone", "linux", "iphone", "linux", "web", "ipad")
num_users <- c("26726, 2, 161, 1, 4316, 577")
impressions <- c(135019, 0, 312, 0, 37014, 11492)
clicks <- c(407, 2, 2, 2, 59, 25)

ctr <- data.frame(year, week, flight_type_name, userdata_country, platform, num_users, impressions, clicks)

svd(ctr)

0 个答案:

没有答案