I'm new to R and was wondering if someone could explain why when a row is added to an empty data.frame after the columns have been named, the column names are renamed. This does not happen if the data.frame has a row added before the columns are named or if an empty row is included when defining the data.frame.
Column names defined before row addition (observe the new column names, 'X.a. X.b.'):
df1 <- data.frame(character(), character(), stringsAsFactors = FALSE)
colnames(df1) <- c("one", "two")
df1 <- rbind(df1, c("a", "b"))
df1
# X.a. X.b.
#1 a b
Row added before column defined:
df2 <- data.frame(character(), character(), stringsAsFactors = FALSE)
df2 <- rbind(df2, c("a", "b"))
colnames(df2) <- c("one", "two")
df2
# one two
#1 a b
Column names defined before row addition in a data frame defined with one empty row:
df3 <- data.frame(character(1), character(1), stringsAsFactors = FALSE)
colnames(df3) <- c("one", "two")
df3 <- rbind(df3, c("a", "b"))
df3
# one two
#1
#2 a b
df[i,] <- c("a", "b")
and there's nothing strange that I can see. As I stated in my question, I am new to R and thought rbind meant I could avoid assigning an index to this unusual data set. It's unusual because it generated algorithmically. Why this would need to be tabulated is another question! – MellifluousMelt