Skip to content

Commit eb5ee62

Browse files
committed
revert to just lim=
1 parent 8fd0601 commit eb5ee62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/support-vector-machine/script.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ x_test = ColVecs(mapreduce(collect, hcat, Iterators.product(test_range, test_ran
4848
y_pred, _ = svmpredict(model, kernelmatrix(k, x_train, x_test));
4949

5050
# We can see that the kernelized, non-linear classification successfully separates the two classes in the training data:
51-
plot(; xlim=extrema(test_range), ylim=extrema(test_range), aspect_ratio=1)
51+
plot(; lim=extrema(test_range), aspect_ratio=1)
5252
contourf!(
5353
test_range,
5454
test_range,

0 commit comments

Comments
 (0)