Ratings = read.table("Ratings.txt",
sep="\t",
col.names=c("User", "MId", "Rating"),
fill=FALSE,
strip.white=TRUE)
l = colnames(Ratings)[2]
这会给我第二列 - (" MId")
但是我想在第34行中找到第三行" MId"
我试试:
k = colnames(Ratings)[2][3]
但这给了我N / A.如何访问行和列。 如果可以的话,我只是将它们描绘成:
plot(MId~Rating)