Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

What are the available options for the boxes in a gnuplot histogram, for example, can one obtain a "filled solid box" or a fitted curve that touches the "top" of the box?

share|improve this question
I'm not sure if it is a good idea for this site to have questions where you have to read the question in a blog. Could you "contextualize" the link? – robin girard Feb 15 '11 at 17:45
Please update question as robin suggests, otherwise it will be a strong candidate for closure ;) Thanks. – csgillespie Feb 15 '11 at 18:19

closed as off topic by onestop, csgillespie Feb 16 '11 at 17:21

Questions on Cross Validated are expected to relate to statistics within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

set style fill solid 1.0 border -1   
binwidth=5
bin(x,width)=width*floor(x/width) + binwidth/2.0
plot 'datafile' using (bin($1,binwidth)):(1.0) smooth freq with boxes
share|improve this answer
ok managed to find the solid part but still in search of a way to fit (Gaussian/pdf) curve as in here stats.stackexchange.com/questions/2573/… (this one was done in R) – smms Feb 15 '11 at 17:41

Not the answer you're looking for? Browse other questions tagged or ask your own question.