Во-первых, используя For
как ваш код.
data = {{1, 0}, {2, 0}, {3, 0}};
output = {};
column1 = data[[All, 1]];
For[i = 1, i < 4, i++,
AppendTo[output,
ListPlot[Table[column1[[i]]*t, {t, 0, 10}]]]]
output
Во-вторых, эквивалентный метод.
output = Table[ListPlot[Table[column1[[i]]*t, {t, 0, 10}]], {i, 1, 3}]