d1=unlist(day)
what is wrong with this line of code ?
Error in unlist(day) : object 'day' not found
Do i need any package for unlist ?
d1=unlist(day)
what is wrong with this line of code ?
Error in unlist(day) : object 'day' not found
Do i need any package for unlist ?
You need to have an object called day
in your working environment (R is not being able to find it), notice that this is not the same as a column named day
inside some data frame, so make sure the object exists.
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.