I want to plot a simple histogram, using raw data. ie, I have a file with a single column (for testing I just put there 1000 normal random variables so that I would get a nice gaussian like histogram).
I write:
reset
set style data histogram
set style histogram cluster
plot newhistogram "A", "mydata"
But all I get is just the function itself (IE instead of the x axis being the bins, it's just a number from 0 to 1000, just like I plotted the data file itself). How can I create a proper histogram?