Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tried using the answer @Greg Snow provided in this question, but I keep getting an error regardless of what I do. Can someone help with this:?

> setAs("character","myDate",function(from) as.Date(from, format="%b %d, %Y %r"))
in method for ‘coerce’ with signature ‘"character","myDate"’: no definition for class “myDate”

I wanted to make sure that the "methods" package is load (it looks like setAs depends on it) and I got this:

> getOption("defaultPackages")
[1] "datasets"  "utils"     "grDevices" "graphics"  "stats"     "methods"

TIA

share|improve this question
1  
You haven't used setClass yet. (I think it's only a warning but am guessing here since I do not think you provided a complete transcript.) – DWin Jan 3 at 20:21
Try setClass("myDate") before hand – csgillespie Jan 3 at 20:24
As you will see if you run that code, it succeeds despite the warning. (And you did provide the complete output.) – DWin Jan 3 at 20:27
1  
well - color me fancy. It works both with and without using setClass. Stupid me took that as an error and not a warning (would have been nice if it said either way). Thanks guys. – tachijuan Jan 4 at 1:45

closed as too localized by George Stocker Feb 2 at 19:03

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.