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
Cannot View data frame with integer64 columns #3145
Comments
|
Thanks @renkun-ken for letting us know about this issue. Reproduced on Windows 10 and MacOS 10.12.6 (Sierra). This is a regression (worked in RStudio 1.1.453). |
|
This is working (as of 1.2.830) when initially rendered. However:
|
|
The error's actually changed somewhat; it now references the new code: Error in hist.default(as.numeric(hist_vals), plot = FALSE) : The problem is that We try pretty hard not to have RStudio load spurious packages at startup, and I'm also not sure all of the codepaths that support the histogram are going to handle 64 bit integers gracefully, so I think we should prevent this kind of thing by refusing to histogram-ize any numeric columns which have a special class applied. |
|
The bit64 package must be loaded in order for us to get sensible values. We do not load packages on startup, so the raw values are displayed. This behavior is weird, but it isn't a regression, and should be filed separately. |
|
Done! Verified that error is gone. |
|
Hi, I'm getting the same error data <- data.frame(x = as.double(c(1,2,3))) Someone could help me? thanks |


System details
Steps to reproduce the problem
The text was updated successfully, but these errors were encountered: