cbind weird issue

Hi all,
So I have these two files that are same dimensions.
70 rows and 1 column in file 1.
70 rows and 568 columns in file 2. Rstudio displays this as 70 obs of 568 variables
I did cbind as follows:
m <- cbind(file_1, file_2)

Rstudio displays m as 70 obs of 569 variables which is great!
I even visualized it to be sure in RStudio ( as crazy I can get sometimes!):

colnames(m)
and I can see the last col name which is from file 1.

However when i copy 'm' and paste it in excel or look up the column name from file 1, I dont see it !

Why is Rstudio saying variable 569 when I cannot see that column from file 1 in the merged file?
What am I missing?

Thanks in advance for your help!

I am not sure I follow what is happening but what happens if you do

m[, 569]
# and
m[ , 1]

I do not understand why one would paste a data.frame or tibble into Excel.

What happens if you do

library(readxl)
write_excel_csv(m, "ans.xlsx")

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.