what does this error mean ?

Hourly_data <- rbind(Hourly_calories, Hourly_steps, Heartrate)

Error in match.names(clabs, names(xi)) :
names do not match previous names

It looks like the names are different in the two data.frames.

Try something like

names(dat1) == names(dat2)

and see if you have a typo.

This topic was automatically closed 21 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.