You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be helpful to have more information than just:
[1] 1
[1] 0
during an mbImpute() run (single core). It appears that this output is simply print(mat_num-1-mat_new) in the data_fit2() function. Using message() with a bit of text along with the value allow for more informative output.
While I was looking at data_fit2(), I noticed that you have different code for parallel == TRUE versus parallel == FALSE:
Why is this separate code instead of using the same f() function for cores=1 versus cores=>1? Do these different implementations generate different results?
The text was updated successfully, but these errors were encountered:
It would be helpful to have more information than just:
during an
mbImpute()
run (single core). It appears that this output is simplyprint(mat_num-1-mat_new)
in thedata_fit2()
function. Usingmessage()
with a bit of text along with the value allow for more informative output.While I was looking at
data_fit2()
, I noticed that you have different code forparallel == TRUE
versusparallel == FALSE
:Why is this separate code instead of using the same
f()
function forcores=1
versuscores=>1
? Do these different implementations generate different results?The text was updated successfully, but these errors were encountered: