hi,
not able to understand this below error type ,i am new to R-programming.
"Error in data.frame(x, y, z) :
arguments imply differing number of rows: 2, 3, 211 "
program-
x=1:20
y=sample(c('cat','dog','cow'),20,replace = T)
z= seq(10,22)
d=data.frame(x,y,z)
#Thank you