Циклы
For
не возвращают результатов, поэтому их необходимо собирать.Print
не поможет.
output = {};
For[i = 10, i < 20000, i++, AppendTo[output, Mean[RandomInteger[10, i]]]]
ListPlot[output, AxesLabel -> {"Samples", "Mean"}]
Лучше использовать Table
вместо For
.Table
возвращает результаты.
output = Table[Mean[RandomInteger[10, i]], {i, 10, 20000}];
ListPlot[output, AxesLabel -> {"Samples", "Mean"}]