Good morning,
I would like to ask you a question regarding the ability to merge different data frames. My problem is that I have two data frames I want to merge but the system does not allow me to do so.
These are the Data Frames
Name Sex ALAT ASAT
Juan M 769 79
Juan M 879 980
Name Sex ALAT
Maria F 8089
Maria F 890
As you may see the second data frame does not have the ASAT values but I would still love merging these two data frames in order to have this result.
Name Sex ALAT ASAT
Juan M 769 79
Juan M 879 980
Maria F 8089 NA
Maria F 890 NA
Please is there any possibility to do this? Thank you for your help