Problem:
Using the program Maple, plot the following table of values:
x
y
1
4.3
2
6.5
4
8.9
5
3.2
6
1.0
Visualization:
>
Data:= [[1,4.3],[2,6.5],[4,8.9],[5,3.2],[6,1.0]];
Data
:= [[1, 4.3], [2, 6.5], [4, 8.9], [5, 3.2], [6, 1.0]]
>
plot(Data,style=point);