DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T f

⟦8cae3b705⟧ TextFile

    Length: 1532 (0x5fc)
    Types: TextFile
    Names: »fiveplot.c«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/stat-5.3/eu/stat/src/fiveplot.c« 

TextFile

/* Copyright 1986 Gary Perlman */

#include "stat.h"

/*LINTLIBRARY*/
FUN(fiveplot,Plot Ordinal Statistics Fivenums,5.0,12/24/86)

#define	EPSILON (.000000001)
#define scale(x,minx,maxx,width) \
	((int) ((width)*((x)-(minx))/((maxx)-(minx)+EPSILON)))
#define	addch(line,i,c) (line[(i)] = (c))

#define	MINCHAR      '<'
#define	MAXCHAR      '>'
#define	MEDCHAR      '#'
#define	Q1Q3         '-'      /* quartile 1 to quartile 3 */

char *
fiveplot (xmin, q1, median, q3, xmax, width, minval, maxval)
double	xmin;    /* min */
double	q1;      /* quartile 1 */
double	median;  /* middle point */
double	q3;      /* quartile 3 */
double	xmax;    /* max */
int 	width;   /* width of plot */
double	minval;  /* global minimum */
double	maxval;  /* global maximum */
	{
	static	char	line[BUFSIZ];
	int 	i;
	int 	low, high;          /* range values in graph buffer */
	int 	minlow, maxhigh;    /* scaled versions of extrema */

	for (i = 0; i < width; i++)
		line[i] = ' ';
	line[width] = '\0';

	minlow = scale (xmin, minval, maxval, width);
	maxhigh = scale (xmax, minval, maxval, width);

	/* inter quartile range */
	low = scale (q1, minval, maxval, width);
	high = scale (q3, minval, maxval, width);
	if (low < minlow)
		low = minlow;
	if (high > maxhigh)
		high = maxhigh;
	for (i = low; i <= high; i++)
		addch (line, i, Q1Q3);

	/* write in minimum and maximum, then median */
	addch (line, minlow, MINCHAR);
	addch (line, maxhigh, MAXCHAR);
	i = scale (median, minval, maxval, width);
	addch (line, i, MEDCHAR);
	return (line);
	}