I am a beginner in R, and this is my first post in RStudio community. I want to concatenate two data frames in R column-wise. I tried full_join function of the dplyr package but the rows are repeated. In both the data frames the date column is common.
Any kind of help/suggestion will be highly appreciated.
About join and relational data, you can take a look at R for DataScience chapter on it
Know that you have several verbs inner_join, full_join, right_join, left_join, semi_join, anti_join that depends how you want ot join your table. The book gives a nice introduction to those.
Also, if you us to help you with your example, you need to provide some data sample and code. A reproductible example would be perfect. (see reprex)