The number of markers depend on number of data points you have in. However, you can plot a subset of your data1 (Plot the data1 as a line first, then plot the sample points of your data1) to decrease the number of markers.
plot(data1, '-b');
hold on;
plot(data1(1:5:end), '>b')