Rounded numbers not showing up in data viewer #8478
Answered
by
jennybc
davidjanmassgov
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
jennybc
Jul 10, 2025
Replies: 1 comment 1 reply
-
I think you might want to make the affected columns into integers. For "doubles" (numeric in R), there isn't a concept of rounding on the value itself. That's something handled when you format the number for printing. If you know something is an integer and you want it treated as such in all contexts, by far the easiest thing to do is make it an integer. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
davidjanmassgov
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you might want to make the affected columns into integers. For "doubles" (numeric in R), there isn't a concept of rounding on the value itself. That's something handled when you format the number for printing. If you know something is an integer and you want it treated as such in all contexts, by far the easiest thing to do is make it an integer.