What is the data distribution of 0?

Hi there,
How can I test for data distribution of 20 repeats, all equal to 0? Or would the distribution be not normal as 0<0.05 and therefore doesn't need to be tested?

Look at the shape of the distribution.

stuff <- rep(0,20)
hist(stuff)

density(stuff)
#> 
#> Call:
#>  density.default(x = stuff)
#> 
#> Data: stuff (20 obs.);   Bandwidth 'bw' = 0.4944
#> 
#>        x                 y           
#>  Min.   :-1.4831   Min.   :0.009051  
#>  1st Qu.:-0.7415   1st Qu.:0.064356  
#>  Median : 0.0000   Median :0.261478  
#>  Mean   : 0.0000   Mean   :0.335910  
#>  3rd Qu.: 0.7415   3rd Qu.:0.607437  
#>  Max.   : 1.4831   Max.   :0.806849
boxplot(stuff)

Created on 2022-12-30 by the reprex package (v2.0.1)

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.