History log of /freebsd-10.0-release/usr.bin/ministat/ministat.c
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 259065 07-Dec-2013 gjb

- Copy stable/10 (r259064) to releng/10.0 as part of the
10.0-RELEASE cycle.
- Update __FreeBSD_version [1]
- Set branch name to -RC1

[1] 10.0-CURRENT __FreeBSD_version value ended at '55', so
start releng/10.0 at '100' so the branch is started with
a value ending in zero.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation

# 256281 10-Oct-2013 gjb

Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


# 243079 15-Nov-2012 eadler

Add option to suppress just the plot in ministat while still retaining
the relative comparison (i.e., useful part).

Approved by: cperciva
MFC after: 3 days


# 227173 06-Nov-2011 ed

Add missing static keywords to ministat(1)


# 189934 17-Mar-2009 dwmalone

Fix some warns - mainly signedness and unused variables.


# 183961 16-Oct-2008 phk

Free old arrays if we increase them.

Pointed out by: mlaier


# 183960 16-Oct-2008 phk

Make ministat(1) vastly faster on huge datasets.


# 176106 08-Feb-2008 dwmalone

WARNS fixes: remove two unused variables and add some constness.


# 161692 28-Aug-2006 phk

Improve input parsing:

Add "-C <column>" and "-d <delims>" options to chop up input lines.

Make '#' a comment character, rest of line is ignored.

Submitted by: Dmitry Morozovsky <marck@rinet.ru>


# 158246 02-May-2006 phk

Avoid coredumps if stddev cannot be computed (if all datapoints are identical)
Small cleanup of label printing.


# 155960 23-Feb-2006 wkoszek

Fix the way in which median is calculated. If the data source has even
number of data points, value should be calculated by adding two middle
elements and dividing them by 2.

Approved by: cognet (mentor)


# 155894 22-Feb-2006 mdodd

Add option -w to specify graph width.
Use COLUMNS, terminal width for default graph width.

Reviewed by: rwatson


# 148224 21-Jul-2005 phk

In 2003, a -s flag was added to ministat to separate the
avg/median/stddev bars onto separate lines for readability if the
ranges overlapped. In 2005, ministat was extended to support more than
2 datasets, but the -s code was not updated. It will coredump if run
with -s and >2 sets.

PR: 82909
Submitted by: Dan Nelson <dnelson@allantgroup.com>


# 146689 27-May-2005 rwatson

dd a '-n' option to ministat, which causes it to display only summary
statistics, not graph and statistical test output. Useful for automated
processing.


# 144993 13-Apr-2005 mdodd

Add support for more than two datasets. Currently limited to 7 though
the limit is only the number of meaningful graph symbols available.

Statistical comparison is performed between the first dataset and
any further datasets.

No objection by: phk


# 121795 31-Oct-2003 phk

Attached is a small patch to ministat that separates the
avg/median/stddev bars onto two lines. Useful for datasets that
overlap.

Submitted by: Dan Nelson <dnelson@allantgroup.com>


# 119067 18-Aug-2003 phk

In case of zero span data supress the histogram plot.


# 118856 13-Aug-2003 phk

A small statistics tool for gauging the statistical significance
of data from benchmarks etc. Implements "Student's t" for various
confidence levels, defaults to 95%.

If your benchmarks are not significant at the 95% confidence level,
we don't want to hear about it.