Hi All, Just noticed that R returns results for non-existent name if you have another variable with the same beginning when you subset with $. See the code below: name_0 <- "ID" name_1 <- "name" name_2 <- "name1"
v0 <- 1:200 v1 <- c(rep(0,100), rep(1,100)) v2 <- c(rep(0,50), rep(1,150)) df <- as.data.frame(cbind(v0, v1, v2)) colnames(df) <- c(name_0, name_1, name_2) df_1 <- df[, c(name_0, name_1)] df_2 <- df[, c(name_0, name_2)] table(df$name) table(df_1$name) table(df_2$name) colnames(df_2)[2] <- "name10" table(df_2$name) colnames(df_2)[2] <- "name_any" table(df_2$name) table(df_2[,"name"]) The last row produces an error as intended. Any ideas? Win 10 R version 4.2.1 (2022-06-23 ucrt) -- "Funny-Looking Kid" Regards, Sergiy [[alternative HTML version deleted]] ______________________________________________ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.