|
points = {3,2,4,1,8,3,2,4,2,7,3,2,4};
ListPlot[points, PlotJoined->True];

...or as pairs of values --- x-y coordinates;
points = { {5,3}, {2,5.5}, {-1,3}, {4,2}, {4,3.5} };
ListPlot[points, PlotStyle->{PointSize[0.03],Hue[0.7]}];

Use ReadList to read data from a file.
To illustrate three graphing commands for arrays of data, we will instead construct our own array of data, using ``Table'';
data = Table[(i-j)^2+300Sin[(i+j)/9], {i,30}, {j,25} ];
ListPlot3D[data];

ListDensityPlot[data];

ListContourPlot[data];

Next:
Linear Algebra
Index