I’d like to check for the Mean of aggregate data rounded to the nearest tenth place, but the function round(x) only produces a whole number integer.
How can I check for the rounded mean of aggregate data to the nearest tenth place in a graph?
(Thanks in advance!)
Could you “trick” it? Multiply by 10, round, then divide by ten?
As in:
a = input*10
b = round(a)
c = b/10
then your output is c
Like this: Workaround
Alternately:
Just pass the number of decimal places you want the number rounded to as another argument.
round(number,digits)
Yeah! That totally worked! Thanks for the simple fix
I appreciate the help!
This way is even simpler!
I tried it second and way less steps.
I’m going with this way!
Thanks!