8 lines
170 B
Mathematica
8 lines
170 B
Mathematica
|
table;
|
||
|
plot(X,Y1);
|
||
|
hold on;
|
||
|
plot(X, Y2, 'red');
|
||
|
hold on;
|
||
|
plot(X, Y3, 'green');
|
||
|
legend('Without recommendation', 'Worst with recommendation', 'Best with recommendation');
|