Closed WSKQ23 closed 3 years ago
Hello @lecy , I just noticed a change in the data set link below:
URL <- 'https://docs.google.com/spreadsheets/d/1RoiO9bfpbXowprWdZrgtYXG9_WuK3NFemwlvDGdym7E/export?gid=1335284952&format=csv' d <- read.csv( URL ) head( d ) %>% pander()
I created the merge yesterday using
dat3 <- merge( x=d, y=gen, by.x = "first.name", by.y = "name", all = TRUE) head(dat3)%>% pander()
and it works well.
Trying to do some work on it today It shows this error below Error in fix.by(by.x, x) : 'by' must specify a uniquely valid column
Error in fix.by(by.x, x) : 'by' must specify a uniquely valid column
And noticed that first.name is no longer in thed data set.
first.name
d
Please help
first.name is a variable you create in Step 2 and add yourself.
It definitely needs to be in the dataset before you merge.
I got you Thanks Sir
Hello @lecy , I just noticed a change in the data set link below:
I created the merge yesterday using
and it works well.
Trying to do some work on it today It shows this error below
Error in fix.by(by.x, x) : 'by' must specify a uniquely valid column
And noticed that
first.name
is no longer in thed
data set.Please help