Coder Social home page Coder Social logo

Comments (6)

robitalec avatar robitalec commented on May 28, 2024 1

Yes - very marginal. I appreciate your help with it.

Thank you!

from anytime.

eddelbuettel avatar eddelbuettel commented on May 28, 2024 1

My pleasure -- thanks for catching that! A clearly uncovered condition, even after all those years. I guess I must have felt that a three-valued logical would never come in but what did I know :)

from anytime.

eddelbuettel avatar eddelbuettel commented on May 28, 2024

Thanks for the kind words.

Cases 1 and 3 are, not to put too fine a comb on it, "garbage" as there is nothing to parse. The answer is even consistent and the same: an error.

What were you expecting here? Something like this:

> as.POSIXct(NA_real_)
[1] NA
> class(as.POSIXct(NA_real_))
[1] "POSIXct" "POSIXt" 
> 
> as.Date(NA_real_)
[1] NA
> class(as.Date(NA_real_))
[1] "Date"
> 

Isn't aborting in error better than silently returning NAs?

from anytime.

eddelbuettel avatar eddelbuettel commented on May 28, 2024

Also, looking at the code and recognising that you it branches on type it makes it a little more like an error on your end for not supplying a type:

> library(anytime)
> anytime(as.character(NA))
[1] NA
> anytime(as.numeric(NA))
[1] NA
>

I can look into making the final 'default case' more informative. The main culprit, for now, is

> class(NA)
[1] "logical"
> 

and I presume it is my error for not responding more plainly to logical input. I can fix that.

from anytime.

robitalec avatar robitalec commented on May 28, 2024

Isn't aborting in error better than silently returning NAs?

I would agree this is often the case.

I opened the issue because it felt like NAs were being treated differently, dependent from my understanding on if there was at least something valid provided to anytime. This makes combining different and messy data slightly trickier because for some data, anytime will return an error, and for others it'll return NAs silently.

I agree though, garbage in, what else are we expecting!

Confirming where I first noticed this class(NA) = "logical".

from anytime.

eddelbuettel avatar eddelbuettel commented on May 28, 2024

I think you found a valid bug -- so thanks for bringing it to my attention -- even if we agree that it is a marginal corner case.

You can have NA values just fine but they have to be typed so NA in char, or numeric, or date(time), or ... should work.

from anytime.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.