Fix handling of missing values in matrix inputs.

This commit is contained in:
yha
2019-06-27 01:23:26 +03:00
parent a89b42229a
commit 0aac0398e8
2 changed files with 8 additions and 11 deletions
+3 -1
View File
@@ -54,7 +54,9 @@ end
plots = [histogram([1, 0, 0, 0, 0, 0]),
plot([missing]),
plot([missing; 1:4]),
plot([fill(missing,10); 1:4])]
plot([fill(missing,10); 1:4]),
plot([1 1; 1 missing]),
plot(["a" "b"; missing "d"], [1 2; 3 4])]
for plt in plots
display(plt)
end