I'm using R Version 3.0.2.
Existing Date frame has the following:
>df1
  students....c..Siva....Kumar....Kannan.. Marks....c.450..445..460. students
1                                     Siva                       450     Siva
2                                    Kumar                       445    Kumar
3                                   Kannan                       460   Kannan
       birth
1 1990-08-01
2 1995-07-23
3 1993-12-13
Reference: Already referred What are the "standard unambiguous date" formats? but the format I use is correct.
Error Message
> df1<-rbind(df1, c("Viji",410,"2014-01-23"))
Error in charToDate(x) : 
  character string is not in a standard unambiguous format
In addition: Warning message:
In `[<-.factor`(`*tmp*`, ri, value = "Viji") :
  invalid factor level, NA generated
 
     
    