Fix for plotting a vector of (at least two) NaNs

This commit is contained in:
yha
2021-05-03 19:44:11 +03:00
parent 57ba6aa5a9
commit 0c7f7ba011
2 changed files with 11 additions and 13 deletions
+2
View File
@@ -172,6 +172,8 @@ end
@testset "Plot" begin
plots = [histogram([1, 0, 0, 0, 0, 0]),
plot([missing]),
plot([missing, missing]),
plot(fill(missing, 10)),
plot([missing; 1:4]),
plot([fill(missing, 10); 1:4]),
plot([1 1; 1 missing]),