Displaying 1 result from an estimated 1 matches for "z_rnorm".
Did you mean:
c_rnorm
2000 Jan 27
3
handling of dimension-attribute in density (PR#406)
Full_Name: Joerg Polzehl
Version: 0.90.1
OS: Digital UNIX V4.0F
Submission from: (NULL) (192.124.249.126)
The dimension attribute in function density is not handled correctly
(or at least differently from S) :
z_rnorm(1000)
dim(z)_c(10,10,10)
plot(density(z),type="l")
# no problem
plot(density(z[1,,]),type="l")
# Error in if (!(lo <- min(hi, IQR(x)/1.34))) (lo <- hi)
# || (lo <- abs(x[1])) || : missing value where logical
# needed
# In addition: Warning message:
# NaNs produced...