-
Notifications
You must be signed in to change notification settings - Fork 8
Closed
Description
I installed flowClust using pak::pkg_install. The reported version is 3.46.0.
Here is a quick reproducible example,
set.seed(42)
df<-data.frame(
"x" = runif(100),
"y" = runif(100)
)
fc<-flowClust(df, trans = 2, K = 2)
With the traceback,
The error seems to come from this snippet
Lines 803 to 806 in 24c0ffd
| prior$order<-obj$oorder; | |
| if(trans==1&obj$lambda==1){ | |
| obj$mu<-rbox(obj$mu,obj$lambda) | |
| } |
Perhaps the condition should be
all(c(trans==1,obj$lambda==1))
or something similar?
Metadata
Metadata
Assignees
Labels
No labels
