Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

obj_type, obj_desc, and obj_friendly_type #458

Open
hadley opened this issue Mar 12, 2018 · 4 comments
Open

obj_type, obj_desc, and obj_friendly_type #458

hadley opened this issue Mar 12, 2018 · 4 comments

Comments

@hadley
Copy link
Member

hadley commented Mar 12, 2018

e.g.

obj_type(1:10)
#> int

obj_desc(1:10)
#> int [10]

obj_friendly_type(1:10)
#> an integer vector
@hadley
Copy link
Member Author

hadley commented Mar 12, 2018

This would only use switchpatch. Needs to have C backend for use elsewhere in package (and eventually in exported API)

If this existed, I think pillar::type_sum.default() could use obj_type().

@hadley
Copy link
Member Author

hadley commented Mar 12, 2018

See also pillar: https://github.com/r-lib/pillar/blob/master/R/type-sum.R

And I have this code in local ggplot2 branch:

obj_desc <- function(x) {
  if (isS4(x)) {
    paste0("an S4 object with class ", class(x)[[1]])
  } else if (is.object(x)) {
    if (is.data.frame(x)) {
      "a data frame"
    } else if (is.factor(x)) {
      "a factor"
    } else {
      paste0("an S3 object with class ", paste(class(x), collapse = "/"))
    }
  } else {
    switch(typeof(x),
      "NULL" = "a NULL",
      character = "a character vector",
      integer = "an integer vector",
      logical = "a logical vector",
      double = "a numeric vector",
      list = "a list",
      closure = "a function",
      paste0("a base object of type", typeof(x))
    )
  }
}

I don't think these functions should do dispatch, but they will have to handle S4 objects in a generic way.

@hadley hadley added the cnd label May 7, 2018
@hadley
Copy link
Member Author

hadley commented May 7, 2018

Adding cnd label, since this is related to making helpful error messages

@lionel-
Copy link
Member

lionel- commented Dec 7, 2018

also need a way to obtain the friendly type without an indefinite article. Perhaps an argument?

obj_friendly_type(tibble())
#> [1] "a data frame"

obj_friendly_type(tibble(), article = FALSE)
#> [1] "data frame"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants