I'm essentially trying to add column names to a dataframe that does not have them. I have two dataframes, one of which has dimensions 1 x 95 (1 row containing 95 values that are column names that correspond to the 95 columns of the second df, which has dimensions of 146048 x 95 but no column names). I can't use rbind because the two df's obviously don't have the same column names, and for some reason when I use 'append' it doubles the number of columns in the resulting df (dimensions = 146048 x 190). Does anybody know why this is happening when I use 'append'? And can anybody suggest a solution that will achieve what I'm trying to do?
Thanks!